    /* ── VARIABLES ── */
    :root {
        --navy: #0d2340;
        --navy-mid: #163559;
        --blue: #1a5fa8;
        --gold: #e8a020;
        --gold-light: #f5b93a;
        --white: #ffffff;
        --off-white: #f4f6fa;
        --text: #2a2a2a;
        --text-muted: #6b7280;
        --border: #dce3ef;
    }

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Lato', sans-serif;
        color: var(--text);
        background: var(--white);
        overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: 'Oswald', sans-serif;
    }

    /* ════════════════════════════════
       HEADER  (same as other pages)
    ════════════════════════════════ */
    .announcement-bar {
        position: relative;
        z-index: 1100;
        background: rgba(13, 35, 64, .82);
        backdrop-filter: blur(18px) saturate(160%);
        -webkit-backdrop-filter: blur(18px) saturate(160%);
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        padding: 9px 0;
        overflow: hidden;
    }

    .announcement-bar::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: -60%;
        width: 60%;
        height: 1.5px;
        background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
        animation: shimmer 3.5s ease-in-out infinite;
    }

    @keyframes shimmer {
        0% {
            left: -60%
        }

        100% {
            left: 140%
        }
    }

    .ann-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(232, 160, 32, .18);
        border: 1px solid rgba(232, 160, 32, .35);
        border-radius: 20px;
        padding: 3px 12px;
        font-size: .72rem;
        font-weight: 700;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        color: var(--gold-light);
    }

    .ann-text {
        font-size: .79rem;
        color: rgba(255, 255, 255, .78);
    }

    .ann-text a {
        color: var(--gold-light);
        text-decoration: none;
        font-weight: 700;
    }

    .ann-text a:hover {
        color: #fff;
    }

    .ann-contact {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: .79rem;
        color: rgba(255, 255, 255, .7);
    }

    .ann-contact i {
        color: var(--gold);
        font-size: .75rem;
    }

    .ann-contact a {
        color: var(--white);
        font-weight: 700;
        text-decoration: none;
        font-family: 'Oswald', sans-serif;
        font-size: .92rem;
        letter-spacing: .5px;
    }

    .ann-contact a:hover {
        color: var(--gold-light);
    }

    .ann-socials {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .ann-socials a {
        width: 28px;
        height: 28px;
        border: 1px solid rgba(255, 255, 255, .18);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, .55);
        font-size: .75rem;
        text-decoration: none;
        transition: all .25s;
    }

    .ann-socials a:hover {
        border-color: var(--gold);
        color: var(--gold-light);
        background: rgba(232, 160, 32, .1);
    }

    .site-header {
        position: sticky;
        top: 0;
        z-index: 1050;
    }

    .main-nav {
        background: rgba(255, 255, 255, .97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-bottom: 1px solid rgba(13, 35, 64, .1);
        box-shadow: 0 4px 24px rgba(13, 35, 64, .1);
        padding: 0;
        transition: box-shadow .3s;
    }

    .nav-logo-wrap {
        display: flex;
        align-items: center;
        gap: 14px;
        text-decoration: none;
    }

    .logo-icon-box {
        position: relative;
        width: 54px;
        height: 54px;
        border-radius: 10px;
        background: var(--navy);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        overflow: hidden;
        transition: transform .3s;
    }

    .logo-icon-box::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient(from 0deg, transparent 60%, rgba(232, 160, 32, .5) 80%, transparent 100%);
        animation: logo-spin 4s linear infinite;
    }

    @keyframes logo-spin {
        to {
            transform: rotate(360deg)
        }
    }

    .logo-icon-box i {
        position: relative;
        z-index: 1;
        color: var(--gold-light);
        font-size: 1.4rem;
    }

    .nav-logo-wrap:hover .logo-icon-box {
        transform: scale(1.06);
    }

    .logo-name {
        font-family: 'Oswald', sans-serif;
        font-size: 1.35rem;
        font-weight: 700;
        color: var(--navy);
        letter-spacing: .5px;
        display: block;
    }

    .logo-tagline {
        font-size: .6rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--blue);
        display: block;
    }

    .nav-items {
        display: flex;
        align-items: center;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 2px;
    }

    .nav-items .nav-link {
        font-family: 'Oswald', sans-serif;
        font-size: .85rem;
        font-weight: 500;
        letter-spacing: .8px;
        text-transform: uppercase;
        color: var(--navy) !important;
        padding: 28px 15px !important;
        position: relative;
        transition: color .25s;
        text-decoration: none;
    }

    .nav-items .nav-link::before {
        content: '';
        position: absolute;
        bottom: 18px;
        left: 15px;
        right: 15px;
        height: 2px;
        background: var(--gold);
        border-radius: 2px;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform .3s ease;
    }

    .nav-items .nav-link:hover::before,
    .nav-items .nav-link.active::before {
        transform: scaleX(1);
        transform-origin: left;
    }

    .nav-items .nav-link:hover {
        color: var(--blue) !important;
    }

    .nav-cta-wrap {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-left: 8px;
    }

    .nav-phone-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--navy);
        text-decoration: none;
        font-family: 'Oswald', sans-serif;
        font-size: .88rem;
        letter-spacing: .5px;
        transition: color .25s;
    }

    .nav-phone-btn .ph-icon {
        width: 34px;
        height: 34px;
        border: 1.5px solid var(--navy-mid);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: .8rem;
        transition: all .25s;
    }

    .nav-phone-btn:hover .ph-icon {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--navy);
    }

    .nav-estimate-btn {
        background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
        color: var(--navy) !important;
        font-family: 'Oswald', sans-serif;
        font-weight: 700;
        font-size: .82rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 11px 22px;
        border-radius: 6px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        transition: all .3s;
        box-shadow: 0 4px 18px rgba(232, 160, 32, .4);
        white-space: nowrap;
        position: relative;
        overflow: hidden;
    }

    .nav-estimate-btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, .3) 0%, transparent 60%);
        opacity: 0;
        transition: opacity .3s;
    }

    .nav-estimate-btn:hover::before {
        opacity: 1;
    }

    .nav-estimate-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(232, 160, 32, .55);
    }

    .nav-toggler {
        background: var(--off-white);
        border: 1.5px solid var(--border);
        border-radius: 8px;
        padding: 8px 12px;
        cursor: pointer;
        display: none;
        flex-direction: column;
        gap: 5px;
        transition: background .25s;
    }

    .nav-toggler span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--navy);
        border-radius: 2px;
        transition: all .3s;
    }

    .nav-toggler.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggler.open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav-toggler.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        background: rgba(13, 35, 64, .97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 12px;
        padding: 20px 24px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
        z-index: 1060;
    }

    .mobile-menu.open {
        display: block;
        animation: slideDown .3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-12px)
        }

        to {
            opacity: 1;
            transform: none
        }
    }

    .mobile-menu a {
        display: block;
        font-family: 'Oswald', sans-serif;
        font-size: 1rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: rgba(255, 255, 255, .8);
        text-decoration: none;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
        transition: color .2s, padding-left .2s;
    }

    .mobile-menu a:hover {
        color: var(--gold-light);
        padding-left: 8px;
    }

    .mobile-menu a:last-child {
        border-bottom: none;
    }

    .mobile-cta {
        margin-top: 16px;
    }

    .mobile-cta a.primary {
        background: var(--gold);
        color: var(--navy);
        text-align: center;
        padding: 13px;
        border-radius: 8px;
        font-family: 'Oswald', sans-serif;
        font-weight: 700;
        font-size: .9rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-decoration: none;
        display: block;
    }

    @media(max-width:991px) {
        .nav-toggler {
            display: flex
        }

        .nav-items,
        .nav-cta-wrap {
            display: none
        }

        .main-nav .container {
            position: relative
        }
    }

    /* ════════════════════════════════
       PAGE HERO — DIAGONAL SPLIT
    ════════════════════════════════ */
    .page-hero {
        position: relative;
        background: var(--navy);
        padding: 80px 0 100px;
        overflow: hidden;
    }

    /* Animated diagonal stripe pattern */
    .page-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(-55deg,
                rgba(255, 255, 255, .018) 0px,
                rgba(255, 255, 255, .018) 1px,
                transparent 1px,
                transparent 32px);
    }

    /* Big gold arc bottom right */
    .hero-arc {
        position: absolute;
        right: -120px;
        bottom: -120px;
        width: 480px;
        height: 480px;
        border: 60px solid rgba(232, 160, 32, .08);
        border-radius: 50%;
    }

    .hero-arc2 {
        position: absolute;
        right: -60px;
        bottom: -60px;
        width: 320px;
        height: 320px;
        border: 40px solid rgba(232, 160, 32, .06);
        border-radius: 50%;
    }

    /* Floating particles */
    .particle {
        position: absolute;
        border-radius: 50%;
        background: rgba(232, 160, 32, .25);
        animation: float 8s ease-in-out infinite;
    }

    .p1 {
        width: 8px;
        height: 8px;
        top: 20%;
        left: 10%;
        animation-delay: 0s
    }

    .p2 {
        width: 5px;
        height: 5px;
        top: 55%;
        left: 20%;
        animation-delay: 1.5s
    }

    .p3 {
        width: 10px;
        height: 10px;
        top: 30%;
        left: 80%;
        animation-delay: 3s
    }

    .p4 {
        width: 6px;
        height: 6px;
        top: 70%;
        left: 70%;
        animation-delay: 2s
    }

    .p5 {
        width: 4px;
        height: 4px;
        top: 15%;
        left: 60%;
        animation-delay: 4s
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0) scale(1);
            opacity: .6
        }

        50% {
            transform: translateY(-18px) scale(1.15);
            opacity: 1
        }
    }

    .hero-content {
        position: relative;
        z-index: 2;
    }

    .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(232, 160, 32, .15);
        border: 1px solid rgba(232, 160, 32, .4);
        border-radius: 20px;
        padding: 5px 16px;
        margin-bottom: 18px;
        font-size: .72rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--gold-light);
    }

    .hero-content h1 {
        font-size: clamp(3rem, 5.5vw, 5rem);
        font-weight: 700;
        color: var(--white);
        text-transform: uppercase;
        letter-spacing: 5px;
        line-height: 1;
        margin-bottom: 18px;
    }

    .hero-content h1 span {
        color: var(--gold-light);
    }

    .hero-content p {
        color: rgba(255, 255, 255, .72);
        font-size: 1rem;
        max-width: 480px;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .breadcrumb-nav {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: .8rem;
        color: rgba(255, 255, 255, .45);
    }

    .breadcrumb-nav a {
        color: rgba(255, 255, 255, .65);
        text-decoration: none;
        transition: color .2s;
    }

    .breadcrumb-nav a:hover {
        color: var(--gold-light);
    }

    .hero-price-note {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 10px;
        padding: 12px 20px;
        margin-top: 24px;
        color: rgba(255, 255, 255, .65);
        font-size: .82rem;
    }

    .hero-price-note i {
        color: var(--gold-light);
    }

    /* Right side visual panel */
    .hero-visual {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .hero-stat-card {
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .12);
        backdrop-filter: blur(10px);
        border-radius: 14px;
        padding: 20px 24px;
        display: flex;
        align-items: center;
        gap: 16px;
        transition: transform .3s, background .3s;
    }

    .hero-stat-card:hover {
        background: rgba(255, 255, 255, .1);
        transform: translateX(6px);
    }

    .hero-stat-card .icon {
        width: 48px;
        height: 48px;
        border-radius: 10px;
        background: var(--gold);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--navy);
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .hero-stat-card h4 {
        font-size: 1rem;
        color: var(--white);
        margin: 0 0 3px;
    }

    .hero-stat-card p {
        font-size: .78rem;
        color: rgba(255, 255, 255, .55);
        margin: 0;
    }

    /* Wave bottom */
    .hero-wave {
        position: absolute;
        bottom: -2px;
        left: 0;
        right: 0;
        height: 70px;
        overflow: hidden;
    }

    .hero-wave svg {
        display: block;
        width: 100%;
        height: 100%;
    }

    /* ════════════════════════════════
       PROMO PACKAGES — HORIZONTAL SCROLL RIBBON + VERTICAL CARDS
    ════════════════════════════════ */

    /* ── Section heading ── */
    .sec-heading {
        text-align: center;
        margin-bottom: 60px;
    }

    .sec-heading h2 {
        font-size: 2.2rem;
        font-weight: 700;
        color: var(--navy);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .divider-line {
        width: 60px;
        height: 3px;
        background: var(--gold);
        margin: 10px auto 14px;
        border-radius: 2px;
    }

    .sec-heading p {
        color: var(--text-muted);
        max-width: 540px;
        margin: 0 auto;
        line-height: 1.7;
        font-size: .95rem;
    }

    /* ── Packages section ── */
    .packages-section {
        padding: 80px 0 90px;
        background: var(--white);
    }

    /* ── Unique layout: Numbered Showcase Cards ── */
    .pkg-showcase {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .pkg-row {
        display: grid;
        grid-template-columns: 80px 1fr 1fr;
        gap: 0;
        position: relative;
        border-bottom: 1px solid var(--off-white);
    }

    .pkg-row:last-child {
        border-bottom: none;
    }

    /* Alternating rows flip image/content sides */
    .pkg-row.reverse {
        grid-template-columns: 1fr 1fr 80px;
    }

    /* Number column */
    .pkg-num {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px 0;
        font-family: 'Oswald', sans-serif;
        font-size: 5rem;
        font-weight: 700;
        color: var(--off-white);
        line-height: 1;
        position: relative;
        user-select: none;
        transition: color .4s;
    }

    .pkg-row:hover .pkg-num {
        color: rgba(232, 160, 32, .18);
    }

    /* Image column */
    .pkg-img {
        position: relative;
        overflow: hidden;
        min-height: 320px;
    }

    .pkg-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .7s cubic-bezier(.25, .46, .45, .94);
    }

    .pkg-row:hover .pkg-img img {
        transform: scale(1.06);
    }

    /* Gradient overlay */
    .pkg-img::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(13, 35, 64, .55) 0%, rgba(13, 35, 64, .15) 100%);
        transition: opacity .4s;
    }

    .pkg-row:hover .pkg-img::after {
        opacity: .5;
    }

    /* Icon badge on image */
    .pkg-img-badge {
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 2;
        width: 52px;
        height: 52px;
        border-radius: 12px;
        background: var(--gold);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--navy);
        font-size: 1.3rem;
        box-shadow: 0 6px 20px rgba(232, 160, 32, .45);
        transition: transform .35s;
    }

    .pkg-row:hover .pkg-img-badge {
        transform: rotate(-8deg) scale(1.1);
    }

    /* Content column */
    .pkg-content {
        padding: 48px 52px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: var(--white);
        transition: background .4s;
        position: relative;
    }

    .pkg-row:hover .pkg-content {
        background: var(--off-white);
    }

    /* Animated left border accent */
    .pkg-content::before {
        content: '';
        position: absolute;
        left: 0;
        top: 20%;
        bottom: 20%;
        width: 3px;
        background: var(--gold);
        transform: scaleY(0);
        transform-origin: bottom;
        transition: transform .45s ease;
        border-radius: 2px;
    }

    .pkg-row.reverse .pkg-content::before {
        left: auto;
        right: 0;
    }

    .pkg-row:hover .pkg-content::before {
        transform: scaleY(1);
    }

    .pkg-tag {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: .7rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--blue);
        margin-bottom: 10px;
    }

    .pkg-tag::before {
        content: '';
        display: inline-block;
        width: 20px;
        height: 2px;
        background: var(--blue);
        border-radius: 2px;
    }

    .pkg-content h3 {
        font-size: 1.7rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 18px;
        line-height: 1.15;
    }

    .pkg-content h3 span {
        color: var(--gold);
    }

    /* Services list */
    .pkg-services {
        list-style: none;
        padding: 0;
        margin: 0 0 28px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px 16px;
    }

    .pkg-services li {
        display: flex;
        align-items: center;
        gap: 9px;
        font-size: .88rem;
        color: var(--text-muted);
        line-height: 1.4;
    }

    .pkg-services li .check {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        flex-shrink: 0;
        background: linear-gradient(135deg, var(--navy), var(--blue));
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: .6rem;
        transition: transform .3s;
    }

    .pkg-row:hover .pkg-services li .check {
        transform: scale(1.15);
    }

    /* CTA row */
    .pkg-cta {
        display: flex;
        align-items: center;
        gap: 14px;
        flex-wrap: wrap;
    }

    .btn-pkg-primary {
        background: var(--navy);
        color: var(--white);
        font-family: 'Oswald', sans-serif;
        font-weight: 600;
        font-size: .82rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 11px 26px;
        border-radius: 6px;
        border: none;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all .3s;
        cursor: pointer;
    }

    .btn-pkg-primary:hover {
        background: var(--blue);
        transform: translateY(-2px);
        box-shadow: 0 8px 22px rgba(13, 35, 64, .25);
        color: var(--white);
    }

    .btn-pkg-ghost {
        color: var(--navy);
        font-family: 'Oswald', sans-serif;
        font-size: .82rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: color .25s, gap .25s;
    }

    .btn-pkg-ghost:hover {
        color: var(--gold);
        gap: 10px;
    }

    .btn-pkg-ghost i {
        font-size: .75rem;
    }

    /* Responsive */
    @media(max-width:991px) {

        .pkg-row,
        .pkg-row.reverse {
            grid-template-columns: 1fr;
        }

        .pkg-num {
            display: none;
        }

        .pkg-img {
            min-height: 220px;
        }

        .pkg-content {
            padding: 32px 28px;
        }

        .pkg-services {
            grid-template-columns: 1fr;
        }

        .pkg-row.reverse {
            direction: ltr;
        }
    }

    /* ════════════════════════════════
       HORIZONTAL TICKER / MARQUEE
    ════════════════════════════════ */
    .ticker-strip {
        background: var(--gold);
        padding: 14px 0;
        overflow: hidden;
        position: relative;
    }

    .ticker-track {
        display: flex;
        gap: 0;
        white-space: nowrap;
        animation: ticker 22s linear infinite;
    }

    @keyframes ticker {
        0% {
            transform: translateX(0)
        }

        100% {
            transform: translateX(-50%)
        }
    }

    .ticker-track:hover {
        animation-play-state: paused;
    }

    .ticker-item {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 0 32px;
        font-family: 'Oswald', sans-serif;
        font-weight: 600;
        font-size: .85rem;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--navy);
    }

    .ticker-item i {
        font-size: .8rem;
        color: rgba(13, 35, 64, .5);
    }

    /* ════════════════════════════════
       PRICING NOTE SECTION
    ════════════════════════════════ */
    .pricing-note {
        background: var(--off-white);
        padding: 56px 0;
    }

    .note-card {
        background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
        border-radius: 20px;
        padding: 48px 52px;
        display: flex;
        align-items: center;
        gap: 40px;
        position: relative;
        overflow: hidden;
    }

    .note-card::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 280px;
        height: 280px;
        border: 50px solid rgba(232, 160, 32, .08);
        border-radius: 50%;
    }

    .note-card::after {
        content: '';
        position: absolute;
        bottom: -40px;
        left: 40%;
        width: 180px;
        height: 180px;
        border: 30px solid rgba(255, 255, 255, .04);
        border-radius: 50%;
    }

    .note-icon {
        width: 72px;
        height: 72px;
        border-radius: 16px;
        background: var(--gold);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--navy);
        font-size: 2rem;
        flex-shrink: 0;
        box-shadow: 0 8px 24px rgba(232, 160, 32, .4);
    }

    .note-text h3 {
        font-size: 1.5rem;
        color: var(--white);
        margin-bottom: 8px;
    }

    .note-text p {
        color: rgba(255, 255, 255, .7);
        font-size: .9rem;
        line-height: 1.7;
        margin: 0;
    }

    .note-cta {
        margin-left: auto;
        flex-shrink: 0;
    }

    .btn-note-cta {
        background: var(--gold);
        color: var(--navy);
        font-family: 'Oswald', sans-serif;
        font-weight: 700;
        font-size: .9rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 14px 32px;
        border-radius: 8px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all .3s;
        box-shadow: 0 6px 22px rgba(232, 160, 32, .4);
        white-space: nowrap;
    }

    .btn-note-cta:hover {
        background: var(--gold-light);
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(232, 160, 32, .5);
        color: var(--navy);
    }

    @media(max-width:767px) {
        .note-card {
            flex-direction: column;
            padding: 32px 24px;
            text-align: center;
            gap: 20px;
        }

        .note-cta {
            margin-left: 0;
        }
    }

    /* ════════════════════════════════
       WHY SECTION
    ════════════════════════════════ */
    .why-section {
        padding: 80px 0;
        background: var(--white);
    }

    .why-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    @media(max-width:767px) {
        .why-grid {
            grid-template-columns: 1fr;
        }
    }

    .why-card {
        background: var(--off-white);
        border-radius: 14px;
        padding: 28px 26px;
        display: flex;
        gap: 18px;
        align-items: flex-start;
        border: 1px solid transparent;
        transition: all .35s;
        position: relative;
        overflow: hidden;
    }

    .why-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--navy), var(--gold));
        transform: scaleX(0);
        transition: transform .4s;
        border-radius: 0 0 14px 14px;
    }

    .why-card:hover {
        background: var(--white);
        border-color: var(--border);
        box-shadow: 0 16px 44px rgba(13, 35, 64, .08);
        transform: translateY(-5px);
    }

    .why-card:hover::after {
        transform: scaleX(1);
    }

    .why-icon {
        width: 52px;
        height: 52px;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--navy), var(--blue));
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold-light);
        font-size: 1.2rem;
        flex-shrink: 0;
        box-shadow: 0 6px 18px rgba(13, 35, 64, .25);
        transition: transform .35s;
    }

    .why-card:hover .why-icon {
        transform: rotate(-8deg) scale(1.1);
    }

    .why-card h5 {
        font-size: 1rem;
        color: var(--navy);
        text-transform: uppercase;
        letter-spacing: .5px;
        margin-bottom: 7px;
    }

    .why-card p {
        font-size: .86rem;
        color: var(--text-muted);
        line-height: 1.65;
        margin: 0;
    }

    /* ════════════════════════════════
       CONTACT / CTA SECTION
    ════════════════════════════════ */
    .cta-section {
        padding: 80px 0;
        background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--blue) 100%);
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/svg%3E");
    }

    .cta-glow {
        position: absolute;
        top: -120px;
        right: -120px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(232, 160, 32, .15) 0%, transparent 60%);
        border-radius: 50%;
        animation: glow-pulse 6s ease-in-out infinite alternate;
    }

    @keyframes glow-pulse {
        0% {
            transform: scale(1)
        }

        100% {
            transform: scale(1.15)
        }
    }

    .cta-content {
        position: relative;
        z-index: 2;
    }

    .cta-content h2 {
        font-size: 2.4rem;
        color: var(--white);
        margin-bottom: 14px;
    }

    .cta-content h2 span {
        color: var(--gold-light);
    }

    .cta-content p {
        color: rgba(255, 255, 255, .72);
        font-size: .95rem;
        line-height: 1.75;
        margin-bottom: 28px;
        max-width: 480px;
    }

    .btn-cta-gold {
        background: var(--gold);
        color: var(--navy);
        font-family: 'Oswald', sans-serif;
        font-weight: 700;
        font-size: .9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 14px 32px;
        border-radius: 6px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all .3s;
        box-shadow: 0 6px 24px rgba(232, 160, 32, .4);
    }

    .btn-cta-gold:hover {
        background: var(--gold-light);
        transform: translateY(-3px);
        color: var(--navy);
    }

    .btn-cta-outline {
        background: transparent;
        color: var(--white);
        border: 2px solid rgba(255, 255, 255, .5);
        font-family: 'Oswald', sans-serif;
        font-weight: 600;
        font-size: .9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 12px 28px;
        border-radius: 6px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all .3s;
    }

    .btn-cta-outline:hover {
        background: rgba(255, 255, 255, .1);
        color: var(--white);
        transform: translateY(-3px);
    }

    .cta-phone-box {
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .15);
        border-radius: 16px;
        padding: 32px;
        text-align: center;
        backdrop-filter: blur(10px);
    }

    .cta-phone-box .ph-num {
        font-family: 'Oswald', sans-serif;
        font-size: 2rem;
        font-weight: 700;
        color: var(--gold-light);
        display: block;
        text-decoration: none;
        transition: color .25s;
    }

    .cta-phone-box .ph-num:hover {
        color: var(--white);
    }

    .cta-phone-box p {
        color: rgba(255, 255, 255, .55);
        font-size: .82rem;
        margin: 6px 0 0;
    }

    /* ════════════════════════════════
       FOOTER
    ════════════════════════════════ */
    footer {
        background: var(--navy);
        color: rgba(255, 255, 255, .7);
        padding: 60px 0 0;
    }

    footer h5 {
        font-family: 'Oswald', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        color: var(--white);
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--gold);
        display: inline-block;
    }

    footer p {
        font-size: .87rem;
        line-height: 1.75;
    }

    footer a {
        color: rgba(255, 255, 255, .6);
        text-decoration: none;
        font-size: .87rem;
        transition: color .2s;
    }

    footer a:hover {
        color: var(--gold-light);
    }

    footer ul {
        list-style: none;
        padding: 0;
    }

    footer ul li {
        padding: 5px 0;
    }

    footer ul li a::before {
        content: '→ ';
        color: var(--gold);
        font-size: .75rem;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
        background: rgba(255, 255, 255, .08);
        border-radius: 6px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-right: 8px;
        color: rgba(255, 255, 255, .6) !important;
        font-size: .95rem;
        transition: all .25s;
    }

    .footer-social a:hover {
        background: var(--gold);
        color: var(--navy) !important;
        transform: translateY(-3px);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, .1);
        margin-top: 48px;
        padding: 20px 0;
        font-size: .8rem;
        color: rgba(255, 255, 255, .4);
    }

    .footer-logo-text {
        font-family: 'Oswald', sans-serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--white);
    }

    .footer-logo-text span {
        color: var(--gold-light);
    }

    /* ════════════════════════════════
       ANIMATIONS
    ════════════════════════════════ */
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity .7s ease, transform .7s ease;
    }

    .reveal.from-left {
        transform: translateX(-30px);
    }

    .reveal.from-right {
        transform: translateX(30px);
    }

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

    .d1 {
        transition-delay: .1s
    }

    .d2 {
        transition-delay: .2s
    }

    .d3 {
        transition-delay: .3s
    }

    .d4 {
        transition-delay: .4s
    }

    /* Back to top */
    #back-top {
        position: fixed;
        bottom: 28px;
        right: 28px;
        width: 46px;
        height: 46px;
        background: var(--gold);
        color: var(--navy);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        box-shadow: 0 4px 16px rgba(0, 0, 0, .25);
        opacity: 0;
        pointer-events: none;
        transition: all .3s;
        z-index: 999;
        text-decoration: none;
    }