/* ===================================
   NNM Révolution - Premium Agency Style
   Mobile-First Responsive Design
   =================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@600;700;800&family=League+Spartan:wght@600;700;800&family=Montserrat:wght@400;500;600&display=swap');

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary-blue: #001BB7;
    --warm-cream: #F5F1DC;
    --near-black: #0B0F19;
    --gray: #6B7280;
    --white: #FFFFFF;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #001BB7 0%, #0030E0 100%);
    --gradient-cream: linear-gradient(135deg, #F5F1DC 0%, #FFFBF0 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(0, 27, 183, 0.55) 0%, rgba(11, 15, 25, 0.65) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(11, 15, 25, 0.08);
    --shadow-md: 0 4px 16px rgba(11, 15, 25, 0.12);
    --shadow-lg: 0 8px 32px rgba(11, 15, 25, 0.16);
    --shadow-xl: 0 16px 48px rgba(11, 15, 25, 0.2);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--near-black);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 3rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--near-black);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(44px, 6vw, 84px);
    font-weight: 800;
    line-height: 1.05;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
}

p {
    margin-bottom: 1.25rem;
    font-size: 1.0625rem;
    color: var(--near-black);
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-blue);
    opacity: 0.8;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(11, 15, 25, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(11, 15, 25, 0.04);
}

.navbar .container {
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Desktop header container padding stays consistent (per layout rules) */

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.98);
}

/* Nav Wrapper - Desktop Layout: brand-left, nav-center, cta-right */
.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    position: relative;
}

/* Brand Block - Left (flex: 0 0 auto) */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--near-black);
    z-index: 1001;
    white-space: nowrap;
    flex: 0 0 auto;
    min-width: 0;
    text-decoration: none;
}

.logo:hover {
    color: var(--primary-blue);
}

.logo-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 28px;
}

@media (min-width: 768px) {
    .logo-icon {
        height: 34px;
    }
}

.logo-text {
    font-size: 1.125rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

@media (max-width: 1200px) {
    .logo-text {
        font-size: 1rem;
        max-width: 160px;
    }
}

/* Nav Menu - Center (flex: 1 1 auto) */
.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(10px, 1.4vw, 18px);
    align-items: center;
    flex: 1 1 auto;
    justify-content: center;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    min-width: 0;
}

.nav-menu a {
    color: var(--near-black);
    font-weight: 500;
    font-size: clamp(0.875rem, 0.9vw, 0.9375rem);
    padding: clamp(0.45rem, 0.7vw, 0.55rem) clamp(0.75rem, 1vw, 1rem);
    border-radius: 50px;
    transition: var(--transition);
    opacity: 0.85;
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    display: block;
}

.nav-menu a:hover {
    opacity: 1;
    background-color: rgba(0, 27, 183, 0.08);
    color: var(--primary-blue);
}

.nav-menu a.active {
    color: var(--primary-blue);
    font-weight: 600;
    background-color: rgba(0, 27, 183, 0.1);
    opacity: 1;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background-color: var(--primary-blue);
    border-radius: 50%;
}

/* Nav CTA - Right (flex: 0 0 auto) */
.nav-cta {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.nav-cta .btn-primary {
    font-family: 'League Spartan', 'Poppins', 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: -0.01em;
    font-size: clamp(0.875rem, 0.9vw, 0.9375rem);
    padding: clamp(0.55rem, 0.8vw, 0.625rem) clamp(1.1rem, 1.6vw, 1.5rem);
    border-radius: 50px;
    white-space: nowrap;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
    position: relative;
    flex: 0 0 auto;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--near-black);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 15, 25, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Responsive: Switch to hamburger menu at <= 1100px */
@media (max-width: 1100px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 5rem 2rem 2rem;
        box-shadow: -4px 0 24px rgba(11, 15, 25, 0.15);
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 1001;
        gap: 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 1rem 1.25rem;
        border-radius: 12px;
        margin-bottom: 0.25rem;
        font-size: clamp(1rem, 2.2vw, 1.125rem);
    }

    .nav-menu a.active::after {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }

    .nav-cta {
        order: 2;
        margin-left: auto;
    }
}

/* CTA shrink slightly between 1100px–900px to avoid crowding next to the hamburger */
@media (max-width: 1100px) and (min-width: 900px) {
    .nav-cta .btn-primary {
        font-size: clamp(0.825rem, 0.9vw, 0.9rem);
        padding: 0.5rem 1rem;
    }
}

/* At <= 640px: Move CTA inside drawer */
@media (max-width: 640px) {
    .nav-cta {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        z-index: 1002;
    }

    .nav-menu {
        padding-bottom: 6rem;
    }
}

/* Fade Slider Component */
.fade-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.fade-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.fade-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--primary-blue);
    object-fit: cover;
}

.fade-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 1;
}

.fade-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.fade-slider-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.fade-slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 3;
}

.fade-slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.fade-slider-indicator:hover,
.fade-slider-indicator.active {
    background-color: var(--white);
    border-color: var(--white);
    transform: scale(1.2);
}

.fade-slider.single-image .fade-slider-controls {
    display: none;
}

/* Hero Section */
.hero {
    color: var(--white);
    padding: 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero .fade-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 4rem 0;
}

.hero-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.hero-subtitle {
    font-family: 'Inter', 'Montserrat', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 2rem;
    text-shadow: 0 2px 30px rgba(11, 15, 25, 0.4);
    font-weight: 800;
    line-height: 1.05;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.98);
    margin-bottom: 3rem;
    line-height: 1.75;
    text-shadow: 0 1px 15px rgba(11, 15, 25, 0.25);
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.25rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 27, 183, 0.25);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 27, 183, 0.35);
    color: var(--white);
    background: linear-gradient(135deg, #0020C8 0%, #0035F0 100%);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--white);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.3);
}

/* Sections */
section {
    padding: 6rem 0;
}

@media (min-width: 768px) {
    section {
        padding: 8rem 0;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Page Header (default) - light background, dark text (NO white on white) */
.page-header {
    background-color: var(--white);
    color: var(--near-black);
    padding: 5rem 0 3rem;
    text-align: center;
    border-bottom: 1px solid rgba(11, 15, 25, 0.08);
}

.page-header .container {
    max-width: 900px;
}

.page-header h1 {
    color: var(--near-black);
    font-size: clamp(36px, 6vw, 78px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 1.25rem;
    text-shadow: none;
}

.page-header p {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 0;
    text-shadow: none;
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
}

/* Page Header (slider) - image background with overlay, white text */
.page-header-slider {
    position: relative;
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
    border-bottom: none;
    background-color: transparent;
}

.page-header-slider .fade-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-header-slider .fade-slide::after {
    background: var(--gradient-overlay);
}

.page-header-slider .container {
    position: relative;
    z-index: 1;
}

.page-header-slider h1 {
    color: var(--white);
    text-shadow: 0 2px 20px rgba(11, 15, 25, 0.3);
    margin-bottom: 1rem;
}

.page-header-slider p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 10px rgba(11, 15, 25, 0.2);
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
}

/* Simple Page Header (Designspiration-style) - No background image, clean dark text on white */
.page-header-simple {
    background-color: var(--white) !important;
    color: var(--near-black) !important;
    padding: 5rem 0 3rem !important;
    min-height: auto !important;
    text-align: left;
    border-bottom: 1px solid rgba(11, 15, 25, 0.08);
    position: relative;
    overflow: visible;
}

.page-header-simple .fade-slider {
    display: none !important;
}

.page-header-simple .container {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.page-header-simple h1 {
    color: var(--near-black) !important;
    font-size: clamp(44px, 6vw, 84px) !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.05 !important;
    margin-bottom: 1.5rem !important;
    text-shadow: none !important;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

.page-header-simple p {
    color: var(--gray) !important;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 0;
    text-shadow: none !important;
    max-width: 60ch;
    font-weight: 400;
}

/* Services Section */
.services-section {
    background: linear-gradient(180deg, rgba(245, 241, 220, 0.3) 0%, rgba(255, 255, 255, 0.5) 100%);
    padding: 8rem 0;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.service-card {
    background-color: var(--white);
    padding: 3.5rem 3rem;
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(11, 15, 25, 0.06);
    border: 1px solid rgba(11, 15, 25, 0.06);
    transition: var(--transition-slow);
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 27, 183, 0.15);
    border-color: rgba(0, 27, 183, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 27, 183, 0.08) 0%, rgba(245, 241, 220, 0.5) 100%);
    border-radius: 20px;
    color: var(--primary-blue);
    transition: var(--transition);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.service-card h3 {
    color: var(--near-black);
    margin-bottom: 1.25rem;
    font-size: 1.625rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1.0625rem;
    line-height: 1.75;
    font-weight: 400;
}

.service-link {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    gap: 0.75rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 241, 220, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(11, 15, 25, 0.2);
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 10px rgba(11, 15, 25, 0.1);
}

/* Content Sections */
.about-content,
.trainings-content,
.literacy-content,
.savings-content,
.equipment-content,
.contact-content {
    padding: 7rem 0;
}

@media (min-width: 768px) {
    .about-content,
    .trainings-content,
    .literacy-content,
    .savings-content,
    .equipment-content,
    .contact-content {
        padding: 9rem 0;
    }
}

.about-content:nth-child(even),
.trainings-content:nth-child(even) {
    background-color: var(--warm-cream);
}

.about-section,
.program-intro,
.trainings-intro {
    margin-bottom: 4rem;
}

.about-section h2,
.program-intro h2,
.trainings-intro h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-section h2::after,
.program-intro h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* About Spotlight (image + text on blue/black gradient) */
.about-spotlight {
    background: linear-gradient(135deg, rgba(0, 27, 183, 0.96) 0%, rgba(11, 15, 25, 0.98) 70%);
    border-radius: 28px;
    padding: clamp(1.5rem, 3vw, 3rem);
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(11, 15, 25, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.10);
    position: relative;
}

.about-spotlight::before {
    /* removed light/white blob */
    content: none;
}

.about-spotlight-grid {
    display: grid;
    grid-template-columns: minmax(260px, 420px) 1fr;
    gap: clamp(1.25rem, 2.5vw, 2.5rem);
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-spotlight-media {
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 35px rgba(11, 15, 25, 0.35);
}

.about-spotlight-media img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 5;
    transform: scale(1.02);
    transition: transform 0.6s ease, opacity 0.6s ease;
    opacity: 0.98;
}

.about-spotlight:hover .about-spotlight-media img {
    transform: scale(1.05);
}

.about-spotlight-content {
    color: rgba(255, 255, 255, 0.92);
}

.spotlight-kicker {
    color: rgba(245, 241, 220, 0.92);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: clamp(0.75rem, 0.9vw, 0.875rem);
    margin-bottom: 0.75rem;
}

.about-spotlight h2 {
    color: var(--white);
    margin-bottom: 1rem;
    padding-bottom: 0;
    letter-spacing: -0.02em;
}

.about-spotlight h2::after {
    display: none;
}

.about-spotlight p {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.1rem;
    max-width: 75ch;
}

.spotlight-points {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: grid;
    gap: 0.75rem;
}

.spotlight-points li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.92);
}

.spotlight-points li::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 0.35rem;
    flex: 0 0 10px;
    background: linear-gradient(135deg, rgba(245, 241, 220, 0.95), rgba(0, 27, 183, 0.55));
    box-shadow: 0 0 0 4px rgba(245, 241, 220, 0.08);
}

/* About Spotlight duplicate block removed (canonical styles are defined earlier) */

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-item {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 4px solid var(--primary-blue);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.375rem;
}

.services-list {
    list-style: none;
    padding-left: 0;
}

.services-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(11, 15, 25, 0.08);
    font-size: 1.0625rem;
    line-height: 1.8;
}

.services-list li:last-child {
    border-bottom: none;
}

.services-list li strong {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Training Cards */
.trainings-list {
    display: grid;
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.training-card {
    background-color: var(--white);
    border: 1px solid rgba(11, 15, 25, 0.08);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.training-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 27, 183, 0.2);
}

.training-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
}

.training-card .price {
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: 1.5rem;
    font-size: 1.125rem;
}

/* Feature Cards */
.program-features,
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.feature-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border-top: 4px solid var(--primary-blue);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.address-card {
    display: flex;
    flex-direction: column;
}

.map-container {
    width: 100%;
    margin-top: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(11, 15, 25, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 12px;
}

.feature-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.375rem;
}

/* Savings Plan Table */
.savings-table {
    width: 100%;
    border-collapse: collapse;
    margin: 3rem 0;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    border-radius: 20px;
    overflow: hidden;
    overflow-x: auto;
    display: block;
}

.savings-table table {
    width: 100%;
    min-width: 600px;
}

.savings-table th,
.savings-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(11, 15, 25, 0.08);
}

.savings-table th {
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.savings-table tr:hover {
    background-color: var(--warm-cream);
}

.savings-table tr:last-child td {
    border-bottom: none;
}

/* Forms */
.form-section {
    background-color: var(--white);
    padding: 4rem 3rem;
    border-radius: 24px;
    margin-top: 4rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(11, 15, 25, 0.08);
}

.form-section h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.form-section p {
    margin-bottom: 2.5rem;
    color: var(--gray);
}

.registration-form,
.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--near-black);
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(11, 15, 25, 0.12);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
    background-color: var(--white);
    color: var(--near-black);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 27, 183, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    display: none;
    font-weight: 500;
}

.form-message.success {
    background-color: #D1FAE5;
    color: #065F46;
    border: 2px solid #10B981;
    display: block;
}

.form-message.error {
    background-color: #FEE2E2;
    color: #991B1B;
    border: 2px solid #EF4444;
    display: block;
}

/* FAQ Section */
.faq-section {
    margin: 4rem 0;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid rgba(11, 15, 25, 0.08);
    border-radius: 16px;
    margin-bottom: 1.25rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.75rem;
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-size: 1.0625rem;
}

.faq-question:hover {
    background-color: var(--warm-cream);
}

.faq-answer {
    padding: 0 1.75rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--gray);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    padding: 0 1.75rem 1.75rem;
    max-height: 500px;
}

.faq-toggle {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    color: var(--primary-blue);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

/* Program Details */
.program-details,
.cta-box {
    background-color: var(--warm-cream);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    box-shadow: var(--shadow-sm);
}

.cta-box {
    text-align: center;
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.cta-box h3 {
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(11, 15, 25, 0.2);
}

.cta-box p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    text-shadow: 0 1px 10px rgba(11, 15, 25, 0.1);
}

/* Footer */
.footer {
    background-color: var(--near-black);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--white);
    padding-left: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 64px;
    height: 64px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    color: var(--white);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Section Divider */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(11, 15, 25, 0.1), transparent);
    margin: 4rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    /* Navbar mobile styles are handled at 1100px breakpoint above */

    .hero {
        min-height: 55vh;
    }

    .hero-content {
        padding: 3rem 0;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        padding: 1rem 2rem;
    }

    .services-grid,
    .values-grid,
    .program-features,
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-spotlight-grid {
        grid-template-columns: 1fr;
    }

    .about-spotlight-media img {
        aspect-ratio: 16 / 10;
    }

    .about-spotlight-grid {
        grid-template-columns: 1fr;
    }

    .about-spotlight-media img {
        aspect-ratio: 16 / 10;
    }

    .form-section {
        padding: 2.5rem 1.5rem;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    section {
        padding: 4rem 0;
    }

    .page-header-slider {
        min-height: 40vh;
        padding: 3rem 0;
    }

    .page-header-simple {
        padding: 3.5rem 0 2rem !important;
        text-align: left;
    }

    .page-header-simple h1 {
        font-size: clamp(32px, 7vw, 56px) !important;
    }

    .page-header-simple p {
        font-size: 1rem;
    }

    .fade-slider-controls {
        bottom: 1rem;
    }

    .fade-slider-indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .map-container iframe {
        height: 200px;
    }

    .hero {
        min-height: 50vh;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-card,
    .training-card,
    .feature-card {
        padding: 2rem 1.5rem;
    }

    .fade-slider-controls {
        bottom: 0.75rem;
    }
}
