/* ============================================================
   contact.css — İletişim sayfası stilleri
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&display=swap');

/* ── HERO ────────────────────────────────────────────────── */
.ct-hero {
    position: relative;
    background: linear-gradient(180deg, #faf5ef 0%, #f3ece1 100%);
    padding: 90px 0 150px;
    text-align: center;
    overflow: hidden;
}

.ct-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.ct-hero-blob-1 {
    width: 320px;
    height: 320px;
    top: -140px;
    left: -80px;
    background: rgba(122, 11, 30, 0.10);
}

.ct-hero-blob-2 {
    width: 260px;
    height: 260px;
    bottom: -120px;
    right: -60px;
    background: rgba(149, 113, 39, 0.16);
}

.ct-hero-inner {
    position: relative;
    z-index: 1;
}

.ct-crumb {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 0 26px;
    padding: 0;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #a3937f;
}

.ct-crumb a {
    color: #a3937f;
    text-decoration: none;
    transition: color 0.25s ease;
}

.ct-crumb a:hover {
    color: var(--primary);
}

.ct-crumb-sep i {
    font-size: 5px;
    color: var(--primary-2);
}

.ct-crumb-current {
    color: var(--primary);
}

.ct-hero-title {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-size: 58px;
    font-weight: 600;
    color: #2b1a1d;
    margin: 0 0 22px;
    letter-spacing: 0.02em;
}

.ct-hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 22px;
}

.ct-hero-divider span {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-2));
}

.ct-hero-divider span:last-child {
    background: linear-gradient(90deg, var(--primary-2), transparent);
}

.ct-hero-divider i {
    color: var(--primary-2);
    font-size: 13px;
}

.ct-hero-desc {
    max-width: 540px;
    margin: 0 auto;
    color: #8a7a6d;
    font-size: 16px;
    line-height: 1.7;
}

/* ── MAIN PANEL ──────────────────────────────────────────── */
.ct-main {
    position: relative;
    padding-bottom: 60px;
}

.ct-panel {
    position: relative;
    z-index: 2;
    margin-top: -100px;
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(74, 7, 18, 0.16), 0 2px 12px rgba(0, 0, 0, 0.04);
}

.ct-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
}

/* ── INFO COLUMN ─────────────────────────────────────────── */
.ct-info {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 56px 48px;
    background: linear-gradient(160deg, #62101f 0%, #7A0B1E 45%, #470610 100%);
    color: #f4e9dd;
    overflow: hidden;
}

.ct-info::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(201, 162, 74, 0.28);
    border-radius: 50%;
}

.ct-info::after {
    content: '';
    position: absolute;
    bottom: -90px;
    left: -70px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(201, 162, 74, 0.25), transparent 70%);
    border-radius: 50%;
}

.ct-info-top {
    position: relative;
    z-index: 1;
}

.ct-info-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 30px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 10px;
}

.ct-info-sub {
    font-size: 14px;
    color: #e7c9b9;
    opacity: 0.85;
    line-height: 1.6;
    margin: 0 0 34px;
}

.ct-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.ct-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.ct-info-icon {
    flex: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #d9b46c;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 162, 74, 0.45);
    transition: all 0.3s ease;
}

.ct-info-item:hover .ct-info-icon {
    background: var(--primary-2);
    border-color: var(--primary-2);
    color: #470610;
}

.ct-info-caption {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #c9a24a;
    margin-bottom: 4px;
}

.ct-info-value {
    display: inline-block;
    color: #f4e9dd;
    font-size: 15px;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.25s ease;
}

a.ct-info-value:hover {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ct-social {
    position: relative;
    z-index: 1;
    list-style: none;
    display: flex;
    gap: 12px;
    margin: 40px 0 0;
    padding: 0;
}

.ct-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f4e9dd;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid rgba(201, 162, 74, 0.4);
    transition: all 0.3s ease;
}

.ct-social a:hover {
    background: var(--primary-2);
    border-color: var(--primary-2);
    color: #470610;
    transform: translateY(-3px);
}

/* ── FORM COLUMN ─────────────────────────────────────────── */
.ct-form-col {
    padding: 56px 56px;
    background: #fffdfb;
}

.ct-form-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 30px;
    font-weight: 600;
    color: #2b1a1d;
    margin: 0 0 8px;
}

.ct-form-sub {
    font-size: 14px;
    color: #8a7a6d;
    margin: 0 0 30px;
}

.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.ct-field {
    position: relative;
    display: flex;
    align-items: center;
}

.ct-field > i {
    position: absolute;
    left: 18px;
    color: var(--primary-2);
    font-size: 15px;
    pointer-events: none;
}

.ct-form .ct-field input,
.ct-form .ct-field textarea {
    width: 100%;
    border: 1px solid #e7dfd6;
    background: #fbf8f4;
    border-radius: 12px;
    padding: 15px 18px 15px 46px;
    font-size: 14px;
    font-family: inherit;
    color: #2b1a1d;
    transition: all 0.3s ease;
}

.ct-form .ct-field textarea {
    min-height: 150px;
    padding-top: 16px;
    resize: vertical;
}

.ct-field-area > i {
    top: 18px;
}

.ct-form .ct-field input::placeholder,
.ct-form .ct-field textarea::placeholder {
    color: #a99d92;
}

.ct-form .ct-field input:focus,
.ct-form .ct-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(122, 11, 30, 0.08);
}

.ct-submit {
    width: 100%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 17px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #f4e9dd;
    background: linear-gradient(135deg, var(--primary), #470610);
    transition: all 0.3s ease;
}

.ct-submit i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.ct-submit:hover {
    color: #2b1a1d;
    background: linear-gradient(135deg, var(--primary-2), var(--primary));
    box-shadow: 0 14px 30px rgba(122, 11, 30, 0.25);
    transform: translateY(-2px);
}

.ct-submit:hover i {
    transform: translateX(4px);
}

/* ── MAP ─────────────────────────────────────────────────── */
.ct-map-section {
    padding-bottom: 100px;
}

.ct-map-frame {
    line-height: 0;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #ecdfd2;
    box-shadow: 0 20px 50px rgba(74, 7, 18, 0.10);
}

.ct-map-frame iframe {
    display: block;
    filter: grayscale(10%) contrast(1.02);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 991px) {
    .ct-grid {
        grid-template-columns: 1fr;
    }

    .ct-panel {
        margin-top: -60px;
    }

    .ct-info,
    .ct-form-col {
        padding: 44px 36px;
    }
}

@media (max-width: 576px) {
    .ct-hero {
        padding: 60px 0 100px;
    }

    .ct-hero-title {
        font-size: 36px;
    }

    .ct-hero-desc {
        font-size: 14px;
    }

    .ct-panel {
        margin-top: -48px;
        border-radius: 20px;
    }

    .ct-info,
    .ct-form-col {
        padding: 34px 22px;
    }

    .ct-form-row {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }

    .ct-submit {
        padding: 16px;
    }

    .ct-map-section {
        padding-bottom: 60px;
    }
}
