/* ==============================
   DBB COURSE — COMPLETE STYLESHEET
   Modern, Eye-Catching, Responsive
   ============================== */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    /* Brand Colors (Modernized from logo) */
    --green: #00C853;
    --green-dark: #1B8A3D;
    --green-glow: rgba(0, 200, 83, 0.3);
    --blue: #2962FF;
    --blue-dark: #1544CC;
    --blue-glow: rgba(41, 98, 255, 0.3);
    --gold: #FFB300;
    --gold-dark: #E6A200;
    --gold-glow: rgba(255, 179, 0, 0.3);
    --red: #FF1744;
    --red-glow: rgba(255, 23, 68, 0.3);

    /* Neutral Colors */
    --bg-dark: #060B18;
    --bg-dark-2: #0A1628;
    --bg-dark-3: #0F1F3D;
    --bg-light: #F4F7FB;
    --bg-light-2: #FFFFFF;
    --card-dark: rgba(255, 255, 255, 0.04);
    --card-border: rgba(255, 255, 255, 0.08);
    --card-light: rgba(255, 255, 255, 0.9);

    /* Text */
    --text-white: #FFFFFF;
    --text-light: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.5);
    --text-dark: #1A1A2E;
    --text-dark-secondary: #4A5568;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 200, 83, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 200, 83, 0.6); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes scroll-indicator {
    0% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateY(10px); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== NAVBAR ===== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-normal);
}

#navbar.scrolled {
    padding: 10px 0;
    background: rgba(6, 11, 24, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-icon-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 1px;
    color: var(--text-white);
}

.logo-sub {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--text-light);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links li a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    color: var(--text-light);
    position: relative;
    padding: 4px 0;
    transition: var(--transition-normal);
}

.nav-links li a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    border-radius: 2px;
    transition: width var(--transition-normal);
}

.nav-links li a:not(.nav-cta):hover {
    color: var(--text-white);
}

.nav-links li a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white !important;
    padding: 10px 22px !important;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
    box-shadow: 0 4px 15px var(--green-glow);
    transition: all var(--transition-normal) !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--green-glow);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--card-dark);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.lang-flag {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(160deg, rgba(6,11,24,0.55) 0%, rgba(10,22,40,0.6) 50%, rgba(13,26,51,0.7) 100%),
        url('assets/dbb-storefront.png') center 30% / cover no-repeat;
    padding: 120px 24px 80px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
}

.shape-1 {
    width: 480px;
    height: 480px;
    background: var(--green);
    top: -140px;
    right: -120px;
}

.shape-2 {
    width: 420px;
    height: 420px;
    background: var(--blue);
    bottom: -120px;
    left: -140px;
}

.shape-3,
.shape-4,
.shape-5,
.shape-6 {
    display: none;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 200, 83, 0.12);
    border: 1px solid rgba(0, 200, 83, 0.25);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 28px;
}

.hero-badge i {
    font-size: 16px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-gradient-text {
    background: linear-gradient(100deg, var(--green), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--green);
    color: white;
    box-shadow: 0 2px 10px rgba(0, 200, 83, 0.25);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 200, 83, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--card-border);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px var(--green-glow);
}

.btn-large {
    padding: 18px 36px;
    font-size: 17px;
}

.btn-card {
    width: 100%;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.1), rgba(41, 98, 255, 0.1));
    color: var(--green);
    border: 1px solid rgba(0, 200, 83, 0.2);
    padding: 12px 20px;
    font-size: 14px;
}

.btn-card:hover {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white;
    border-color: var(--green);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--green-glow);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    width: 100%;
    justify-content: center;
    transition: all var(--transition-normal);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    font-size: 20px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--green);
}

.hero-stat-plus {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--green);
}

.hero-stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: var(--card-border);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 4px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-indicator 2s ease-in-out infinite;
}

/* ===== SECTION SHARED ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--green);
    margin-bottom: 16px;
    background: rgba(0, 200, 83, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(0, 200, 83, 0.2);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--green), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== ABOUT SECTION ===== */
#about {
    padding: var(--section-padding);
    background: var(--bg-dark-2);
    position: relative;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--card-border), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.about-card {
    background: var(--card-dark);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent, var(--green)), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-card:hover::before {
    opacity: 1;
}

.about-card-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.1), rgba(41, 98, 255, 0.1));
    border: 1px solid rgba(0, 200, 83, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--accent, var(--green));
    margin: 0 auto 20px;
    transition: all var(--transition-normal);
}

.about-card:hover .about-card-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 30px rgba(0, 200, 83, 0.2);
}

.about-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* About Highlights */
.about-highlights {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 32px;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.06), rgba(41, 98, 255, 0.06));
    border: 1px solid rgba(0, 200, 83, 0.12);
    border-radius: var(--radius-lg);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
}

.highlight-item i {
    color: var(--green);
    font-size: 18px;
}

/* ===== PROGRAMS SECTION ===== */
#programs {
    padding: var(--section-padding);
    background: var(--bg-dark);
    position: relative;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.program-card {
    background: var(--card-dark);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.program-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 200, 83, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.program-card:hover .program-card-glow {
    opacity: 1;
}

.program-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 200, 83, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.program-card.featured {
    border-color: rgba(0, 200, 83, 0.3);
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.06), rgba(41, 98, 255, 0.06));
}

.program-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 200, 83, 0.2);
}

.program-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    background: rgba(255, 179, 0, 0.1);
    border: 1px solid rgba(255, 179, 0, 0.2);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.program-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.program-level {
    font-size: 14px;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 14px;
}

.program-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.program-features {
    margin-bottom: 24px;
}

.program-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
    padding: 6px 0;
}

.program-features li i {
    color: var(--green);
    font-size: 12px;
    flex-shrink: 0;
}

/* ===== LOCATION SECTION ===== */
#location {
    padding: var(--section-padding);
    background: var(--bg-dark);
    position: relative;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
    gap: 32px;
}

.location-card {
    background: var(--card-dark);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.location-card:hover {
    border-color: rgba(0, 200, 83, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.location-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 28px 0;
}

.location-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--blue), var(--green));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.location-card-header h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
}

.location-label {
    font-size: 13px;
    color: var(--text-muted);
}

.location-map {
    height: 220px;
    margin: 20px 20px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--card-border);
}

.location-info {
    padding: 24px 28px 28px;
}

.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--text-light);
}

.location-detail i {
    color: var(--green);
    margin-top: 3px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

/* ===== CTA SECTION ===== */
#cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.08), rgba(41, 98, 255, 0.08));
    border-top: 1px solid rgba(0, 200, 83, 0.12);
    border-bottom: 1px solid rgba(0, 200, 83, 0.12);
    position: relative;
    overflow: hidden;
}

#cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(0, 200, 83, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
}

/* ===== FOOTER ===== */
#footer {
    padding: 80px 0 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--card-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-links-group h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 20px;
    color: var(--text-white);
}

.footer-links-group ul li {
    margin-bottom: 10px;
}

.footer-links-group ul li a {
    font-size: 14px;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.footer-links-group ul li a:hover {
    color: var(--green);
    padding-left: 4px;
}

.footer-contact h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 20px;
    color: var(--text-white);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item i {
    color: #25D366;
    font-size: 20px;
    flex-shrink: 0;
}

.footer-contact-item span {
    font-size: 12px;
    color: var(--text-muted);
    display: block;
}

.footer-contact-item a {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-white);
}

.footer-contact-item a:hover {
    color: var(--green);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid var(--card-border);
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-normal);
    animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {
    0% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
    100% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4); }
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.5);
}

.wa-tooltip {
    position: absolute;
    right: 72px;
    background: white;
    color: #1A1A2E;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition-normal);
    pointer-events: none;
}

.wa-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 2px;
    transform: translateY(-50%) rotate(45deg);
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 72px 0;
    }

    /* Hero photo background: prevent over-zoom on tall narrow screens */
    #hero {
        min-height: auto;
        padding-top: 140px;
        padding-bottom: 60px;
    }

    /* Navbar Mobile */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: rgba(6, 11, 24, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        transition: right var(--transition-slow);
        border-left: 1px solid var(--card-border);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li a {
        font-size: 18px;
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero-stats {
        gap: 24px;
    }

    .hero-stat-divider {
        display: none;
    }

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

    .hero-scroll-indicator {
        display: none;
    }

    /* About */
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .about-card {
        padding: 24px 20px;
    }

    .about-highlights {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }

    /* Programs */
    .programs-grid {
        grid-template-columns: 1fr;
    }

    /* Location */
    .location-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    /* WA Float */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
        font-size: 24px;
    }

    .wa-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .program-card {
        padding: 28px 24px;
    }

    .section-header {
        margin-bottom: 48px;
    }
}

/* ===== MOBILE NAV OVERLAY ===== */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ===== LEAFLET MAP OVERRIDES ===== */
.leaflet-container {
    border-radius: var(--radius-md);
    font-family: var(--font-body);
}

.leaflet-popup-content-wrapper {
    border-radius: var(--radius-sm) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
}

.leaflet-popup-content {
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin: 12px 16px !important;
}
