/**
 * Landing Page Specific Styles
 * Kampus Thullab
 */

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: var(--z-sticky);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--space-4);
    transition: padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .header-content {
    padding: var(--space-2) var(--space-4);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-primary);
}

.logo img {
    height: 50px;
    width: auto;
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .logo img {
    height: 36px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    list-style: none;
}

.nav-link {
    color: var(--color-gray-700);
    font-weight: 500;
    font-size: var(--text-base);
    transition: all 0.25s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.header.scrolled .nav-link {
    font-size: var(--text-sm);
}

.header.scrolled .nav-cta .btn {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
}

.header.scrolled .nav-portal .btn {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
}

.nav-portal {
    display: flex;
}

.btn-portal {
    color: var(--color-primary-dark);
    background: linear-gradient(135deg, #eef6ff 0%, #dbeafe 100%);
    border: 1px solid rgba(0, 90, 156, 0.18);
    box-shadow: 0 6px 14px rgba(0, 90, 156, 0.12);
}

.btn-portal:hover {
    color: var(--color-white);
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-1px);
}

.nav-cta {
    display: flex;
    gap: var(--space-3);
}

.nav-cta .btn {
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 3px;
    transition: all var(--transition-base);
}

/* ========================================
   HERO SECTION — Redesigned
   ======================================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #001d3d 0%, #003566 30%, #005A9C 60%, #0077B6 100%);
    color: var(--color-white);
    overflow: hidden;
    min-height: 100vh;
}

/* Animated gradient mesh overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0, 119, 182, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse 60% 60% at 80% 30%, rgba(184, 134, 11, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 50% 80% at 50% 90%, rgba(0, 53, 102, 0.6) 0%, transparent 50%);
    animation: meshShift 12s ease-in-out infinite alternate;
}

@keyframes meshShift {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Decorative floating orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -80px;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.12) 0%, transparent 70%);
    animation: orbFloat1 8s ease-in-out infinite;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    bottom: -60px;
    left: -50px;
    background: radial-gradient(circle, rgba(0, 119, 182, 0.2) 0%, transparent 70%);
    animation: orbFloat2 10s ease-in-out infinite;
}

.hero-orb-3 {
    width: 200px;
    height: 200px;
    top: 30%;
    left: 45%;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.08) 0%, transparent 70%);
    animation: orbFloat3 7s ease-in-out infinite;
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, 20px) scale(1.1);
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -25px) scale(1.15);
    }
}

@keyframes orbFloat3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-15px, -20px) scale(1.08);
    }
}

/* Subtle noise texture */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Hero Grid Layout */
.hero .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: var(--space-12);
}

/* Left Column: Text */
.hero-text {
    position: relative;
    z-index: 2;
    padding-top: var(--space-8);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-6);
    backdrop-filter: blur(4px);
    animation: badgeFadeIn 0.6s ease-out 0.1s both;
}

@keyframes badgeFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    color: var(--color-white);
    font-size: clamp(2.2rem, 4vw, 3.75rem);
    font-weight: 800;
    margin-bottom: var(--space-6);
    line-height: 1.1;
    letter-spacing: -0.02em;
    animation: titleReveal 0.8s ease-out 0.2s both;
}

.text-gradient {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-8);
    line-height: 1.7;
    max-width: 540px;
    animation: subtitleFadeIn 0.8s ease-out 0.4s both;
}

@keyframes subtitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(16px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-10);
    animation: ctaFadeIn 0.8s ease-out 0.6s both;
}

@keyframes ctaFadeIn {
    0% {
        opacity: 0;
        transform: translateY(16px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta .btn {
    transition: all 0.3s ease;
}

.hero-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

/* Right Column: Animated Illustration */
.hero-illustration {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: illustrationFadeIn 1s ease-out 0.4s both;
}

@keyframes illustrationFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.85);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Central glow */
.hero-glow {
    position: absolute;
    width: 55%;
    height: 55%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, rgba(0, 119, 182, 0.08) 50%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1;
    }
}

/* Spinning rings */
.hero-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
}

.hero-ring-1 {
    width: 75%;
    height: 75%;
    transform: translate(-50%, -50%);
    animation: ringRotate1 25s linear infinite;
    border-color: rgba(255, 215, 0, 0.12);
}

.hero-ring-2 {
    width: 95%;
    height: 95%;
    transform: translate(-50%, -50%);
    animation: ringRotate2 35s linear infinite;
    border-style: dashed;
    border-color: rgba(255, 255, 255, 0.06);
}

@keyframes ringRotate1 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes ringRotate2 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

/* Main icon */
.hero-icon-main {
    position: relative;
    z-index: 3;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.08) 100%);
    border: 2px solid rgba(255, 215, 0, 0.25);
    border-radius: 50%;
    font-size: 3.2rem;
    color: #FFD700;
    animation: iconFloat 5s ease-in-out infinite;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Orbiting dots */
.hero-orbit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-orbit span {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #FFD700;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
}

.hero-orbit-1 {
    animation: orbitSpin 12s linear infinite;
}

.hero-orbit-1 span {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
}

.hero-orbit-2 {
    animation: orbitSpin 18s linear infinite reverse;
}

.hero-orbit-2 span {
    top: 50%;
    right: 3%;
    width: 7px;
    height: 7px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.hero-orbit-3 {
    animation: orbitSpin 22s linear infinite;
}

.hero-orbit-3 span {
    bottom: 10%;
    left: 12%;
    width: 6px;
    height: 6px;
    background: rgba(0, 180, 255, 0.6);
    box-shadow: 0 0 10px rgba(0, 180, 255, 0.4);
}

@keyframes orbitSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* ========================================
   TRUST BAR
   ======================================== */
.trust-bar {
    background: linear-gradient(to bottom, var(--color-white) 0%, var(--color-gray-50) 100%);
    padding: var(--space-10) 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--color-accent);
    border-bottom: 1px solid var(--color-gray-200);
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-6);
    max-width: 1000px;
    margin: 0 auto;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-6);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.trust-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 90, 156, 0.15);
    border-color: var(--color-primary);
}

.trust-badge svg,
.trust-badge i {
    font-size: 48px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-badge span {
    font-weight: 700;
    color: var(--color-primary);
    font-size: var(--text-lg);
    text-align: center;
}

/* ========================================
   FEATURES GRID
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.feature-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.feature-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--color-white);
    border-radius: var(--radius-xl);
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
}

.feature-card h3 {
    font-size: var(--text-xl);
    color: var(--color-gray-900);
    margin-bottom: var(--space-3);
}

.feature-card p {
    color: var(--color-gray-600);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ========================================
   PROGRAM CARDS
   ======================================== */
.program-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.program-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all var(--transition-base);
    border: 3px solid transparent;
}

.program-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-2xl);
    transform: translateY(-8px);
}

.program-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-5);
    background: var(--gradient-accent);
    color: var(--color-white);
    font-weight: 700;
    font-size: var(--text-lg);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}

.program-card h3 {
    font-size: var(--text-2xl);
    color: var(--color-primary);
    margin-bottom: var(--space-3);
}

.program-card p {
    color: var(--color-gray-600);
    margin-bottom: 0;
}

/* ========================================
   GUIDEBOOK BUTTON
   ======================================== */
.btn-guidebook {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--text-base);
    transition: all 0.3s ease;
    text-decoration: none;
    background: transparent;
}

.btn-guidebook:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 90, 156, 0.25);
    text-decoration: none;
}

.btn-guidebook i {
    font-size: 1.1em;
}

/* ========================================
   STEPS / PROCESS
   ======================================== */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-8);
    position: relative;
}

.step-card {
    text-align: center;
    padding: var(--space-6);
}

.step-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--color-white);
    border-radius: 50%;
    font-size: var(--text-4xl);
    font-weight: 800;
    margin: 0 auto var(--space-4);
    box-shadow: var(--shadow-xl);
}

.step-card h3 {
    font-size: var(--text-xl);
    color: var(--color-gray-900);
    margin-bottom: var(--space-3);
}

.step-card p {
    color: var(--color-gray-600);
    margin-bottom: 0;
}

/* ========================================
   FLYER SLIDER
   ======================================== */
.flyer-slider {
    position: relative;
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    user-select: none;
}

.flyer-slider-viewport {
    overflow: hidden;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    background: var(--color-white);
    touch-action: pan-y;
}

.flyer-slider-track {
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
}

.flyer-slide {
    min-width: 100%;
    padding: var(--space-4);
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

.flyer-slide img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    display: block;
    background: var(--color-white);
}

.flyer-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: rgba(15, 23, 42, 0.75);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 3;
}

.flyer-nav:hover {
    background: rgba(15, 23, 42, 0.9);
}

.flyer-nav:focus-visible,
.flyer-dot:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.flyer-nav.prev {
    left: var(--space-4);
}

.flyer-nav.next {
    right: var(--space-4);
}

.flyer-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-5);
}

.flyer-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: #cbd5e1;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.flyer-dot.active {
    width: 26px;
    background: var(--color-primary);
}

.flyer-fallback {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-gray-500);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: var(--space-8);
}

/* ========================================
   FAQ ACCORDION
   ======================================== */
.faq-list {
    max-width: 800px;
    margin: var(--space-8) auto 0;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-5) var(--space-6);
    background: none;
    border: none;
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-gray-900);
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-base);
}

.faq-question:hover {
    background: var(--color-gray-50);
}

.faq-icon {
    font-size: var(--text-2xl);
    color: var(--color-primary);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 var(--space-6) var(--space-5);
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* ========================================
   CHECKLIST
   ======================================== */
.checklist {
    background: var(--color-gray-50);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    margin-top: var(--space-8);
}

.checklist-items {
    display: grid;
    gap: var(--space-4);
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--color-white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-success);
}

.checklist-item i {
    color: var(--color-success);
    font-size: var(--text-xl);
    margin-top: 2px;
}

.checklist-item-content h4 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: var(--space-1);
}

.checklist-item-content p {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    margin: 0;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: var(--space-20) 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--color-white);
    font-size: var(--text-5xl);
    margin-bottom: var(--space-6);
}

.cta-section p {
    font-size: var(--text-xl);
    margin-bottom: var(--space-8);
    opacity: 0.95;
}

.cta-section .hero-cta {
    justify-content: center;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--color-gray-900);
    color: var(--color-gray-300);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

.footer-section h3 {
    color: var(--color-white);
    font-size: var(--text-xl);
    margin-bottom: var(--space-4);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: var(--space-2);
}

.footer-section a {
    color: var(--color-gray-400);
    transition: color var(--transition-fast);
}

.footer-section a:hover {
    color: var(--color-accent-light);
}

.footer-bottom {
    border-top: 1px solid var(--color-gray-800);
    padding-top: var(--space-6);
    text-align: center;
    color: var(--color-gray-500);
}

/* ========================================
   SECTION HEADER
   ======================================== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-12);
}

.section-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: rgba(0, 90, 156, 0.1);
    color: var(--color-primary);
    font-weight: 700;
    font-size: var(--text-sm);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: var(--text-5xl);
    color: var(--color-gray-900);
    margin-bottom: var(--space-4);
}

.section-header p {
    font-size: var(--text-lg);
    color: var(--color-gray-600);
    margin-bottom: 0;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: var(--space-6);
        box-shadow: var(--shadow-lg);
        gap: var(--space-4);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-cta {
        flex-direction: column;
        width: 100%;
    }

    .nav-portal {
        width: 100%;
    }

    .nav-portal .btn {
        width: 100%;
    }

    .nav-cta .btn {
        width: 100%;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        min-height: auto;
        padding-top: 100px;
        padding-bottom: var(--space-10);
    }

    .hero {
        min-height: auto;
    }

    .hero-text {
        text-align: center;
    }

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-illustration {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: var(--text-4xl);
    }

    .hero-subtitle {
        font-size: var(--text-base);
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-illustration {
        max-width: 240px;
    }

    .hero-icon-main {
        width: 90px;
        height: 90px;
        font-size: 2.4rem;
    }

    .trust-badges {
        gap: var(--space-4);
    }

    .features-grid,
    .program-cards,
    .steps {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: var(--text-3xl);
    }

    .flyer-slide img {
        aspect-ratio: 4 / 3;
    }

    .flyer-nav {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }

    .hero h1 {
        font-size: var(--text-3xl);
    }

    .hero-illustration {
        display: none;
    }

    .hero-orb-1,
    .hero-orb-2,
    .hero-orb-3 {
        display: none;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: var(--text-2xl);
    }

    .flyer-slide {
        padding: var(--space-2);
    }

    .flyer-slide img {
        aspect-ratio: 3 / 4;
    }

    .flyer-nav.prev {
        left: var(--space-2);
    }

    .flyer-nav.next {
        right: var(--space-2);
    }
}

/* ========================================
   TESTIMONIAL SECTION
   ======================================== */
.testimonial-slider {
    position: relative;
    overflow: hidden;
    margin-top: var(--space-8);
}

.testimonial-track {
    display: flex;
    gap: var(--space-6);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--space-4);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - var(--space-4));
    min-width: 300px;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 90, 156, 0.08);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 90, 156, 0.12);
    border-color: rgba(0, 90, 156, 0.15);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: var(--space-4);
    font-size: 14px;
}

.testimonial-content {
    position: relative;
    margin-bottom: var(--space-6);
}

.testimonial-quote-icon {
    position: absolute;
    top: -4px;
    left: -4px;
    font-size: 28px;
    color: rgba(0, 90, 156, 0.08);
    pointer-events: none;
}

.testimonial-content p {
    position: relative;
    z-index: 1;
    color: var(--color-gray-600);
    font-size: var(--text-base);
    line-height: 1.75;
    margin: 0;
    padding-left: var(--space-2);
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-gray-100);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 90, 156, 0.15);
    flex-shrink: 0;
}

.testimonial-avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), #0077B6);
    color: var(--color-white);
    font-weight: 700;
    font-size: var(--text-lg);
}

.testimonial-author-info h4 {
    margin: 0;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-gray-900);
}

.testimonial-author-info span {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: var(--space-6);
}

.testimonial-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--color-gray-200);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dots button.active {
    background: var(--color-primary);
    width: 28px;
    border-radius: 5px;
}

/* Responsive testimonials */
@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc(50% - var(--space-3));
        min-width: 280px;
    }
}

@media (max-width: 640px) {
    .testimonial-card {
        flex: 0 0 85%;
        min-width: 260px;
    }

    .testimonial-card {
        padding: var(--space-6);
    }
}

/* ========================================
   WHATSAPP BUTTON ICON
   ======================================== */
.whatsapp-icon::before {
    content: "📱";
    margin-right: var(--space-2);
}