:root {
    --gold: #d4af37;
    --gold-dark: #b8860b;
    --gold-light: #f0d060;
    --navy-dark: #0a0a1a;
    --navy: #1a1a2e;
    --navy-mid: #16213e;
    --navy-light: #0f3460;
    --white: #ffffff;
    --white-soft: #f5f5f5;
    --gray-light: #e8e8e8;
    --gray: #999;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-bg-light: rgba(255, 255, 255, 0.85);
    --glass-border-light: rgba(255, 255, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    overflow-x: hidden;
    background: var(--navy-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.section-dark {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
    position: relative;
}

.section-light {
    background: linear-gradient(180deg, var(--white-soft) 0%, var(--white) 100%);
    color: #333;
    position: relative;
}

.section-dark::before,
.section-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(212, 175, 55, 0.02) 0%, transparent 60%);
    pointer-events: none;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(212, 175, 55, 0.1);
}

.glass-card-light {
    background: var(--glass-bg-light);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border-light);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card-light:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 30px rgba(212, 175, 55, 0.1);
}

.gold-gradient-text {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark) !important;
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    color: var(--navy-dark) !important;
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold) !important;
    border: 2px solid var(--gold);
    padding: 12px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--navy-dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-white-gold {
    background: var(--white);
    color: var(--navy-dark) !important;
    border: none;
    padding: 16px 42px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-white-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    color: var(--navy-dark) !important;
}

/* ========== NAVBAR ========== */
.navbar-wg {
    padding: 16px 0;
    transition: all 0.4s ease;
    z-index: 1050;
}

.navbar-wg.scrolled {
    padding: 10px 0;
    background: rgba(10, 10, 26, 0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-wg .navbar-brand {
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
    color: var(--gold) !important;
    transition: all 0.3s ease;
}

.navbar-wg .navbar-brand:hover {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.navbar-wg .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 400;
    font-size: 0.95rem;
    padding: 8px 18px !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-wg .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-wg .nav-link:hover {
    color: var(--gold) !important;
}

.navbar-wg .nav-link:hover::after {
    width: 60%;
}

.navbar-wg .btn-nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark) !important;
    border: none;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.navbar-wg .btn-nav-cta:hover {
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

/* ========== HERO ========== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a1a 0%, var(--navy) 25%, var(--navy-mid) 50%, var(--navy-light) 75%, #1a1a2e 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 40%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 60%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(15, 52, 96, 0.3) 0%, transparent 70%);
    animation: heroShimmer 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroShimmer {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(2%, -1%) rotate(1deg); }
    50% { transform: translate(-1%, 2%) rotate(-1deg); }
    75% { transform: translate(-2%, -1%) rotate(0.5deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    padding: 8px 24px;
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-title .decorative {
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
    display: block;
    font-size: 1.2em;
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    opacity: 0.12;
    animation: floatIcon 8s ease-in-out infinite;
}

.floating-icon:nth-child(1) { top: 15%; right: 15%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 60%; right: 8%; animation-delay: 2s; }
.floating-icon:nth-child(3) { bottom: 20%; right: 25%; animation-delay: 4s; }
.floating-icon:nth-child(4) { top: 30%; right: 35%; animation-delay: 1s; }
.floating-icon:nth-child(5) { bottom: 35%; right: 45%; animation-delay: 3s; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: scrollBounce 2s ease-in-out infinite;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.scroll-indicator:hover {
    opacity: 1;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ========== STATS BAR ========== */
.stats-section {
    position: relative;
    z-index: 2;
    margin-top: -60px;
    padding-bottom: 0;
}

.stat-card {
    background: rgba(10, 10, 26, 0.6);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 24px;
    padding: 40px;
}

.stat-item {
    text-align: center;
    padding: 16px 0;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    font-weight: 300;
}

.stat-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.3), transparent);
    margin: 0 8px;
}

/* ========== SECTION HEADERS ========== */
.section-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50px;
    padding: 6px 20px;
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-light .section-title {
    color: var(--navy-dark);
}

.section-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-light .section-subtitle {
    color: #666;
}

/* ========== HOW IT WORKS ========== */
.step-card {
    text-align: center;
    padding: 40px 30px;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark);
    font-weight: 700;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.step-icon {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.step-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--white);
}

.step-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

.step-connector {
    position: absolute;
    top: 68px;
    right: -16px;
    color: rgba(212, 175, 55, 0.3);
    font-size: 1.5rem;
}

/* ========== FEATURES ========== */
.feature-card {
    padding: 36px 28px;
    text-align: center;
    height: 100%;
}

.feature-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon-wrap i {
    font-size: 1.8rem;
    color: var(--gold);
}

.feature-card h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--white);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

/* ========== PRICING ========== */
.pricing-card {
    padding: 40px 32px;
    text-align: center;
    border-radius: 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-popular {
    border: 2px solid var(--gold) !important;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
    transform: scale(1.05);
}

.pricing-popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark);
    padding: 6px 28px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    line-height: 1.2;
}

.pricing-price small {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.pricing-period {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 28px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li i {
    color: var(--gold);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ========== TESTIMONIALS ========== */
.testimonial-card {
    padding: 36px 28px;
    text-align: center;
    height: 100%;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
}

.testimonial-text::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: -15px;
    left: -5px;
    line-height: 1;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-dark);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.testimonial-name {
    font-weight: 600;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 2px;
}

.testimonial-role {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ========== FAQ ========== */
.faq-section .accordion-item {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px !important;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-section .accordion-item:hover {
    border-color: rgba(212, 175, 55, 0.2);
}

.faq-section .accordion-button {
    background: rgba(255, 255, 255, 0.03);
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    padding: 20px 28px;
    border: none;
    box-shadow: none;
    border-radius: 16px !important;
}

.faq-section .accordion-button:not(.collapsed) {
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold);
}

.faq-section .accordion-button::after {
    filter: brightness(0) invert(0.7);
}

.faq-section .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(0.65) sepia(1) hue-rotate(10deg) saturate(3);
}

.faq-section .accordion-body {
    color: rgba(255, 255, 255, 0.65);
    padding: 0 28px 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ========== CTA FINAL ========== */
.cta-final-section {
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 50%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}

.cta-final-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
    animation: heroShimmer 20s ease-in-out infinite;
    pointer-events: none;
}

/* ========== FOOTER ========== */
.footer-section {
    background: var(--navy-dark);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-logo {
    font-family: 'Great Vibes', cursive;
    font-size: 2.2rem;
    color: var(--gold);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo:hover {
    color: var(--gold-light);
}

.footer-links h6 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.88rem;
    display: block;
    padding: 4px 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 8px;
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    margin-top: 48px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
    margin: 0;
}

/* ========== PARTICLES ========== */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 6s ease-in-out infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100%) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-100vh) scale(1); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .stat-divider {
        display: none;
    }

    .pricing-popular {
        transform: scale(1);
    }

    .pricing-popular:hover {
        transform: translateY(-10px);
    }

    .step-connector {
        display: none;
    }

    .navbar-wg .navbar-collapse {
        background: rgba(10, 10, 26, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 16px;
        padding: 20px;
        margin-top: 12px;
        border: 1px solid rgba(212, 175, 55, 0.1);
    }
}

@media (max-width: 575.98px) {
    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn-gold,
    .hero-ctas .btn-outline-gold {
        width: 100%;
        text-align: center;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-pulse-gold {
    animation: pulseGold 3s ease-in-out infinite;
}

@keyframes pulseGold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.2); }
    50% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
}
