/* ── PAGE WRAP ── */
.page {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px) clamp(60px, 8vh, 100px);
}

/* ── HERO ── */
.hero {
    text-align: center;
    padding: clamp(52px, 7vh, 88px) 0 clamp(44px, 6vh, 68px);
    animation: fadeUp 0.65s 0.08s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(232, 184, 75, 0.28);
    border-radius: 50px;
    padding: 7px 20px;
    margin-bottom: 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-lt);
    background: var(--gold-dim);
    backdrop-filter: blur(12px);
}

.bdot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    animation: bp 2.4s infinite;
}

@keyframes bp {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(232, 184, 75, 0.65);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(232, 184, 75, 0);
    }
}

.hero-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(38px, 5.5vw, 66px);
    font-weight: 700;
    line-height: 1.06;
    color: #fff;
    letter-spacing: -0.4px;
    margin-bottom: 18px;
}

.hero-title em {
    font-style: italic;
    color: var(--gold-lt);
}

.hero-sub {
    font-size: clamp(14.5px, 1.35vw, 17px);
    font-weight: 400;
    color: var(--muted);
    line-height: 1.78;
    max-width: 540px;
    margin: 0 auto;
}

.hero-sub strong {
    color: var(--text);
    font-weight: 600;
}

/* ── QUICK CONTACT CARDS ── */
.quick-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: clamp(40px, 5vh, 60px);
    animation: fadeUp 0.7s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.qcard {
    background: var(--panel);
    border: 1px solid var(--borderW);
    border-radius: 18px;
    padding: 22px 20px;
    text-align: center;
    cursor: pointer;
    transition:
        border-color 0.25s,
        background 0.25s,
        transform 0.25s,
        box-shadow 0.25s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.qcard:hover {
    border-color: rgba(232, 184, 75, 0.25);
    background: rgba(232, 184, 75, 0.04);
    transform: translateY(-4px);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(232, 184, 75, 0.08);
}

.qcard:hover .qcard-icon {
    transform: scale(1.12);
}

.qcard-icon {
    font-size: 28px;
    transition: transform 0.25s;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--surface);
    border: 1px solid var(--borderW);
    display: grid;
    place-items: center;
}

.qcard-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2px;
}

.qcard-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.qcard-desc {
    font-size: 12px;
    font-weight: 400;
    color: var(--muted2);
    line-height: 1.55;
}

.qcard-time {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--muted2);
    margin-top: 2px;
}

.qcard-time i {
    color: var(--gold);
    font-size: 12px;
}

/* ── MAIN GRID ── */
.main-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: clamp(24px, 3.5vw, 48px);
    animation: fadeUp 0.75s 0.22s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ── CONTACT FORM ── */
.form-card {
    background: var(--panel);
    border: 1px solid var(--borderW);
    border-radius: 24px;
    overflow: hidden;
}

.form-head {
    padding: 28px 32px 24px;
    border-bottom: 1px solid var(--borderW);
    background: linear-gradient(135deg, rgba(232, 184, 75, 0.05), transparent);
}

.form-eyebrow {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.form-heading {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.form-heading span {
    color: var(--gold-lt);
}

.form-body {
    padding: 28px 32px 32px;
}

/* Topic selector */
.topic-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.topic-btn {
    padding: 7px 16px;
    border-radius: 50px;
    border: 1px solid var(--borderW);
    background: transparent;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--muted2);
    cursor: pointer;
    transition: all 0.22s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.topic-btn:hover {
    border-color: rgba(232, 184, 75, 0.25);
    color: var(--muted);
}

.topic-btn.sel {
    background: var(--gold-dim);
    border-color: rgba(232, 184, 75, 0.3);
    color: var(--gold-lt);
}

/* Fields */
.fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.f {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.f label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    color: rgba(232, 184, 75, 0.6);
}

.fi-wrap {
    position: relative;
}

.fi-wrap .fi {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: rgba(232, 184, 75, 0.35);
    pointer-events: none;
    z-index: 1;
}

.fi-wrap.ta-wrap .fi {
    top: 16px;
    transform: none;
}

.fi-wrap input,
.fi-wrap select,
.fi-wrap textarea {
    width: 100%;
    background: var(--surface);
    border: 1.5px solid var(--borderW);
    border-radius: var(--r);
    padding: 13px 16px 13px 44px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text);
    outline: none;
    resize: none;
    transition:
        border-color 0.22s,
        box-shadow 0.22s,
        background 0.22s;
    -webkit-appearance: none;
}

.fi-wrap textarea {
    padding: 14px 16px 14px 44px;
    min-height: 120px;
    line-height: 1.6;
}

.fi-wrap input::placeholder,
.fi-wrap textarea::placeholder {
    color: rgba(255, 255, 255, 0.16);
}

.fi-wrap select option {
    background: var(--surface);
    color: var(--text);
}

.fi-wrap select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='rgba(232,184,75,.5)' d='M7 9.5L2 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
}

.fi-wrap input:focus,
.fi-wrap select:focus,
.fi-wrap textarea:focus {
    border-color: rgba(232, 184, 75, 0.5);
    box-shadow: 0 0 0 4px rgba(232, 184, 75, 0.07);
    background: rgba(232, 184, 75, 0.025);
}

/* Priority toggle */
.priority-row {
    display: flex;
    gap: 8px;
}

.pri-btn {
    flex: 1;
    padding: 10px 8px;
    border-radius: 10px;
    border: 1.5px solid var(--borderW);
    background: var(--surface);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted2);
    cursor: pointer;
    transition: all 0.22s;
    text-align: center;
}

.pri-btn:hover {
    border-color: rgba(232, 184, 75, 0.2);
    color: var(--muted);
}

.pri-btn.sel-low {
    background: rgba(74, 222, 128, 0.1);
    border-color: rgba(74, 222, 128, 0.3);
    color: #4ade80;
}

.pri-btn.sel-medium {
    background: rgba(232, 184, 75, 0.1);
    border-color: rgba(232, 184, 75, 0.3);
    color: var(--gold);
}

.pri-btn.sel-high {
    background: rgba(255, 64, 128, 0.1);
    border-color: rgba(255, 64, 128, 0.3);
    color: var(--pink);
}

/* Submit */
.submit-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.submit-btn {
    flex: 1;
    min-width: 160px;
    padding: 15px 28px;
    border-radius: var(--r);
    border: none;
    cursor: pointer;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14.5px;
    font-weight: 800;
    background: linear-gradient(
        135deg,
        var(--gold-dk),
        var(--gold),
        var(--gold-lt)
    );
    color: #000;
    box-shadow: 0 8px 24px rgba(232, 184, 75, 0.26);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.submit-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent);
    opacity: 0;
    transition: opacity 0.22s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(232, 184, 75, 0.4);
}

.submit-btn:hover::before {
    opacity: 1;
}

.submit-btn:active {
    transform: none;
}

.submit-note {
    font-size: 12px;
    font-weight: 400;
    color: var(--muted2);
    line-height: 1.55;
}

.submit-note i {
    color: var(--gold);
    margin-right: 4px;
}

/* Success state */
.success-banner {
    display: none;
    text-align: center;
    padding: 32px 24px;
    animation: fadeUp 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.success-banner.show {
    display: block;
}

.sb-emoji {
    font-size: 52px;
    display: block;
    margin-bottom: 14px;
}

.sb-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.sb-title span {
    color: var(--gold-lt);
}

.sb-sub {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

/* ── RIGHT SIDE INFO ── */
.info-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Office card */
.office-card {
    background: var(--panel);
    border: 1px solid var(--borderW);
    border-radius: 20px;
    overflow: hidden;
    transition: border-color 0.25s;
}

.office-card:hover {
    border-color: rgba(232, 184, 75, 0.18);
}

.office-map {
    width: 100%;
    height: 170px;
    background: linear-gradient(
        145deg,
        #0a0020,
        #1a0048,
        #340088,
        rgba(139, 92, 246, 0.2)
    );
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
}

.map-orb1 {
    width: 200px;
    height: 200px;
    background: rgba(139, 92, 246, 0.25);
    top: -50px;
    left: -40px;
}

.map-orb2 {
    width: 150px;
    height: 150px;
    background: rgba(232, 184, 75, 0.12);
    bottom: -40px;
    right: -30px;
}

.map-pin {
    position: relative;
    z-index: 2;
    text-align: center;
}

.map-pin-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 8px;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5));
    animation: pinBounce 2.5s ease-in-out infinite;
}

@keyframes pinBounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.map-pin-label {
    font-family: "Cormorant Garamond", serif;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-block;
}

.office-info {
    padding: 20px 22px;
}

.oi-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.oi-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 10px;
}

.oi-row:last-child {
    margin-bottom: 0;
}

.oi-row i {
    color: var(--gold);
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Hours card */
.hours-card {
    background: var(--panel);
    border: 1px solid var(--borderW);
    border-radius: 20px;
    padding: 22px 22px;
    transition: border-color 0.25s;
}

.hours-card:hover {
    border-color: rgba(232, 184, 75, 0.18);
}

.hc-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.hc-title i {
    color: var(--gold);
    font-size: 17px;
}

.hrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid var(--borderW);
    font-size: 13px;
}

.hrow:last-child {
    border-bottom: none;
}

.hday {
    font-weight: 600;
    color: var(--muted);
}

.htime {
    font-weight: 600;
    color: var(--text);
}

.hbadge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 50px;
}

.hbadge.open {
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.hbadge.close {
    background: rgba(255, 255, 255, 0.05);
    color: var(--muted2);
    border: 1px solid var(--borderW);
}

/* Social card */
.social-card {
    background: var(--panel);
    border: 1px solid var(--borderW);
    border-radius: 20px;
    padding: 22px 22px;
    transition: border-color 0.25s;
}

.social-card:hover {
    border-color: rgba(232, 184, 75, 0.18);
}

.sc-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.slink {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 12px;
    border: 1px solid var(--borderW);
    background: var(--surface);
    text-decoration: none;
    color: var(--muted);
    font-size: 13.5px;
    font-weight: 600;
    transition:
        border-color 0.22s,
        background 0.22s,
        color 0.22s,
        transform 0.22s;
}

.slink:hover {
    border-color: rgba(232, 184, 75, 0.25);
    background: var(--gold-dim);
    color: var(--text);
    transform: translateX(4px);
}

.slink i {
    font-size: 18px;
    flex-shrink: 0;
}

.slink span {
    flex: 1;
}

.slink .sarrow {
    font-size: 13px;
    color: var(--muted2);
    transition: transform 0.22s;
}

.slink:hover .sarrow {
    transform: translateX(3px);
    color: var(--gold);
}

/* ── FAQ STRIP ── */
.faq-strip {
    margin-top: clamp(40px, 5vh, 60px);
    animation: fadeUp 0.8s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.faq-head {
    text-align: center;
    margin-bottom: 28px;
}

.faq-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.faq-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    color: #fff;
}

.faq-title em {
    font-style: italic;
    color: var(--gold-lt);
}

.faqs {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: var(--panel);
    border: 1px solid var(--borderW);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.22s;
}

.faq-item:hover {
    border-color: rgba(232, 184, 75, 0.16);
}

.faq-item.open {
    border-color: rgba(232, 184, 75, 0.2);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    user-select: none;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.faq-q i {
    font-size: 14px;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.open .faq-q i {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        padding 0.3s;
}

.faq-item.open .faq-a {
    max-height: 200px;
}

.faq-a-inner {
    padding: 0 22px 18px;
    font-size: 14px;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.72;
}

.faq-a-inner strong {
    color: var(--text);
    font-weight: 600;
}

.faq-a-inner a {
    color: var(--gold-lt);
    text-decoration: none;
    font-weight: 600;
}

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

    .info-col {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .office-card {
        grid-column: 1 / -1;
    }

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

@media (max-width: 700px) {
    .quick-cards {
        grid-template-columns: 1fr 1fr;
    }

    .frow {
        grid-template-columns: 1fr;
    }

    .info-col {
        grid-template-columns: 1fr;
    }

    .form-head,
    .form-body {
        padding: 22px 22px;
    }

    .priority-row {
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .quick-cards {
        grid-template-columns: 1fr 1fr;
    }

    .topic-row {
        gap: 6px;
    }

    .submit-row {
        flex-direction: column;
        align-items: stretch;
    }

    .footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .pri-btn {
        padding: 9px 6px;
        font-size: 11.5px;
    }
}
