/* ================================================
   ZENITHRA CAPITAL — INDEX PAGE
   Premium wealth management aesthetic
   Navy + Gold · Editorial · Refined
   ================================================ */

/* ── CSS Variables ── */
:root {
    --navy:          #070d1a;
    --navy-mid:      #0d1526;
    --navy-card:     #0f1a2e;
    --navy-border:   #1e2a45;
    --gold:          #c9a046;
    --gold-light:    #e8c97e;
    --white:         #ffffff;
    --off-white:     #f7f5f0;
    --text-main:     #111827;
    --text-muted:    #6b7280;
    --green:         #22c55e;
    --radius-xl:     28px;
    --radius-lg:     20px;
    --radius-md:     12px;
    --radius-sm:     8px;
    --shadow-sm:     0 4px 12px rgba(0,0,0,0.07);
    --shadow-md:     0 12px 32px rgba(0,0,0,0.13);
    --shadow-lg:     0 24px 60px rgba(0,0,0,0.20);
    --t:             0.3s ease;
}

.home-page section { position: relative; }


/* ══════════════════════════════════════════════
   1. HERO
   ══════════════════════════════════════════════ */
.hero-section {
    background-color: var(--navy);
    background-image: url('../../images/business-team.jpg');
    background-size: cover;
    background-position: center top;
    overflow: hidden;
    position: relative;
}

/* Dark overlay so text stays readable */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(7, 13, 26, 0.88) 0%,
        rgba(7, 13, 26, 0.78) 50%,
        rgba(7, 13, 26, 0.70) 100%
    );
    z-index: 1;
}

.hero-row {
    min-height: 92vh;
    padding: 6rem 0 4rem;
    position: relative;
    z-index: 3;
}

/* Ambient background shapes */
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}

.hero-shape-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(30,58,138,0.55) 0%, transparent 70%);
    top: -150px;
    right: -120px;
    animation: heroFloat 16s ease-in-out infinite;
}

.hero-shape-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(201,160,70,0.18) 0%, transparent 70%);
    bottom: -100px;
    left: 0%;
    animation: heroFloat 20s ease-in-out infinite reverse;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0,0); }
    33%       { transform: translate(24px,-32px); }
    66%       { transform: translate(-16px,18px); }
}

/* Eyebrow badge */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.1rem;
    border: 1px solid var(--navy-border);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201,160,70,0.07);
    margin-bottom: 2rem;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    animation: blink 2.4s ease-in-out infinite;
}

/* Headline */
.hero-headline {
    font-size: clamp(2.8rem, 5.5vw, 5.25rem);
    font-weight: 900;
    line-height: 1.02;
    color: var(--white);
    margin-top: 6rem;
    margin-bottom: 1.75rem;
    letter-spacing: -0.025em;
}

.hero-headline-em {
    font-style: italic;
    font-weight: 900;
    background: linear-gradient(110deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.58);
    max-width: 460px;
    margin-bottom: 2.5rem;
}

/* CTA buttons */
.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.97rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--t);
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.btn-primary-hero:hover {
    background: var(--gold-light);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(201,160,70,0.42);
    text-decoration: none;
}

.btn-arrow { transition: transform var(--t); }
.btn-primary-hero:hover .btn-arrow { transform: translateX(4px); }

.btn-ghost-hero {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 1.75rem;
    border: 1px solid var(--navy-border);
    color: rgba(255,255,255,0.65);
    font-weight: 600;
    font-size: 0.97rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--t);
    white-space: nowrap;
}

.btn-ghost-hero:hover {
    border-color: rgba(255,255,255,0.28);
    color: var(--white);
    text-decoration: none;
}

.btn-ghost-hero--light {
    border-color: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.55);
}

.btn-ghost-hero--light:hover {
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}

/* Inline trust metrics */
.hero-trust-row {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.trust-item { display: flex; flex-direction: column; gap: 0.2rem; }
.trust-num  { font-size: 1.4rem; font-weight: 900; color: var(--white); line-height: 1; }
.trust-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.38);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.trust-divider {
    width: 1px;
    height: 34px;
    background: var(--navy-border);
    flex-shrink: 0;
}

/* Right side visual */
.hero-visual { position: relative; z-index: 2; }

.hero-photo-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-photo {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}

.hero-photo-card:hover .hero-photo { transform: scale(1.03); }

.hero-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(7,13,26,0.55) 100%);
    pointer-events: none;
}

/* Floating data badges */
.hero-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.875rem 1.25rem;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 3;
    animation: badgeFloat 7s ease-in-out infinite;
}

.hero-float-badge--top    { top: 28px;   left: -28px; }
.hero-float-badge--bottom { bottom: 36px; right: -22px; animation-delay: 3.5s; }

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-9px); }
}

.float-badge-icon {
    width: 38px;
    height: 38px;
    background: var(--gold);
    color: var(--navy);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.05rem;
    flex-shrink: 0;
    line-height: 1;
}

.float-badge-value {
    font-size: 0.97rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
}

.float-badge-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

@media (max-width: 992px) {
    .hero-row { padding: 5rem 0 3rem; min-height: auto; }
    .hero-float-badge--top    { left: 12px; }
    .hero-float-badge--bottom { right: 12px; }
    .hero-photo { height: 400px; }
}

@media (max-width: 576px) {
    .hero-headline { font-size: 2.6rem; }
    .hero-float-badge { display: none; }
    .hero-actions { flex-direction: column; }
    .btn-primary-hero,
    .btn-ghost-hero { width: 100%; justify-content: center; }
    .hero-trust-row { gap: 1.5rem; }
    .trust-divider { display: none; }
}


/* ══════════════════════════════════════════════
   2. TRUST BAR
   ══════════════════════════════════════════════ */
.trust-bar {
    background: var(--off-white);
    border-top: 1px solid #e5e1d8;
    border-bottom: 1px solid #e5e1d8;
    padding: 2.5rem 0;
}

.trust-bar-label {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: var(--t);
}

.trust-logo:hover { opacity: 0.75; filter: grayscale(20%); }


/* ══════════════════════════════════════════════
   3. ASSETS SECTION
   ══════════════════════════════════════════════ */
.assets-section { padding: 7rem 0; background: var(--white); }

.assets-grid {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.asset-card {
    display: block;
    text-decoration: none;
    border: 1px solid #ebebeb;
    border-radius: var(--radius-md);
    background: var(--white);
    transition: var(--t);
    overflow: hidden;
}

.asset-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
    transform: translateX(6px);
    text-decoration: none;
}

.asset-card-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
}

.asset-icon   { height: 34px; width: 34px; object-fit: contain; flex-shrink: 0; }
.asset-info   { flex: 1; }
.asset-name   { display: block; font-weight: 700; font-size: 0.97rem; color: var(--text-main); line-height: 1.2; }
.asset-ticker { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; }
.asset-earn        { text-align: right; }
.asset-earn-value  { display: block; font-weight: 800; color: var(--green); font-size: 0.97rem; line-height: 1.2; }
.asset-earn-label  { font-size: 0.68rem; color: var(--text-muted); }


/* ══════════════════════════════════════════════
   SHARED SECTION COPY
   ══════════════════════════════════════════════ */
.section-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-eyebrow--gold { color: rgba(201,160,70,0.85); }

.section-headline {
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--text-main);
    margin-bottom: 1.25rem;
}

.section-headline--light { color: var(--white); }

.section-body {
    font-size: 1.02rem;
    line-height: 1.82;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.section-body--light { color: rgba(255,255,255,0.52); }

/* Checkmark list */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.check-list li::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: rgba(34,197,94,0.1);
    color: var(--green);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 900;
    margin-top: 1px;
}

/* Small primary button */
.btn-primary-sm {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.8rem 1.75rem;
    background: var(--text-main);
    color: var(--white);
    font-weight: 700;
    font-size: 0.93rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--t);
    letter-spacing: 0.01em;
}

.btn-primary-sm:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(201,160,70,0.3);
    text-decoration: none;
}


/* ══════════════════════════════════════════════
   4. FEATURE SPLIT SECTIONS
   ══════════════════════════════════════════════ */
.feature-split-section          { padding: 7rem 0; background: var(--off-white); }
.feature-split-section--dark    { background: var(--navy); }

.feature-photo-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.feature-photo {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}

.feature-photo-wrap:hover .feature-photo { transform: scale(1.03); }

/* Gold accent border behind the photo */
.feature-photo-accent {
    position: absolute;
    top: -18px;
    left: -18px;
    right: 18px;
    bottom: 18px;
    border: 1.5px solid rgba(201,160,70,0.4);
    border-radius: var(--radius-lg);
    z-index: -1;
    pointer-events: none;
}

/* AI feature pills */
.feature-pills {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-sm);
    transition: var(--t);
}

.feature-pill:hover {
    background: rgba(201,160,70,0.07);
    border-color: rgba(201,160,70,0.28);
}

.pill-num {
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    min-width: 22px;
}

.pill-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.82);
}

/* Security 2×2 grid */
.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
    margin-top: 0.5rem;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: var(--white);
    border: 1px solid #ebebeb;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-main);
    transition: var(--t);
}

.security-item:hover {
    border-color: var(--gold);
    background: rgba(201,160,70,0.04);
}

.security-icon {
    color: var(--gold);
    font-size: 1rem;
    width: 20px;
    flex-shrink: 0;
}


/* ══════════════════════════════════════════════
   5. WHY SECTION
   ══════════════════════════════════════════════ */
.why-section { padding: 7rem 0; background: var(--white); }

.why-card {
    padding: 2.5rem 2rem;
    border: 1px solid #ebebeb;
    border-radius: var(--radius-lg);
    height: 100%;
    transition: var(--t);
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Gold top edge on hover / featured */
.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: transparent;
    transition: background var(--t);
}

.why-card:hover::before,
.why-card--featured::before {
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.why-card--featured {
    background: var(--navy);
    border-color: transparent;
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.why-card-num {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.why-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.875rem;
    line-height: 1.3;
}

.why-card--featured .why-card-title { color: var(--white); }

.why-card-body {
    font-size: 0.93rem;
    line-height: 1.78;
    color: var(--text-muted);
    margin: 0;
}

.why-card--featured .why-card-body { color: rgba(255,255,255,0.48); }


/* ══════════════════════════════════════════════
   6. BY THE NUMBERS
   ══════════════════════════════════════════════ */
.numbers-section {
    background: var(--navy);
    padding: 8rem 0;
    text-align: center;
}

.numbers-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(201,160,70,0.6);
    margin-bottom: 5rem;
}

.numbers-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.number-item {
    padding: 0 4rem;
    flex: 1;
    min-width: 180px;
}

.number-value {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.8rem;
    letter-spacing: -0.03em;
}

.number-suffix {
    color: var(--gold);
    font-size: 0.55em;
    vertical-align: super;
    font-weight: 700;
}

.number-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.number-divider {
    width: 1px;
    height: 80px;
    background: var(--navy-border);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .number-divider  { display: none; }
    .number-item     { padding: 2.5rem 1.5rem; min-width: 130px; }
    .numbers-section { padding: 5rem 0; }
    .numbers-eyebrow { margin-bottom: 3rem; }
}


/* ══════════════════════════════════════════════
   7. TESTIMONIALS
   ══════════════════════════════════════════════ */
.testimonials-section { padding: 7rem 0; background: var(--off-white); }

.testimonial-card {
    background: var(--white);
    border: 1px solid #ebebeb;
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--t);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.testimonial-card--featured {
    background: var(--navy);
    border-color: transparent;
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote {
    font-size: 4.5rem;
    line-height: 0.5;
    color: var(--gold);
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0.45;
    user-select: none;
}

.testimonial-text {
    font-size: 0.97rem;
    line-height: 1.78;
    color: var(--text-muted);
    flex: 1;
    margin-bottom: 2rem;
}

.testimonial-card--featured .testimonial-text { color: rgba(255,255,255,0.55); }

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    border-top: 1px solid #f0ece5;
    padding-top: 1.25rem;
}

.testimonial-card--featured .testimonial-footer { border-top-color: var(--navy-border); }

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(201,160,70,0.25);
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-main);
    line-height: 1.3;
}

.testimonial-card--featured .testimonial-name { color: var(--white); }

.testimonial-location {
    font-size: 0.73rem;
    color: var(--text-muted);
}

.testimonial-stars {
    margin-left: auto;
    color: var(--gold);
    font-size: 0.8rem;
    flex-shrink: 0;
    letter-spacing: 0.05em;
}


/* ══════════════════════════════════════════════
   8. JOURNEY / HOW IT WORKS
   ══════════════════════════════════════════════ */
.journey-section { background: var(--navy-mid); padding: 7rem 0; }

.journey-steps {
    display: flex;
    flex-direction: column;
    max-width: 660px;
    margin: 0 auto;
}

.journey-step {
    display: grid;
    grid-template-columns: 56px 40px 1fr;
    align-items: start;
    gap: 0 1.5rem;
    padding: 2rem 0;
}

.journey-step-num {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    padding-top: 0.25rem;
    text-align: right;
    opacity: 0.75;
}

.journey-connector {
    width: 1px;
    background: var(--navy-border);
    margin: 0 auto;
    height: 100%;
    min-height: 90px;
    position: relative;
}

/* Dot on the line */
.journey-connector::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 11px;
    height: 11px;
    background: var(--gold);
    border-radius: 50%;
}

.journey-connector--last { background: transparent; }

.journey-step-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.6rem;
    line-height: 1.3;
    margin-top: 0;
}

.journey-step-body {
    font-size: 0.93rem;
    line-height: 1.78;
    color: rgba(255,255,255,0.42);
    margin: 0;
}

@media (max-width: 576px) {
    .journey-step { grid-template-columns: 36px 28px 1fr; gap: 0 1rem; }
    .journey-section { padding: 5rem 0; }
}


/* ══════════════════════════════════════════════
   9. FINAL CTA
   ══════════════════════════════════════════════ */
.final-cta-section { padding: 7rem 0; background: var(--off-white); }

.final-cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    background: var(--navy);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.final-cta-photo-col { position: relative; min-height: 440px; }

.final-cta-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.final-cta-content-col { padding: 4.5rem 4rem 4.5rem 3.5rem; }

.final-cta-headline {
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 1.25rem;
}

.final-cta-body {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
    margin-bottom: 2.5rem;
}

.final-cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 992px) {
    .final-cta-inner { grid-template-columns: 1fr; }
    .final-cta-photo-col { min-height: 300px; }
    .final-cta-content-col { padding: 3rem 2.5rem; }
}

@media (max-width: 576px) {
    .final-cta-content-col { padding: 2.5rem 1.5rem; }
    .final-cta-actions { flex-direction: column; }
    .btn-primary-hero, .btn-ghost-hero { width: 100%; justify-content: center; }
    .final-cta-section { padding: 4rem 0; }
}


/* ══════════════════════════════════════════════
   PACKAGES SECTION (override for consistency)
   ══════════════════════════════════════════════ */
.packages-section {
    background: var(--navy-mid) !important;
    padding: 7rem 0 !important;
}


/* ══════════════════════════════════════════════
   GLOBAL ANIMATIONS & UTILITIES
   ══════════════════════════════════════════════ */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.35; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fade-in-up { animation: fadeInUp 0.6s ease-out both; }

/* Preserve bootstrap-compat utilities */
.section--padding { padding: 7rem 0; }
