/* =============================================
   İLETİŞİM SAYFASI — iletisim.css
   ============================================= */

/* ---- HERO ---- */
.iletisim-hero {
    background-color: #0d0d0d;
    padding: 185px 0 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(183, 138, 89, 0.08);
}

.iletisim-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(183, 138, 89, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.ih-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.ih-tag {
    display: inline-block;
    border: 1px solid rgba(183, 138, 89, 0.4);
    color: #b78a59;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 18px;
    margin-bottom: 25px;
    font-weight: 500;
}

.ih-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.15;
}

.ih-title em {
    font-style: normal;
    color: #b78a59;
}

.ih-desc {
    color: #888;
    font-size: 1rem;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =============================================
   HARİTA BÖLÜMÜ
   ============================================= */
.map-section {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #0a0a0a;
}

/* Harita — tam kaplayan */
.map-container {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

/* Dark mode harita efekti */
.map-container iframe {
    filter: grayscale(100%) invert(92%) contrast(85%) hue-rotate(180deg);
    width: 100%;
    height: 100%;
    display: block;
}

/* Bilgi kutusu wrapper — harita üstü */
.map-info-wrapper {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 10;
}

/* Sağa sabitlenmiş bilgi kutusu */
.map-info-inner {
    position: absolute;
    top: 0;
    right: 40px;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Cam efektli bilgi kutusu */
.map-info-box {
    pointer-events: auto;
    background: rgba(13, 13, 13, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(183, 138, 89, 0.25);
    border-radius: 14px;
    padding: 42px 38px;
    width: 100%;
    max-width: 390px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.mib-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    color: #fff;
    font-weight: 400;
    margin-bottom: 8px;
}

.mib-desc {
    color: #888;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mib-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.mib-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(183, 138, 89, 0.2);
    border-radius: 8px;
    background: rgba(183, 138, 89, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mib-text h6 {
    color: #b78a59;
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
}

.mib-text p {
    color: #ccc;
    font-size: 0.875rem;
    line-height: 1.55;
    font-weight: 300;
}

.mib-text a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.mib-text a:hover {
    color: #b78a59;
}

.mib-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 24px 0;
}

/* Yol tarifi butonu */
.btn-outline-gold {
    display: block;
    width: 100%;
    text-align: center;
    border: 1px solid #b78a59;
    color: #b78a59;
    padding: 13px 24px;
    font-size: 0.75rem;
    letter-spacing: 2.5px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.25s ease;
}

.btn-outline-gold:hover {
    background-color: #b78a59;
    color: #fff;
    transform: translateY(-2px);
}

/* =============================================
   İLETİŞİM FORMU
   ============================================= */
.contact-form-section {
    background-color: #0d0d0d;
    padding: 110px 0 120px;
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 60% at 100% 50%, rgba(183, 138, 89, 0.04) 0%, transparent 65%);
    pointer-events: none;
}

/* İki kolonlu grid */
.cf-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Sol kolon */
.cf-left {
    padding-top: 10px;
}

.cf-tag {
    display: inline-block;
    border: 1px solid rgba(183, 138, 89, 0.4);
    color: #b78a59;
    font-size: 0.68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 5px 14px;
    margin-bottom: 22px;
    font-weight: 500;
}

.cf-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 22px;
}

.cf-title em {
    font-style: normal;
    color: #b78a59;
}

.cf-desc {
    color: #777;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 38px;
    max-width: 340px;
}

.cf-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cf-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #999;
    font-size: 0.875rem;
    font-weight: 300;
}

.cf-feat-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #b78a59;
    flex-shrink: 0;
}

/* Sağ kolon — form */
.cf-right {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 50px 45px;
}

.cf-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* İki yan yana alan */
.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cf-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cf-field label {
    color: #666;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.cf-field input,
.cf-field select,
.cf-field textarea {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 13px 16px;
    color: #e0e0e0;
    font-size: 0.875rem;
    font-weight: 300;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
    color: #444;
}

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
    border-color: rgba(183, 138, 89, 0.5);
    box-shadow: 0 0 0 3px rgba(183, 138, 89, 0.06);
}

.cf-field select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
}

.cf-field select option {
    background: #111;
    color: #ccc;
}

.cf-field textarea {
    resize: vertical;
    min-height: 120px;
}

/* Gönder butonu */
.cf-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #b78a59, #9a7048);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 15px 32px;
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    margin-top: 4px;
}

.cf-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(183, 138, 89, 0.3);
    opacity: 0.92;
}

.cf-submit:active {
    transform: translateY(0);
}

/* =============================================
   CONTAINER
   ============================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* =============================================
   ANİMASYON
   ============================================= */
.fade-in {
    opacity: 0;
    transform: translateY(18px);
    animation: fadeInUp 0.7s ease forwards;
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   RESPONSIVE — Tablet (≤ 992px)
   ============================================= */
@media (max-width: 992px) {
    .iletisim-hero { padding-top: 160px; }

    .map-section {
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .map-container {
        position: relative;
        height: 400px;
        order: 1;
    }

    .map-info-wrapper {
        position: relative;
        order: 2;
        background-color: #111;
        padding: 40px 20px;
        height: auto;
        width: 100%;
    }

    .map-info-inner {
        position: relative;
        top: auto;
        right: auto;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .map-info-box {
        max-width: 100%;
        background: transparent;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 0;
    }

    .cf-grid { grid-template-columns: 1fr; gap: 50px; }
    .cf-title { font-size: 2.3rem; }
    .cf-right { padding: 40px 35px; }
}

/* =============================================
   RESPONSIVE — Mobil (≤ 768px)
   ============================================= */
@media (max-width: 768px) {
    .iletisim-hero { padding: 150px 0 60px; }
    .ih-title { font-size: 2.4rem; }

    .map-container { height: 300px; }

    .map-info-wrapper { padding: 30px 20px 50px; }

    .map-info-box { padding: 0; }

    .cf-row { grid-template-columns: 1fr; }
    .cf-right { padding: 32px 24px; }
    .cf-title { font-size: 2rem; }
    .contact-form-section { padding: 80px 0 90px; }
}

/* =============================================
   RESPONSIVE — Küçük Mobil (≤ 480px)
   ============================================= */
@media (max-width: 480px) {
    .ih-title { font-size: 2rem; }
    .cf-title { font-size: 1.75rem; }
}