.contact-hero {
    position: relative;
    padding-top: 76px;
    background-image: url(/images/bg-img/auth_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

/* Atmospheric background gradients */
.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #000000a7;
    pointer-events: none;
}

/* Geometric lines — same family as index hero */
.contact-hero-geo {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.chg-line-v {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(154, 123, 58, 0.08) 30%, rgba(154, 123, 58, 0.08) 70%, transparent);
}

.chg-line-h {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(154, 123, 58, 0.06) 30%, rgba(154, 123, 58, 0.06) 70%, transparent);
}

.chg-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(154, 123, 58, 0.06);
}

.contact-hero-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 100px 40px 96px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-hero-h {
    font-family: 'Playfair Display', serif;
    font-size: clamp(44px, 6vw, 84px);
    font-weight: 500;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 24px;
}

.contact-hero-h em {
    font-style: italic;
    color: var(--gold-light);
    display: block;
}

.contact-hero-lead {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.785);
    line-height: 1.5;
    max-width: 520px;
    margin-bottom: 40px;
}

/* Response time pills */
.response-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.resp-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(154, 123, 58, 0.2);
    background: rgba(154, 123, 58, 0.06);
    padding: 9px 16px;
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.76);
}

.resp-pill i {
    color: var(--gold);
    font-size: 10px;
}

.resp-pill strong {
    color: rgba(255, 255, 255, 0.85);
}

/* Hero right — floating contact cards */
.contact-hero-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.chc-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.384);
    padding: 24px 28px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: background 0.2s;
    cursor: pointer;
    text-decoration: none;
}

.chc-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.308);
}

.chc-item:hover {
    background: rgba(154, 123, 58, 0.08);
}

.chc-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border: 1px solid rgba(154, 124, 58, 0.747);
    display: grid;
    place-items: center;
    background: rgba(154, 123, 58, 0.08);
}

.chc-icon i {
    font-size: 18px;
    color: var(--gold-light);
}

.chc-label {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgb(217, 172, 76);
    margin-bottom: 4px;
}

.chc-val {
    font-size: 17px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
}

.chc-sub {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.74);
    margin-top: 3px;
}

.chc-arrow {
    margin-left: auto;
    color: rgba(154, 123, 58, 0.4);
    font-size: 12px;
    align-self: center;
    flex-shrink: 0;
    transition: color 0.2s, transform 0.2s;
}

.chc-item:hover .chc-arrow {
    color: var(--gold-light);
    transform: translateX(3px);
}

/* Bottom geo line */
.contact-hero-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-hero-stats {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.chs-item {
    padding: 28px 32px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
}

.chs-item:last-child {
    border-right: none;
}

.chs-item:hover {
    background: rgba(154, 123, 58, 0.04);
}

.chs-num {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 6px;
}

.chs-label {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
}


/* ══════════════════════════════════════════
   MAIN CONTACT FORM + INFO SPLIT
══════════════════════════════════════════ */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 0;
    background: var(--border-light);
    border: 1px solid var(--border-light);
}

/* Form side */
.contact-form-side {
    background: #fff;
    padding: 56px 52px;
}

.cf-label {
    display: block;
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 8px;
}

.cf-input {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: var(--ivory);
    padding: 14px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #222;
    outline: none;
    transition: border-color 0.25s, background 0.25s;
}

.cf-input:focus {
    border-color: var(--gold);
    background: #fff;
}

.cf-input::placeholder {
    color: rgba(0, 0, 0, 0.637);
}

.cf-select {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: var(--ivory);
    padding: 14px 18px;
    font-family: 'DM Sans', monospace;
    font-size: 15px;
    letter-spacing: 0.08em;
    color: var(--ink);
    outline: none;
    cursor: pointer;
    appearance: none;
    transition: border-color 0.25s;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a7b3a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 42px;
}

.cf-select:focus {
    border-color: var(--gold);
    background-color: #fff;
}

.cf-textarea {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: var(--ivory);
    padding: 14px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: var(--ink);
    outline: none;
    resize: vertical;
    min-height: 140px;
    line-height: 1.7;
    transition: border-color 0.25s, background 0.25s;
}

.cf-textarea:focus {
    border-color: var(--gold);
    background: #fff;
}

.cf-textarea::placeholder {
    color: rgba(0, 0, 0, 0.53);
}

/* Priority selector */
.priority-opts {
    display: flex;
    gap: 0;
}

.priority-opt {
    flex: 1;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-right: none;
    padding: 11px 8px;
    text-align: center;
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--slate-light);
    background: var(--ivory);
    position: relative;
}

.priority-opt:last-child {
    border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.priority-opt input[type="radio"] {
    display: none;
}

.priority-opt.selected {
    background: #faf6ef;
    color: var(--gold);
    border-color: var(--gold);
    z-index: 1;
}

.priority-opt::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s;
}

.priority-opt.selected::after {
    transform: scaleX(1);
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'DM Mono', monospace;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: var(--ink);
    border: 1px solid var(--ink);
    padding: 16px 32px;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
}

.btn-submit:hover {
    background: var(--gold);
    border-color: var(--gold);
}

/* Success state */
.form-success {
    display: none;
    text-align: center;
    padding: 60px 40px;
}

.form-success.visible {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-check {
    width: 70px;
    height: 70px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    position: relative;
}

.success-check i {
    font-size: 26px;
    color: var(--gold);
}

.success-check::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    border: 1px dashed rgba(154, 123, 58, 0.3);
}

/* Info side */
.contact-info-side {
    background: var(--ivory);
    border-left: 1px solid var(--border-light);
    padding: 56px 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Office cards */
.office-card {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-light);
}

.office-card:first-of-type {
    padding-top: 0;
}

.office-card:last-of-type {
    border-bottom: none;
}

.office-city {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 4px;
}

.office-region {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.office-region::before {
    content: '';
    width: 16px;
    height: 1px;
    background: var(--gold);
}

.office-address {
    font-size: 13px;
    font-weight: 300;
    color: var(--slate);
    line-height: 1.75;
}

.office-hours {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--slate-light);
}

.office-hours i {
    color: var(--gold);
    font-size: 9px;
}

/* Social strip */
.social-strip {
    display: flex;
    gap: 8px;
}

.soc-btn {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border-light);
    display: grid;
    place-items: center;
    color: var(--slate-light);
    font-size: 13px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.soc-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: #faf6ef;
}


/* ══════════════════════════════════════════
   SUPPORT CHANNELS GRID
══════════════════════════════════════════ */
.channels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border-light);
    border: 1px solid var(--border-light);
}

.channel-card {
    background: #fff;
    padding: 44px 32px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    display: flex;
    flex-direction: column;
}

.channel-card:hover {
    background: #faf6ef;
}

.channel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.channel-card:hover::before {
    transform: scaleX(1);
}

/* Ghost icon bg */
.channel-ghost-icon {
    position: absolute;
    bottom: -10px;
    right: 10px;
    font-size: 90px;
    color: rgba(154, 123, 58, 0.04);
    transition: color 0.3s;
    pointer-events: none;
}

.channel-card:hover .channel-ghost-icon {
    color: rgba(154, 123, 58, 0.08);
}

.channel-icon-wrap {
    width: 54px;
    height: 54px;
    border: 1px solid var(--border-gold);
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    position: relative;
    flex-shrink: 0;
    transition: border-color 0.3s;
}

.channel-icon-wrap::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 1px dashed rgba(154, 123, 58, 0.12);
}

.channel-card:hover .channel-icon-wrap {
    border-color: var(--gold);
    background: rgba(154, 123, 58, 0.05);
}

.channel-icon-wrap i {
    font-size: 20px;
    color: var(--gold);
}

.channel-tag {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.channel-tag::before {
    content: '';
    width: 16px;
    height: 1px;
    background: var(--gold);
}

.channel-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 10px;
}

.channel-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: 24px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.channel-response {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 8px 14px;
    border: 1px solid var(--border-gold);
    color: var(--slate-light);
    align-self: flex-start;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.channel-response strong {
    color: var(--gold);
}

.channel-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    transition: color 0.2s, border-color 0.2s;
    position: relative;
    z-index: 1;
    align-self: flex-start;
}

.channel-cta:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}


/* ══════════════════════════════════════════
   GLOBAL OFFICES MAP SECTION
══════════════════════════════════════════ */
.map-section-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 0;
    background: var(--border-light);
    border: 1px solid var(--border-light);
}

/* Stylised map */
.map-visual {
    background: var(--cream);
    position: relative;
    min-height: 460px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border-light);
}

.map-bg-icon {
    font-size: 200px;
    color: rgba(154, 123, 58, 0.05);
    position: absolute;
}

.map-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(154, 123, 58, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(154, 123, 58, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

.map-pin {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: default;
    transition: transform 0.2s;
}

.map-pin:hover {
    transform: translateY(-3px);
}

.map-pin-pulse {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    position: relative;
    box-shadow: 0 0 0 4px rgba(154, 123, 58, 0.2);
}

.map-pin-pulse::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(154, 123, 58, 0.3);
    animation: map-ring 2s ease-out infinite;
}

@keyframes map-ring {
    0% {
        transform: scale(0.7);
        opacity: 0.7;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.map-pin:nth-child(2) .map-pin-pulse::after {
    animation-delay: 0.5s;
}

.map-pin:nth-child(3) .map-pin-pulse::after {
    animation-delay: 1s;
}

.map-pin:nth-child(4) .map-pin-pulse::after {
    animation-delay: 1.5s;
}

.map-pin-label {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border-gold);
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 3px 8px;
    white-space: nowrap;
}

.map-hq-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--ink);
    padding: 12px 18px;
    border: 1px solid rgba(154, 123, 58, 0.2);
}

.map-hq-label {
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 3px;
}

.map-hq-val {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
}

/* Office list panel */
.office-list-panel {
    background: #fff;
    padding: 40px 36px;
}

.office-list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
    transition: padding-left 0.3s;
    cursor: default;
}

.office-list-item:first-child {
    padding-top: 0;
}

.office-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.office-list-item:hover {
    padding-left: 6px;
}

.office-flag {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border: 1px solid var(--border-light);
    display: grid;
    place-items: center;
    font-size: 20px;
    background: #fff;
    transition: border-color 0.2s;
}

.office-list-item:hover .office-flag {
    border-color: var(--border-gold);
}

.oli-city {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 2px;
}

.oli-region {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.oli-addr {
    font-size: 12px;
    font-weight: 300;
    color: var(--slate-light);
}


/* ══════════════════════════════════════════
   SUPPORT KNOWLEDGE BASE / QUICK LINKS
══════════════════════════════════════════ */
.kb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-light);
    border: 1px solid var(--border-light);
}

.kb-card {
    background: #fff;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.kb-card:hover {
    background: #faf6ef;
}

.kb-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.kb-card:hover::after {
    transform: scaleX(1);
}

.kb-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border-gold);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.kb-icon i {
    font-size: 18px;
    color: var(--gold);
}

.kb-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 8px;
}

.kb-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--slate);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 18px;
}

.kb-count {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--slate-light);
}

.kb-arrow {
    font-size: 11px;
    color: var(--gold);
    margin-left: auto;
    align-self: flex-end;
    transition: transform 0.2s;
}

.kb-card:hover .kb-arrow {
    transform: translateX(4px);
}


/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
/* reuses .faq-it, .faq-b, .faq-qt, .faq-tog, .faq-bd from main CSS */


/* ══════════════════════════════════════════
   FINAL CTA  (dark ink — same as about/plans)
══════════════════════════════════════════ */
.contact-cta-band {
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

.contact-cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 25% 60%, rgba(154, 123, 58, 0.07) 0%, transparent 60%);
    pointer-events: none;
}

.ccb-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 96px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.ccb-h {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4vw, 54px);
    font-weight: 500;
    color: #fff;
    line-height: 1.1;
    max-width: 560px;
}

.ccb-h em {
    font-style: italic;
    color: rgba(184, 149, 58, 0.9);
}

.ccb-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.btn-ccb-solid {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    background: #fff;
    border: 1px solid #fff;
    padding: 15px 32px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.btn-ccb-solid:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: #fff;
}

.btn-ccb-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 15px 32px;
    text-decoration: none;
    transition: border-color 0.3s, color 0.3s;
}

.btn-ccb-ghost:hover {
    border-color: rgba(184, 149, 58, 0.55);
    color: rgba(184, 149, 58, 0.9);
}


/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kb-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .contact-hero-inner {
        grid-template-columns: 1fr;
        padding: 80px 24px 70px;
        gap: 44px;
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-side {
        border-left: none;
        border-top: 1px solid var(--border-light);
    }

    .map-section-grid {
        grid-template-columns: 1fr;
    }

    .map-visual {
        min-height: 300px;
    }

    .office-list-panel {
        border-top: 1px solid var(--border-light);
    }

    .ccb-inner {
        flex-direction: column;
        gap: 36px;
    }

    .faq-flex {
        flex-direction: column !important;
    }
}

@media (max-width: 640px) {
    .contact-hero-h {
        font-size: 38px;
    }

    .channels-grid {
        grid-template-columns: 1fr;
    }

    .kb-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-side {
        padding: 36px 24px;
    }

    .contact-info-side {
        padding: 36px 24px;
    }

    .ccb-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-ccb-solid,
    .btn-ccb-ghost {
        justify-content: center;
    }

    .priority-opts {
        flex-wrap: wrap;
    }

    .priority-opt {
        flex: 1 1 45%;
        border-right: 1px solid rgba(0, 0, 0, 0.12);
    }
}