/* 1. VARIABLES & RESET */
:root {
    --royal-green: #062c1e;
    --deep-green: #041f15;
    --gold: #d4af37;
    --gold-light: #f1d279;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.05);
    --accent-orange: #ff5722;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--white);
    background-color: var(--deep-green);
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
    text-align: center;
}

/* 2. TYPOGRAPHY */
h1, h2, h3, .section-title {
    font-family: 'Playfair Display', serif;
}

.gold { color: var(--gold); }
.gold-glow { 
    color: var(--gold); 
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3); 
}

/* 3. HERO SECTION (HIGH CONVERSION) */
.hero {
    padding: 120px 0 100px;
    background: radial-gradient(circle at top right, #0a3d2a, #041f15);
    position: relative;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.top-status-bar {
    font-size: 0.85rem;
    color: var(--gold-light);
    margin-bottom: 30px;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.dot {
    height: 8px;
    width: 8px;
    background-color: #ff4b2b;
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.free-pill {
    background: var(--accent-orange);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 0 20px rgba(255, 87, 34, 0.3);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #cbd5e0;
}

/* 4. HERO STATS & VALUES */
/* Value Grid Container */
.hero-value-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    perspective: 1000px; /* Adds 3D depth for the hover effect */
}

.val-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

/* The Icon Container - This is the "Secret Sauce" */
.val-item img {
    width: 45px;
    height: 45px;
    padding: 8px;
    background: rgba(233, 233, 233, 0.864); /* Very subtle glass effect */
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2); /* Low-opacity Gold border */
    
    /* This filter makes icons feel "Royal". 
       It reduces saturation and adds a gold-tinted brightness */
    filter: saturate(0.8) brightness(1.1) drop-shadow(0 0 8px rgba(212, 175, 55, 0.2));
    
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hover Effect: The icon "wakes up" */
.val-item:hover img {
    transform: translateY(-8px) scale(1.1);
    background: rgba(221, 180, 45, 0.1);
    border-color: var(--gold);
    filter: saturate(1.2) brightness(1.2) drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
}

.val-item span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold-light);
    text-transform: uppercase;
    opacity: 0.8;
    transition: 0.3s;
}

.val-item:hover span {
    opacity: 1;
    color: var(--white);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* Mobile tweak */
@media (max-width: 600px) {
    .hero-value-grid {
        gap: 15px;
    }
    .val-item img {
        width: 35px;
        height: 35px;
    }
}
/* Value Grid Container  end */

.hero-stats-new {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 180px;
}

.highlight-stat {
    border: 1px solid var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* 5. WHY JOIN SECTION (ENHANCED EMPHASIS) */
.content-section, .why-section, .faq {
    padding: 100px 0;
}

.why-header {
    margin-bottom: 60px;
}

.ultra-emphasis {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.free-badge {
    background: var(--gold);
    color: var(--deep-green);
    padding: 2px 15px;
    border-radius: 4px;
    transform: rotate(-3deg);
    display: inline-block;
    box-shadow: 4px 4px 0px rgba(255, 255, 255, 0.1);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feat-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--gold);
}

/* 6. CURRICULUM & FAQ */
.curriculum-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.day-box {
    background: var(--glass);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: left;
    transition: 0.3s;
}

.day-box:hover { border-color: var(--gold); }

.day-label {
    color: var(--gold);
    font-weight: bold;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.faq-item {
    background: rgba(255,255,255,0.03);
    margin-bottom: 15px;
    padding: 25px;
    border-radius: 12px;
    text-align: left;
    border-left: 3px solid var(--gold);
}

/* 7. FLOATING CTA BUTTON */
.floating-cta {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: auto;
}

.btn-royal {
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    color: var(--deep-green);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    display: block;
    white-space: nowrap;
}

.btn-royal:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
}

/* 8. RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-stats-new { flex-direction: column; align-items: center; }
    .stat-box { width: 100%; }
    .hero-value-grid { gap: 15px; flex-wrap: wrap; }
    .section-title { font-size: 2rem; }
    .btn-royal { padding: 15px 30px; font-size: 1rem; }
}