body {
    background-color: #fff;
    color: #fff;
    margin: 0;
    padding: 0;
}

/* === ORTAK === */
.video-page {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.logo-img {
    height: 150px;
    object-fit: contain;
    z-index: 3;
}

.contact-btn {
    font-weight: 600;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    z-index: 3;
    margin-top: 30px !important;
}

/* === ANA SAYFA VIDEO === */
.home-video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* === Contact Video === */
.contact-video-wrapper {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.contact-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* GET IN TOUCH Başlığı */
.contact-title h1 {
    color: #000 !important;
    font-weight: 700;
}

/* Kartlar (form + iletişim) */
.black-card {
    background-color: #111; /* siyah kart */
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
}

/* Input ve textarea */
.black-input {
    background-color: #222;
    border: 1px solid #444;
    color: #fff;
    padding: 0.5rem 0.75rem;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 1rem;
}

.black-input::placeholder {
    color: rgba(255,255,255,0.6);
}

.black-input:focus {
    background-color: #333;
    border-color: #fff;
    color: #fff;
    box-shadow: 0 0 6px rgba(255,255,255,0.3);
}

/* Button */
button[type="submit"] {
    margin-top: 0.5rem;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-video-wrapper {
        height: 35vh;
    }
}
