/* ============================================================
   CONTACT PAGE — FOUND BHUTAN
   Design language: navy var(--navy) · gold var(--gold) · deep var(--navy-mid)
   Font: Roboto (already loaded globally)
   Scoped with .fb-contact prefix
   ============================================================ */

/* ---- PAGE HERO BANNER ---- */
.fb-contact-hero {
    position: relative;
    height: 52vh;
    min-height: 340px;
    max-height: 520px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background: #0b1d14;
}

.fb-contact-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    filter: brightness(55%);
    transform: scale(1.04);
    animation: fb-hero-settle 1.2s ease forwards;
}

@keyframes fb-hero-settle {
    from { transform: scale(1.08); }
    to   { transform: scale(1.00); }
}

.fb-contact-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
            rgba(10, 20, 14, 0.92) 0%,
            rgba(10, 20, 14, 0.38) 50%,
            rgba(10, 20, 14, 0.08) 100%);
    z-index: 2;
}

.fb-contact-hero__content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 56px;
    animation: fb-hero-rise 0.85s ease both;
    animation-delay: 0.15s;
}

@keyframes fb-hero-rise {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fb-contact-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.fb-contact-hero__eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--gold);
    flex-shrink: 0;
}

.fb-contact-hero__eyebrow span {
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    font-family: var(--font-body);
}

.fb-contact-hero__title {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.05;
    margin: 0;
    letter-spacing: -0.025em;
    text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.fb-contact-hero__title em {
    font-style: normal;
    color: var(--gold);
}

/* ---- BREADCRUMB — floated inside hero top ---- */
.fb-contact-breadcrumb {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 4;
    padding: 18px 0;
}

.fb-contact-breadcrumb__inner {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.fb-contact-breadcrumb nav {
    font-size: 0.65rem;
    font-family: var(--font-body);
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
}

.fb-contact-breadcrumb a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.fb-contact-breadcrumb a:hover { color: var(--gold); }

.fb-contact-breadcrumb span.sep { margin: 0 8px; opacity: 0.4; }

.fb-contact-breadcrumb span[aria-current] { color: rgba(255,255,255,0.42); }

/* ============================================================
   CONTACT INFO STRIP — 4 pillars
   ============================================================ */
.fb-contact-strip {
    background: var(--navy);
    padding: 0;
    overflow: hidden;
    position: relative;
}

.fb-contact-strip::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
    opacity: 0.55;
}

.fb-contact-strip__inner {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.fb-contact-pillar {
    padding: 40px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-right: 1px solid rgba(255,255,255,0.07);
    position: relative;
    transition: background 0.28s ease;
    text-decoration: none;
    cursor: default;
}

.fb-contact-pillar--link { cursor: pointer; }

.fb-contact-pillar:last-child { border-right: none; }

.fb-contact-pillar::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.32s ease;
}

.fb-contact-pillar--link:hover { background: rgba(255,255,255,0.04); }
.fb-contact-pillar--link:hover::after { transform: scaleX(1); }

.fb-contact-pillar__icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--gold-pale);
    border: 1px solid rgba(255,194,26,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    flex-shrink: 0;
    transition: background 0.22s ease;
}

.fb-contact-pillar--link:hover .fb-contact-pillar__icon {
    background: rgba(255,194,26,0.22);
}

.fb-contact-pillar__icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.fb-contact-pillar__label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.42);
    font-family: var(--font-body);
}

.fb-contact-pillar__value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.5;
    font-family: var(--font-body);
    word-break: break-word;
}

.fb-contact-pillar__sub {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    font-family: var(--font-body);
    line-height: 1.5;
    margin-top: 2px;
}

/* ============================================================
   MAP + HOURS SIDEBAR SECTION
   ============================================================ */
.fb-contact-map-section {
    background: var(--off-white);
    padding: 88px 0 96px;
    position: relative;
    overflow: hidden;
}

.fb-contact-map-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        135deg,
        rgba(20,61,89,0.022) 0px,
        rgba(20,61,89,0.022) 1px,
        transparent 1px,
        transparent 40px
    );
    pointer-events: none;
}

.fb-contact-map-section__inner {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: start;
    position: relative;
}

.fb-contact-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.fb-contact-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--gold);
    flex-shrink: 0;
}

.fb-contact-eyebrow span {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-deeper);
    font-family: var(--font-body);
}

/* Map intro text */
.fb-map-intro {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fb-map-intro.fb-cv-visible {
    opacity: 1;
    transform: translateY(0);
}

.fb-map-intro h2 {
    font-size: clamp(1.55rem, 2.8vw, 2.2rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}

.fb-map-intro h2 em {
    font-style: normal;
    color: var(--gold);
}

.fb-map-intro p {
    font-size: 0.92rem;
    color: #4a5568;
    font-family: var(--font-body);
    line-height: 1.75;
    margin: 0 0 32px;
    max-width: 560px;
}

/* Map embed */
.fb-map-embed {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(14,45,69,0.1);
    line-height: 0;
}

.fb-map-embed iframe {
    display: block;
    width: 100%;
    height: 360px;
    border: none;
}

/* Sidebar */
.fb-contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.fb-contact-sidebar.fb-cv-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hours card */
.fb-hours-card {
    background: var(--navy);
    border-radius: 8px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(14,45,69,0.15);
}

.fb-hours-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    opacity: 0.8;
}

.fb-hours-card__title {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-deeper);
    font-family: var(--font-body);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fb-hours-card__title svg {
    width: 14px;
    height: 14px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.fb-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-family: var(--font-body);
}

.fb-hours-row:last-child { border-bottom: none; }

.fb-hours-row__day {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.62);
}

.fb-hours-row__time {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
}

.fb-hours-row__time--closed {
    color: rgba(255,255,255,0.32);
    font-weight: 400;
}

/* WhatsApp CTA */
.fb-whatsapp-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 24px;
    background: #25d366;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--font-body);
    transition: background 0.22s ease, transform 0.18s ease;
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.fb-whatsapp-cta:hover {
    background: #1eb85a;
    transform: translateY(-2px);
}

.fb-whatsapp-cta svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    flex-shrink: 0;
}

/* ============================================================
   TRUST BADGES SECTION
   ============================================================ */
.fb-contact-trust {
    background: #ffffff;
    padding: 88px 0 96px;
    position: relative;
    border-top: 1px solid rgba(14,45,69,0.06);
}

.fb-contact-trust__inner {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.fb-contact-trust__header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.fb-contact-trust__header.fb-cv-visible {
    opacity: 1;
    transform: translateY(0);
}

.fb-contact-trust__header h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    margin: 0 0 10px;
    letter-spacing: -0.02em;
}

.fb-contact-trust__header h2 em {
    font-style: normal;
    color: var(--gold);
}

.fb-contact-trust__header p {
    font-size: 0.92rem;
    color: #718096;
    font-family: var(--font-body);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
}

.fb-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.fb-trust-card {
    background: var(--off-white);
    border-radius: 8px;
    padding: 36px 24px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
    opacity: 0;
    transform: translateY(18px);
}

.fb-trust-card.fb-cv-visible {
    opacity: 1;
    transform: translateY(0);
}

.fb-trust-card:hover {
    border-bottom-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(14,45,69,0.1);
}

.fb-trust-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.fb-trust-card__icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.fb-trust-card__number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.03em;
    font-family: var(--font-body);
}

.fb-trust-card__number sup {
    font-size: 0.42em;
    vertical-align: super;
    color: var(--gold);
}

.fb-trust-card__label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #718096;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.fb-trust-card__desc {
    font-size: 0.8rem;
    color: #4a5568;
    line-height: 1.65;
    font-family: var(--font-body);
    margin: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
    .fb-contact-map-section__inner {
        grid-template-columns: 1fr 360px;
        gap: 44px;
    }

    .fb-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .fb-contact-strip__inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .fb-contact-pillar {
        border-right: 1px solid rgba(255,255,255,0.07);
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .fb-contact-pillar:nth-child(2) { border-right: none; }
    .fb-contact-pillar:nth-child(3) { border-bottom: none; }
    .fb-contact-pillar:nth-child(4) { border-right: none; border-bottom: none; }

    .fb-contact-map-section {
        padding: 64px 0 72px;
    }

    .fb-contact-map-section__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fb-contact-sidebar {
        order: -1;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .fb-hours-card { flex: 1 1 280px; }
    .fb-whatsapp-cta { flex: 1 1 200px; align-self: flex-start; }
}

@media (max-width: 600px) {
    .fb-contact-hero {
        height: 46vh;
        min-height: 280px;
    }

    .fb-contact-hero__content {
        padding-bottom: 40px;
    }

    .fb-contact-strip__inner {
        grid-template-columns: 1fr;
    }

    .fb-contact-pillar {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        padding: 28px 20px;
    }

    .fb-contact-pillar:last-child { border-bottom: none; }

    .fb-contact-map-section {
        padding: 48px 0 56px;
    }

    .fb-contact-sidebar {
        flex-direction: column;
    }

    .fb-trust-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .fb-contact-trust {
        padding: 52px 0 64px;
    }
}