/* ══════════════════════════════════════════════════════════
   contact.css
   ══════════════════════════════════════════════════════════ */

:root {
    --brand: #c67529;
    --brand-2: #ff8f0c;
    --brand-3: #b07219;
    --brand-grad: linear-gradient(135deg, #c67529 0%, #ff8f0c 30%, #ac5c21 50%, #b07219 70%, #e8820a 100%);
    --ink: #111;
    --muted: #222;
    --line: rgba(0, 0, 0, .08);
    --cream: #faf7f1;
}

.kf-divider--center {
    margin-left: auto;
    margin-right: auto;
}


/* ═══════════════════════════════════════════
   1. QUICK CONTACT CARDS
   ═══════════════════════════════════════════ */
.ct-info-section {
    padding: 80px 0;
    background: #fff;
}

.ct-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.ct-info-card {
    padding: 42px 30px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 2px;
    text-align: left;
    transition: box-shadow .4s ease, border-color .4s ease;
}

.ct-info-card:hover {
    box-shadow: 0 30px 60px -30px rgba(198, 117, 41, .3);
    border-color: rgba(198, 117, 41, .3);
}

.ct-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(198, 117, 41, .25);
    display: grid;
    place-items: center;
    font-size: 20px;
    margin-bottom: 22px;
    background: var(--brand-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-color: rgba(198, 117, 41, .2);
}

.ct-info-card h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    letter-spacing: 1px;
    color: var(--ink);
    margin-bottom: 10px;
}

.ct-info-card p {
    font-size: 13px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 18px;
}

.ct-info-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--brand);
    transition: gap .3s ease, color .3s ease;
}

.ct-info-link:hover {
    gap: 12px;
    color: var(--brand-3);
}


/* ═══════════════════════════════════════════
   2. FORM + MAP
   ═══════════════════════════════════════════ */
.ct-main-section {
    padding: 80px 0;
    background: #fff;
}

.ct-main-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: stretch;
}

/* ── Form pane ── */
.ct-form-pane .main-title {
    font-size: 34px;
    line-height: 1.2;
}

.ct-form-desc {
    font-size: 14px;
    line-height: 1.9;
    color: var(--muted);
    max-width: 480px;
    margin-bottom: 34px;
}

.ct-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.ct-field {
    margin-bottom: 24px;
    position: relative;
}

.ct-field label {
    display: block;
    font-size: 13px;
    letter-spacing: .5px;
    color: #777;
    margin-bottom: 8px;
}

.ct-field input,
.ct-field select,
.ct-field textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(155, 122, 69, .3);
    background: transparent;
    padding: 10px 4px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #333;
    outline: none;
    letter-spacing: .3px;
    transition: border-color .3s ease;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}

.ct-field input::placeholder,
.ct-field textarea::placeholder {
    color: #bbb;
}

.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
    border-color: var(--brand-3);
}

.ct-field textarea {
    resize: none;
    height: 90px;
}

.ct-select-wrap {
    position: relative;
}

.ct-select-wrap select {
    cursor: pointer;
    padding-right: 22px;
}

.ct-select-arrow {
    position: absolute;
    right: 4px;
    bottom: 14px;
    font-size: 11px;
    color: var(--brand);
    pointer-events: none;
}

.ct-submit-btn {
    margin-top: 8px;
    border-color: var(--ink);
}

.ct-privacy {
    margin-top: 16px;
    font-size: 11px;
    color: #999;
    letter-spacing: .3px;
}

/* ── Map pane ── */
.ct-map-pane {
    position: relative;
    min-height: 480px;
}

.ct-map-frame {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 480px;
    overflow: hidden;
    border-radius: 2px;
    filter: grayscale(.25) contrast(1.05);
    box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .3);
}

.ct-map-card {
    position: absolute;
    left: 24px;
    bottom: 24px;
    max-width: 300px;
    background: #fff;
    padding: 24px 26px;
    border-left: 3px solid var(--brand);
    box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .35);
}

.ct-map-card-label {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand);
    font-weight: 700;
    margin-bottom: 10px;
}

.ct-map-card p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--ink);
    margin-bottom: 14px;
}

.ct-map-card-divider {
    width: 100%;
    height: 1px;
    background: var(--line);
    margin-bottom: 14px;
}

.ct-map-card a {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
}

.ct-map-card a i {
    color: var(--brand);
    margin-right: 8px;
}


/* ═══════════════════════════════════════════
   3. DIRECT CONTACT CTA
   ═══════════════════════════════════════════ */
.ct-cta-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: #1b3228;
    color: #fff;
}

.ct-cta-bg {
    position: absolute;
    inset: 0;
    background: url("../image/director-bg.webp") center/cover no-repeat;
    opacity: .15;
    filter: grayscale(1);
}

.ct-cta-section .sub-heading {
    color: #e8c896;
}

.ct-cta-section .main-title {
    font-size: 40px;
    margin-bottom: 34px;
}

.ct-cta-section .main-title{
   background: linear-gradient(135deg, #ffffff 0%, #ffffff 30%, #ffffff 50%, #ffffff 70%, #ffffff 100%);
   -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.ct-cta-number {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 500;
    letter-spacing: 2px;
    text-decoration: none;
   background: linear-gradient(135deg, #ffffff 0%, #ffffff 30%, #ffffff 50%, #ffffff 70%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
}

.ct-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ct-cta-btn {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .3);
    padding: 14px 32px;
    transition: all .3s ease;
}

.ct-cta-btn:hover {
    border-color: var(--brand);
    background: rgba(198, 117, 41, .12);
}

.ct-cta-btn--whatsapp {
    border-color: rgba(37, 211, 102, .4);
}

.ct-cta-btn--whatsapp i {
    color: #25d366;
}

.ct-cta-btn--whatsapp:hover {
    border-color: #25d366;
    background: rgba(37, 211, 102, .12);
}


/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 991px) {
    .ct-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ct-main-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .ct-map-pane {
        min-height: 380px;
    }

    .ct-map-frame {
        min-height: 380px;
    }
    .ct-cta-section .main-title{
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .ct-info-section {
        padding: 3rem 0;
    }

    .ct-info-grid {
        grid-template-columns: 1fr;
    }

    .ct-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ct-main-section {
        padding:3rem  0;
    }

    .ct-map-card {
        left: 14px;
        right: 14px;
        bottom: 14px;
        max-width: none;
    }

    .ct-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .ct-cta-btn {
        width: 100%;
        justify-content: center;
    }
}