/* ============================================================
   Swift Space Solutions — Premium Custom Styles
   Supplements Tailwind CDN  |  DM Serif Display + Outfit
   ============================================================ */

/* ==========  1. BASE / CSS VARIABLES  ========== */
:root {
    --navy: #1A3A5C;
    --navy-deep: #0F2238;
    --navy-light: #2D5A87;
    --gold: #C9A227;
    --gold-light: #D4B445;
    --gold-pale: #F5EDD0;
    --charcoal: #2C2C2C;
    --slate: #4A5568;
    --warm-white: #F7F5F0;
    --light-gray: #E8ECF0;
    --white: #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Outfit', Arial, sans-serif;
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--gold);
    color: var(--navy-deep);
}

img { max-width: 100%; height: auto; display: block; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--light-gray); }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--navy-light); }


/* ==========  2. NAVIGATION  ========== */
#navbar {
    transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

#navbar.nav-scrolled {
    background-color: rgba(15, 34, 56, 0.97) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.nav-brand-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.nav-brand-text {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.35rem;
    color: #fff;
    letter-spacing: 0.01em;
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.35s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--gold) !important;
}

/* Mobile menu */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobile-menu.open {
    max-height: 600px;
}


/* ==========  3. HERO SECTIONS  ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-short {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 1rem;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: 100px;
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.hero-title .text-gold {
    color: var(--gold);
}

.hero-stats {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    z-index: 10;
    display: flex;
    gap: 2rem;
}

.hero-stat {
    text-align: right;
}

.hero-stat-number {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 2.25rem;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    margin-top: 0.25rem;
}

/* Hero Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--gold);
    color: var(--navy-deep);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-navy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--navy);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--navy);
}

.btn-navy:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    transform: translateY(-2px);
}


/* ==========  4. SECTION COMMONS  ========== */
section {
    padding: 5rem 0;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-heading {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-heading-white {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--slate);
    font-weight: 300;
    max-width: 600px;
    line-height: 1.6;
}

.section-sub-light {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    max-width: 600px;
    line-height: 1.6;
}


/* ==========  5. PROOF BAR  ========== */
.proof-bar {
    background: var(--navy-deep);
    padding: 1.75rem 0;
}

.proof-bar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
}

.proof-bar-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}


/* ==========  6. SPLIT SECTION (Image + Text)  ========== */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(15, 34, 56, 0.2);
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-image-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--gold);
    color: var(--navy-deep);
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4);
    font-family: 'DM Serif Display', Georgia, serif;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 1rem;
    color: var(--charcoal);
}

.check-list li .check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-list li .check-icon svg {
    width: 12px;
    height: 12px;
    color: #fff;
}


/* ==========  7. SERVICE CARDS  ========== */
.service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 34, 56, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(15, 34, 56, 0.15);
    border-color: var(--gold);
}

.service-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card-body {
    padding: 1.75rem;
}

.service-card-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.35rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.service-card-text {
    color: var(--slate);
    font-size: 0.95rem;
    line-height: 1.6;
}


/* ==========  8. PRICING  ========== */
.pricing-section {
    background: var(--navy-deep);
    position: relative;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: var(--gold);
    position: relative;
    background: rgba(201, 162, 39, 0.08);
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy-deep);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.35rem 1.25rem;
    border-radius: 100px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-features li svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
    flex-shrink: 0;
}


/* ==========  9. GALLERY  ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.gallery-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem 1rem;
    background: linear-gradient(transparent, rgba(15, 34, 56, 0.85));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--slate);
    background: var(--light-gray);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    color: var(--navy);
    border-color: var(--navy);
}

.filter-btn.active {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
}


/* ==========  10. HOW IT WORKS / STEPS  ========== */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(12.5% + 32px);
    right: calc(12.5% + 32px);
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--navy-light), var(--gold));
    opacity: 0.3;
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 25px rgba(15, 34, 56, 0.2);
    border: 3px solid var(--gold-pale);
}

.step-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.step-text {
    color: var(--slate);
    font-size: 0.9rem;
    line-height: 1.55;
}


/* ==========  11. TESTIMONIALS  ========== */
.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 162, 39, 0.4);
}

.testimonial-quote {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

.testimonial-author {
    font-weight: 600;
    color: #fff;
    font-size: 0.95rem;
}

.testimonial-role {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-top: 0.15rem;
}


/* ==========  12. TRANSPARENCY CARDS  ========== */
.transparency-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(15, 34, 56, 0.08);
}

.transparency-card.do {
    border-top: 4px solid var(--gold);
}

.transparency-card.dont {
    border-top: 4px solid var(--navy);
}

.transparency-card h3 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.transparency-card.do h3 { color: var(--gold); }
.transparency-card.dont h3 { color: var(--navy); }

.transparency-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.transparency-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: var(--charcoal);
    border-bottom: 1px solid var(--light-gray);
}

.transparency-card ul li:last-child {
    border-bottom: none;
}

.transparency-card ul li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.transparency-card.do ul li svg { color: var(--gold); }
.transparency-card.dont ul li svg { color: var(--slate); }


/* ==========  13. CTA SECTION  ========== */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 34, 56, 0.93) 0%, rgba(26, 58, 92, 0.88) 100%);
    z-index: 1;
}

.cta-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
}


/* ==========  14. FOOTER  ========== */
.premium-footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-brand-text {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.footer-heading {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 3.5rem;
    padding: 1.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.footer-bottom a:hover { color: var(--gold); }


/* ==========  15. FAQ ACCORDION  ========== */
.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    border: 1px solid var(--light-gray);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover,
.faq-item.open {
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--navy);
    font-size: 1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.45s ease;
    padding: 0 1.5rem;
    color: var(--slate);
    font-size: 0.95rem;
    line-height: 1.65;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding-bottom: 1.25rem;
}

.faq-chevron {
    transition: transform 0.35s ease;
    color: var(--gold);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}


/* ==========  16. FORM STYLES  ========== */
.form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.12);
    outline: none;
}

.form-input::placeholder {
    color: #aab0b8;
}

.form-error {
    color: #dc2626;
    font-size: 0.75rem;
    margin-top: 0.35rem;
}

.form-label {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    display: block;
}


/* ==========  17. LIGHTBOX  ========== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    color: white;
    font-size: 1.75rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: background 0.3s;
}

.lightbox-close:hover { background: rgba(255, 255, 255, 0.2); }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 1.75rem;
    cursor: pointer;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: background 0.3s;
}

.lightbox-nav:hover { background: rgba(255, 255, 255, 0.2); }
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }


/* ==========  18. ANIMATIONS  ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}


/* ==========  19. FOUNDER / PROFILE  ========== */
.founder-card {
    background: var(--warm-white);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(15, 34, 56, 0.08);
}

.founder-initials {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 2.75rem;
    margin: 0 auto 1rem;
    border: 4px solid var(--gold-pale);
    box-shadow: 0 8px 30px rgba(15, 34, 56, 0.15);
}

.founder-quote {
    font-family: 'DM Serif Display', Georgia, serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--navy);
    line-height: 1.55;
    position: relative;
    padding: 1.5rem 0;
    border-top: 2px solid var(--gold-pale);
    margin-top: 1.5rem;
}


/* ==========  20. STATS GRID  ========== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(15, 34, 56, 0.06);
    border: 1px solid var(--light-gray);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.stat-number {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-weight: 600;
    color: var(--navy);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--slate);
    line-height: 1.5;
}


/* ==========  21. PILLAR CARDS  ========== */
.pillar-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 34, 56, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-bottom: 3px solid transparent;
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(15, 34, 56, 0.12);
    border-bottom-color: var(--gold);
}

.pillar-card-icon {
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-card-icon svg {
    width: 48px;
    height: 48px;
    color: var(--gold);
}

.pillar-card-body {
    padding: 2rem;
}

.pillar-card-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.pillar-card-text {
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.6;
}


/* ==========  22. GRADIENT HELPERS  ========== */
.hero-gradient {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
}

.gold-gradient {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}


/* ==========  23. RESPONSIVE  ========== */
@media (max-width: 1024px) {
    .hero-stats {
        position: static;
        margin-top: 2.5rem;
        justify-content: flex-start;
    }

    .hero-stat { text-align: left; }

    .split-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps::before { display: none; }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section { padding: 3.5rem 0; }

    .hero { min-height: 85vh; }
    .hero-short { min-height: 50vh; }

    .hero-title {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    .section-heading,
    .section-heading-white {
        font-size: 1.85rem;
    }

    .steps {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .proof-bar .section-inner > div {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .hero { min-height: 80vh; }
    .hero-short { min-height: 45vh; }

    .hero-title {
        font-size: 1.85rem;
    }

    .section-heading,
    .section-heading-white {
        font-size: 1.6rem;
    }

    .btn-primary, .btn-secondary, .btn-navy {
        width: 100%;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .proof-bar .section-inner > div {
        grid-template-columns: 1fr;
    }
}


/* ==========  24. UTILITIES  ========== */
.text-balance {
    text-wrap: balance;
}

.bg-pattern {
    background-image: radial-gradient(circle at 1px 1px, rgba(201, 162, 39, 0.06) 1px, transparent 0);
    background-size: 40px 40px;
}

.card-hover {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 34, 56, 0.15);
}

/* Gold divider line */
.gold-divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 1rem 0;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
