/* --- GENEL BÖLÜM VE ARKA PLAN --- */
.iletisim-form-section {
    position: relative;
    padding: 100px 0;
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    overflow: hidden;
}

.form-bg-medya {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.form-bg-video, .form-bg-resim {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Videoyu koyultur */
    z-index: 2;
}

/* --- FORM KUTUSU --- */
.form-container-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
}

.iletisim-form-kutu {
    width: 100%;
    max-width: 700px;
    text-align: center;
}

.form-ana-baslik {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: 40px;
    color: #ffffff;
}

/* --- INPUT ALANLARI --- */
.form-ikili-satir {
    display: flex;
    gap: 20px;
}

.form-input-grup {
    margin-bottom: 25px;
    text-align: left;
    width: 100%;
}

.form-input-grup label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #e2e8f0;
    margin-bottom: 8px;
}

.form-input-grup input,
.form-input-grup textarea {
    width: 100%;
    padding: 15px 20px;
    border-radius: 8px;
    border: none;
    background-color: #ffffff;
    color: #333333;
    font-size: 15px;
    font-family: inherit;
    transition: box-shadow 0.3s ease;
}

.form-input-grup input:focus,
.form-input-grup textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5); /* Odaklanınca mavi parlama */
}

/* Kutu içi silik yazı (Placeholder) rengi */
::placeholder {
    color: #94a3b8;
    font-weight: 300;
}

/* --- BUTON --- */
.form-submit-btn {
    background-color: #000000;
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 30px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 10px;
}

.form-submit-btn:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

/* Başarı Mesajı */
.form-basari-mesaji {
    background-color: rgba(34, 197, 94, 0.2);
    border: 1px solid #22c55e;
    color: #4ade80;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-weight: 500;
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 768px) {
    .form-ikili-satir {
        flex-direction: column;
        gap: 0;
    }
}