.page-banner {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?w=1800&fit=crop&crop=center');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 4em;
}

/* Dark left-to-right gradient overlay — identical to homepage */
.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, .9) 0%,
            rgba(0, 0, 0, .65) 35%,
            rgba(0, 0, 0, .3) 65%,
            rgba(0, 0, 0, .05) 100%);
    z-index: 0;
}

/* Text content wrapper */
.page-banner-inner {
    position: relative;
    z-index: 1;
    padding: 0 4%;
}

/* Tag line */
.page-banner-tag {
    font-family: 'Spline Sans Mono', monospace;
    font-size: .72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #56a1f0;
    margin-bottom: .6rem;
    display: inline-block;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    animation: bannerFadeUp .6s .1s forwards;
}

/* Main headline */
.page-banner-headline {
    font-size: clamp(2.8rem, 6.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(24px);
    animation: bannerFadeUp .65s .25s forwards;
}

/* Outlined accent word */
.page-banner-outline {
    display: block;
    color: transparent;
    -webkit-text-stroke: 2px #fff;
}

.page-banner-solid {
    display: block;
    color: #8fbc14;
    -webkit-text-stroke: 0;
}

/* Sub-copy */
.page-banner-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .82);
    max-width: 520px;
    line-height: 1.4;
    font-weight: 300;
    margin-bottom: 1.2rem;
    opacity: 0;
    transform: translateY(22px);
    animation: bannerFadeUp .65s .42s forwards;
}

/* CTA button row */
.page-banner-actions {
    opacity: 0;
    transform: translateY(22px);
    animation: bannerFadeUp .65s .58s forwards;
}

.primary-btn {
    display: inline-block;
    padding: .9rem 2rem;
    background: 0 0;
    color: #56a1f0;
    border: 2px solid #56a1f0;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: background .35s, color .35s, border-color .35s, transform .3s;
    letter-spacing: .3px;
    text-decoration: none !important;
}

.primary-btn:hover {
    background: #56a1f0;
    border-color: #56a1f0;
    color: #fff;
    transform: translateY(-3px);
}

/* Shared keyframe — scoped name so it won't clash with homepage */
@keyframes bannerFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Large screens ─────────────────────────────────────── */
@media (min-width: 1440px) {
    .page-banner-headline {
        font-size: clamp(4rem, 6vw, 6.5rem);
    }

    .page-banner-text {
        font-size: 1.25rem;
        max-width: 560px;
    }

    .page-banner-tag {
        font-size: 1rem;
    }

    .primary-btn {
        padding: 1rem 2.25rem;
        font-size: 1.2rem;
    }
}

@media (min-width: 1600px) {
    .page-banner-text {
        font-size: 1.3rem;
        max-width: 650px;
    }
}

@media (min-width: 1800px) {
    .page-banner-headline {
        font-size: clamp(4.5rem, 6.5vw, 8rem);
        letter-spacing: -3px;
    }

    .page-banner-text {
        font-size: 1.75rem;
        max-width: 900px;
    }

    .primary-btn {
        font-size: 1.5rem;
        margin-top: 15px;
    }
}

@media (min-width: 2200px) {


    .primary-btn {
        padding: 1.3rem 3rem;
        font-size: 1.8rem;
    }
}

/* ── Tablet ─────────────────────────────────────────────── */
@media (max-width: 1023px) {
    .page-banner {
        padding: 100px 5% 60px;
        height: 70vh;
    }

    .page-banner-inner {
        padding: 0;
        max-width: 100%;
    }
}

/* ── Mobile landscape / small tablet ───────────────────── */
@media (max-width: 768px) {
    .page-banner-outline {
        -webkit-text-stroke: 1px #fff;
    }
}

/* ── Mobile portrait ────────────────────────────────────── */
@media (max-width: 575px) {
    .page-banner-actions {
        flex-direction: column;
        width: 100%;
    }

    .primary-btn {
        /* width: 100%; */
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-banner {
        padding: 80px 5% 50px;
    }

    .page-banner-inner {
        padding: 0;
    }

    .page-banner-headline {
        letter-spacing: 1px;
    }
}

@media (max-width: 375px) {
    .page-banner-headline {
        font-size: clamp(2.2rem, 10vw, 2.8rem);
        margin-bottom: .75rem;
    }

    .page-banner-text {
        font-size: .95rem;
        margin-bottom: 1.5rem;
    }

    .page-banner-tag {
        font-size: .65rem;
        letter-spacing: 3px;
    }
}

/* ------------------------------------------------------------------------------ */

/* =====================================================
   QUICK CONTACT SECTION + THANK YOU MODAL — ALL CSS
   ===================================================== */

.qc-header,
.qc-modal-content {
    text-align: center
}

.qc-title-outline {
    color: transparent;
    -webkit-text-stroke: 2px #1C1C1C;
}


/* ── Quick Contact Section ───────────────────────────── */
.quick-contact {
    padding: 4%;
    background: #fff;
    font-family: Outfit, sans-serif;
    border-top: 1px solid #ebebeb
}

.qc-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem
}

.qc-tag {
    font-family: 'Spline Sans Mono', monospace;
    text-transform: uppercase;
    font-size: .75rem;
    letter-spacing: 3px;
    color: #005dae;
    display: inline-block;
    font-weight: 600;
    margin-bottom: .5rem
}

.qc-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    margin: 0 0 .75rem
}

.qc-title-solid {
    color: #638100
}

.qc-title-outline {
    color: transparent;
    -webkit-text-stroke: 2px #1C1C1C
}

.qc-subtext {
    font-size: 1.15rem;
    color: #4a4a4a;
    font-weight: 300;
    line-height: 1.3;
    width: 80%;
    margin: 0 auto
}

.qc-subtext a {
    text-decoration: none !important;
    color: #005dae
}

.qc-subtext+.qc-subtext {
    margin-top: 1rem;
}

.qc-address {
    font-weight: 500;
    color: #005dae;
}

.qc-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem
}

.qc-fields {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.25rem;
    width: 100%;
    max-width: 860px
}

.qc-field {
    display: flex;
    flex-direction: column;
    gap: .4rem
}

.qc-field label {
    font-family: 'Spline Sans Mono', monospace;
    text-transform: uppercase;
    font-size: .78rem;
    font-weight: 600;
    color: #1c1c1c;
    letter-spacing: 1px;
    padding-left: 2%
}

.qc-field input {
    font-family: Outfit, sans-serif;
    padding: .85rem 1.2rem;
    border: 1.5px solid #e0e0e0;
    border-radius: 50px;
    font-size: .95rem;
    color: #1c1c1c;
    background: #fafafa;
    outline: 0;
    transition: border-color .3s, box-shadow .3s;
    width: 100%;
    box-sizing: border-box
}

.qc-field input::placeholder {
    color: #ababab;
    font-weight: 300
}

.qc-field input:focus {
    border-color: #005dae;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 93, 174, .08)
}

.qc-btn {
    font-family: Outfit, sans-serif;
    padding: 1rem 3rem;
    background: 0 0;
    color: #005dae;
    border: 2px solid #005dae;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    transition: background .3s, color .3s, transform .3s;
    position: relative;
    overflow: hidden
}

.qc-btn:hover {
    background: #005dae;
    color: #fff;
    transform: translateY(-2px)
}

.qc-btn span {
    position: relative;
    z-index: 1
}

.qc-error-message {
    font-size: 14px;
    color: #d93025
}

/* ── QC Social Links ─────────────────────────────────── */
.qc-social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}

.qc-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    color: #fff;
}

.qc-social-link:hover {
    transform: translateY(-3px);
    opacity: 0.9;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.qc-social-fb {
    background-color: #1877F2;
}

.qc-social-x {
    background-color: #000000;
}

.qc-social-li {
    background-color: #0A66C2;
}

.qc-social-yt {
    background-color: #FF0000;
}


/* ── Thank You Modal ─────────────────────────────────── */
.qc-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    justify-content: center;
    align-items: center
}

.qc-modal-content {
    background: #fff;
    padding: 30px;
    width: 400px;
    max-width: 90%;
    border-radius: 8px;
    position: relative;
    text-align: center;
    animation: .3s fadeInScale
}

.qc-modal-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px
}

.qc-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(.9)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}


/* ── Media Queries ───────────────────────────────────── */

@media (min-width: 1600px) {
    .qc-fields {
        max-width: 960px
    }
}

@media (min-width: 2200px) {
    .qc-tag {
        font-size: .85rem;
        letter-spacing: 4px
    }

    .qc-fields {
        max-width: 1100px;
        gap: 1.5rem
    }

    .qc-field input {
        padding: 1rem 1.4rem;
        font-size: 1rem
    }

    .qc-btn {
        padding: 1.1rem 3.5rem;
        font-size: 1.05em
    }

    .qc-subtext {
        font-size: 1.3rem
    }
}

@media (max-width: 1440px) {
    .qc-field label {
        font-size: 1rem
    }
}

@media (max-width: 768px) {
    .qc-title-outline {
        -webkit-text-stroke: 1px #1C1C1C
    }

    .quick-contact {
        padding: 7% 4%
    }

    .qc-subtext {
        width: 90%
    }

    .qc-fields {
        grid-template-columns: 1fr 1fr;
        gap: 1rem
    }

    .qc-field:first-child {
        grid-column: 1 / -1
    }
}

@media (max-width: 575px) {
    .qc-fields {
        grid-template-columns: 1fr
    }

    .qc-field:last-child {
        grid-column: auto
    }

    .qc-btn {
        text-align: center
    }
}

@media (max-width: 480px) {
    .quick-contact {
        padding: 8% 5%
    }
}

@media (max-width: 375px) {
    .qc-title {
        letter-spacing: -1px
    }

    .qc-field input {
        padding: .75rem 1rem
    }
}

/* ---------------------------------------------------------------------------------------------- */

/* ── SECTION ──────────────────────────────────────────────────── */
.xb-section {
    padding: 5% 4%;
    background: #eef5e0;
    font-family: 'Outfit', sans-serif;
}

/* ── HEADER — mirrors fp-header exactly ──────────────────────── */
.xb-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    gap: 1rem;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s, transform .6s;
}

.xb-header.xb-reveal {
    opacity: 1;
    transform: translateY(0);
}

.xb-header-left {
    display: flex;
    flex-direction: column;
    /* gap: .45rem; */
}

/* tag — identical to .fp-tag */
.xb-tag {
    font-family: 'Spline Sans Mono', monospace;
    font-size: .72rem;
    letter-spacing: 4px;
    color: #638100;
    text-transform: uppercase;
    display: inline-block;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: .5rem;
}

/* section title — identical to .fp-title */
.xb-title {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
    margin: 0;
    color: #1c1c1c;
}

.xb-title-outline {
    color: transparent;
    -webkit-text-stroke: 2px #1c1c1c;
}

.xb-title-solid {
    color: #638100;
    -webkit-text-stroke: 0;
}

/* ── BLOCKS STACK ─────────────────────────────────────────────── */
.xb-blocks {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* ── SINGLE BLOCK ─────────────────────────────────────────────── */
.xb-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5%;
    align-items: center;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s, transform .65s;
}

.xb-block.xb-block-reveal {
    opacity: 1;
    transform: translateY(0);
}

/* image right on even blocks */
.xb-block--flip .xb-img-col {
    order: 2;
}

.xb-block--flip .xb-content {
    order: 1;
}

/* ── IMAGE COLUMN ─────────────────────────────────────────────── */
.xb-img-col {
    position: relative;
    aspect-ratio: 5/3;
    /* align-self: stretch; */
}

.xb-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── CONTENT COLUMN — mirrors fp-content ─────────────────────── */
.xb-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* padding-left: 1rem; */
}

/* block heading — large, green outlined, light weight */
.xb-block-name {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    color: transparent;
    -webkit-text-stroke: 1.5px #638100;
    margin: 0;
}

/* desc — mirrors .fp-slide-desc */
.xb-desc {
    font-size: .93rem;
    color: #4a4a4a;
    line-height: 1.65;
    font-weight: 300;
    margin: 0;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .45s, transform .45s;
}

.xb-desc.xb-in {
    opacity: 1;
    transform: translateY(0);
}

/* features list — identical to .fp-features */
.xb-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .45s, transform .45s;
}

.xb-features.xb-in {
    opacity: 1;
    transform: translateY(0);
}

/* feature item — identical to .fp-feat */
.xb-feat {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .9rem;
    font-weight: 500;
    color: #2a3a1a;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .4s, transform .4s;
}

.xb-feat.xb-feat-in {
    opacity: 1;
    transform: translateY(0);
}

/* feat icon circle — identical to .fp-feat-icon */
.xb-feat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    border: 1.5px solid #638100;
    flex-shrink: 0;
    color: #638100;
}

.xb-feat-icon svg {
    width: 9px;
    height: 9px;
}

/* read more — identical to .fp-read-more */
.xb-read-more {
    font-family: 'Spline Sans Mono', monospace;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #005dae;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    width: fit-content;
    margin-top: 1rem;
    position: relative;
    text-decoration: none;
    transition: gap .3s, color .3s;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .45s, transform .45s, gap .3s, color .3s;
}

.xb-read-more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #005dae;
    transition: width .35s;
}

.xb-read-more:hover {
    gap: .8rem;
}

.xb-read-more:hover::after {
    width: 100%;
}

.xb-read-more.xb-in {
    opacity: 1;
    transform: translateY(0);
}

/* separator between blocks */
.xb-blocks .xb-block+.xb-block {
    padding-top: 4rem;
    border-top: 1px solid rgba(99, 129, 0, .15);
}

/* ═══════════════════════════════════════════════════════════════
   MEDIA QUERIES — mirrors homepage fp-section breakpoints
   ═══════════════════════════════════════════════════════════════ */

@media (min-width: 1440px) {
    .xb-blocks {
        gap: 5rem;
    }

    .xb-tag {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .xb-desc {
        font-size: 1.2rem;
        line-height: 1.5;
    }

    .xb-feat {
        font-size: 1.1rem;
    }

    .xb-read-more {
        font-size: 1.1rem;
        /* margin-top: 1rem; */
    }

    .xb-block-name {
        font-size: clamp(3.5rem, 6vw, 6.5rem);
    }
}

@media (min-width: 1600px) {
    .xb-desc {
        font-size: 1.4rem;
    }

    .xb-feat {
        font-size: 1.25rem;
    }
}

@media (min-width: 1800px) {
    /* .xb-section {
        padding: 5% 8%;
    } */

    .xb-desc {
        font-size: 1.6rem;
        line-height: 1.6;
    }

    .xb-feat {
        font-size: 1.4rem;
    }

    .xb-read-more {
        font-size: 1.5rem;
    }

    .xb-block-name {
        -webkit-text-stroke: 2px #638100;
    }
}

@media (min-width: 2200px) {
    .xb-desc {
        font-size: 2rem;
    }

    .xb-feat {
        font-size: 1.8rem;
    }
}

@media (max-width: 1023px) {
    .xb-section {
        padding: 7% 5% 4%;
    }

    .xb-block {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* always: image first, content second */
    .xb-block .xb-img-col {
        order: 1;
    }

    .xb-block .xb-content {
        order: 2;
    }

    .xb-block--flip .xb-img-col {
        order: 1;
    }

    .xb-block--flip .xb-content {
        order: 2;
    }

    .xb-img-col {
        aspect-ratio: 16/9;
    }

    /* .xb-content {
        padding-left: 0;
    } */

    .xb-blocks .xb-block+.xb-block {
        padding-top: 3rem;
    }
}

@media (max-width: 768px) {
    .xb-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
    }

    .xb-title-outline {
        -webkit-text-stroke: 1px #1c1c1c;
    }

    .xb-block-name {
        -webkit-text-stroke: 1px #638100;
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .xb-desc {
        font-size: .88rem;
    }
}

@media (max-width: 575px) {
    .xb-section {
        padding: 8% 5%;
    }

    .xb-block-name {
        font-size: clamp(1.8rem, 9vw, 2.8rem);
    }

    .xb-blocks {
        gap: 2.5rem;
    }

    .xb-blocks .xb-block+.xb-block {
        padding-top: 2.5rem;
    }
}

@media (max-width: 375px) {
    .xb-block-name {
        font-size: clamp(1.5rem, 10vw, 2.2rem);
    }
}


/* ---------------------------------------------------------------------------------------------- */
/* ═══════════════════════════════════════════════════════
   UTAG DIVIDER SECTION
   ═══════════════════════════════════════════════════════ */

.utag-section {
    padding: 2.8rem 4%;
    background: #fff;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
    font-family: 'Outfit', sans-serif;
}

.utag-h2 {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0;
    margin: 0;
    color: #1c1c1c;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .6s, transform .6s;
}

.utag-h2.utag-reveal {
    opacity: 1;
    transform: translateY(0);
}

.utag-outline {
    color: transparent;
    -webkit-text-stroke: 1.5px #1c1c1c;
}

.utag-green {
    color: #638100;
}

.utag-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    flex-wrap: nowrap;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .6s .18s, transform .6s .18s;
}

.utag-right.utag-reveal {
    opacity: 1;
    transform: translateY(0);
}

.utag-pill {
    font-family: 'Spline Sans Mono', monospace;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #005dae;
    white-space: nowrap;
    padding: 0 .5rem;
}

.utag-pill+.utag-pill::before {
    content: '/';
    margin-right: .5rem;
    color: #c8d9a0;
    font-weight: 400;
    letter-spacing: 0;
}

/* ── MEDIA QUERIES — identical to homepage ───────────── */

@media (min-width: 1440px) {
    /* .utag-section {
        padding: 2.8rem 7%;
    } */

    .utag-pill {
        font-size: 1rem;
    }
}

@media (min-width: 1800px) {
    /* .utag-section {
        padding: 2.8rem 8%;
    } */
}

@media (max-width: 1023px) {
    .utag-right {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .utag-section {
        grid-template-columns: 1fr;
        padding: 2rem 5%;
    }

    .utag-right {
        justify-content: flex-start;
    }
}

@media (max-width: 575px) {
    .utag-section {
        padding: 1.8rem 5%;
        overflow: hidden;
    }

    .utag-h2 {
        font-size: clamp(1.1rem, 6vw, 1.45rem);
    }
}