/* ═══════════════════════════════════════════
   PREMIUM DESIGN TOKENS (LIGHT THEME)
═══════════════════════════════════════════ */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-card: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.75);

    --accent-blue: #0084c8;
    --accent-blue-light: #f0f7ff;
    --accent-grey: #666666;

    --grad-blue: linear-gradient(135deg, #0084c8, #006699);
    --grad-hero: none; /* Removed colorful gradients */

    --text-primary:   #0f172a;
    --text-secondary: #475569;
    --text-muted:     #94a3b8;

    --border-subtle: rgba(15, 23, 42, 0.06);
    --border-card:   rgba(15, 23, 42, 0.08);

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;

    /* Multi-layered soft shadows for premium feel */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.02), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-card: 0 4px 6px -1px rgba(0,0,0,0.02), 0 12px 36px -6px rgba(0,0,0,0.04);
    --shadow-hover: 0 20px 40px -8px rgba(37,99,235,0.08), 0 8px 16px -4px rgba(37,99,235,0.04);
    --shadow-glow: 0 0 30px rgba(37,99,235,0.15);
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; width: 100%; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */
.section-label { 
    font-family: 'Outfit', sans-serif; 
    font-size: 0.85rem; 
    font-weight: 800; 
    color: var(--accent-blue); 
    text-transform: uppercase; 
    letter-spacing: 0.15em; 
    display: inline-block; 
    margin-bottom: 16px; 
    background: var(--accent-blue-light);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(37,99,235,0.1);
}
.section-title { 
    font-family: 'Outfit', sans-serif; 
    font-size: clamp(2.5rem, 5vw, 3.5rem); 
    font-weight: 900; 
    line-height: 1.15; 
    margin-bottom: 20px; 
    letter-spacing: -0.03em;
    color: var(--text-primary);
}
.section-desc { 
    font-size: 1.15rem; 
    color: var(--text-secondary); 
    max-width: 600px; 
    margin: 0 auto; 
    line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 70px; }
.gradient-text { 
    color: var(--text-primary);
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn-primary, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 32px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    min-height: 58px;
    line-height: normal;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    white-space: nowrap;
}

.btn-primary {
    background: var(--grad-blue);
    color: #fff;
    border: 2px solid transparent;
    box-shadow: 0 10px 25px -5px rgba(37,99,235,0.3), inset 0 1px 1px rgba(255,255,255,0.2);
}

.btn-outline {
    background: #fff;
    color: var(--text-primary);
    border: 2px solid var(--border-card);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px -5px rgba(37,99,235,0.4);
}

.btn-outline:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    transform: translateY(-4px) scale(1.02);
}

.btn-primary svg, .btn-outline svg {
    width: 20px;
    height: 20px;
    display: block;
    flex-shrink: 0;
}

.btn-primary span, .btn-outline span {
    display: inline-block;
}
.btn-outline:hover {
    border-color: var(--accent-blue); color: var(--accent-blue);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 25px -5px rgba(37,99,235,0.1);
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: 80px; display: flex; align-items: center;
    background: transparent; transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.navbar.scrolled {
    background: var(--bg-glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    height: 70px; border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
}
.nav-container {
    width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; cursor: pointer; transition: transform 0.2s; }
.official-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}
.footer-logo {
    height: 60px;
}

.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-link { 
    font-size: 0.95rem; font-weight: 600; color: var(--text-secondary); 
    transition: 0.2s; position: relative; padding: 8px 0;
}
.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--accent-blue); transition: 0.3s; border-radius: 2px;
}
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
    padding: 12px 28px; background: var(--text-primary); color: #fff;
    font-family: 'Outfit', sans-serif; font-weight: 700; border-radius: 50px; font-size: 0.95rem;
    transition: all 0.3s; box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.nav-cta:hover { background: var(--accent-blue); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,99,235,0.2); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
    min-height: 100vh; display: flex; flex-direction: column; align-items: center;
    justify-content: center; text-align: center; padding: 140px 24px 80px;
    position: relative; overflow: hidden; background-color: var(--bg-primary);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-grid { 
    position: absolute; inset: 0; 
    background-image: radial-gradient(var(--border-card) 1px, transparent 1px);
    background-size: 40px 40px; 
    mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, #000 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, #000 40%, transparent 100%);
}
.hero-orb {
    position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.15;
    animation: orbFloat 15s ease-in-out infinite alternate;
}
.orb-1, .orb-2, .orb-3 { display: none; }

.hero-content { position: relative; z-index: 1; max-width: 960px; margin: 0 auto; }
.hero-badge { 
    display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; 
    background: #fff; border: 1px solid var(--border-subtle); border-radius: 50px; 
    font-size: 0.85rem; font-weight: 700; color: var(--text-secondary); margin-bottom: 2rem; 
    box-shadow: var(--shadow-sm);
}
.badge-dot { width: 8px; height: 8px; background: var(--accent-blue); border-radius: 50%; box-shadow: 0 0 10px var(--accent-blue); animation: pulse 2s infinite; }
.hero-title { 
    font-family: 'Outfit', sans-serif; font-size: clamp(2.5rem, 6.5vw, 5rem); 
    font-weight: 900; line-height: 1.1; margin: 0 auto 1.5rem; letter-spacing: -0.04em;
    max-width: 900px; text-wrap: balance;
}
.hero-subtitle { 
    font-size: clamp(1.1rem, 2vw, 1.25rem); color: var(--text-secondary); 
    margin: 0 auto 3rem; max-width: 800px; line-height: 1.6;
    text-wrap: balance;
}
.hero-actions { display: flex; gap: 20px; justify-content: center; align-items: center; margin-bottom: 5rem; flex-wrap: wrap; }

.hero-stats {
    display: inline-flex; background: #fff; border: 1px solid var(--border-card);
    border-radius: 20px; padding: 28px 56px; gap: 60px; box-shadow: var(--shadow-sm);
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stat-number { font-size: 2.5rem; font-weight: 900; font-family: 'Outfit'; background: var(--grad-blue); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; font-weight: 700; letter-spacing: 0.05em; }
.stat-divider { width: 1px; height: 50px; background: var(--border-subtle); align-self: center; }

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about-strip { background: var(--bg-secondary); padding: 120px 0; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.about-text { max-width: 540px; }
.about-desc { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 1.5rem; line-height: 1.8; }
.about-desc strong { color: var(--text-primary); font-weight: 700; }
.about-desc em { color: var(--accent-purple); font-style: normal; font-weight: 600; }
.about-highlights { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 2rem; }
.highlight-chip { 
    display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; 
    background: #fff; border: 1px solid var(--border-card); border-radius: 50px; 
    font-size: 0.9rem; font-weight: 600; color: var(--text-secondary); 
    box-shadow: var(--shadow-sm); transition: 0.3s;
}
.highlight-chip:hover { border-color: var(--accent-blue); color: var(--accent-blue); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(37,99,235,0.1); }
.highlight-chip svg { width: 16px; height: 16px; color: var(--accent-blue); }

.about-visual { 
    position: relative; 
    border-radius: 40px; 
    overflow: visible; 
}
.about-image-wrapper { 
    position: relative; 
    border-radius: 40px; 
    overflow: hidden; 
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-card);
    transform: rotate(-1deg);
}
.about-img { 
    width: 100%; height: 500px; 
    object-fit: cover; 
    transition: transform 0.8s;
}
.about-image-wrapper:hover .about-img { transform: scale(1.05) rotate(1deg); }

.about-exp-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #fff;
    padding: 30px;
    border-radius: 32px;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--border-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 5;
    transform: rotate(2deg);
}
.exp-num { font-family: 'Outfit'; font-size: 2.2rem; font-weight: 900; color: var(--accent-blue); line-height: 1; }
.exp-text { font-size: 0.8rem; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; max-width: 120px; margin-top: 4px; }

/* ═══════════════════════════════════════════
   COURSES
═══════════════════════════════════════════ */
section { padding: 120px 0; }
.courses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.course-category { 
    background: #fff; border: 1px solid var(--border-card); border-radius: 32px; 
    padding: 32px; display: flex; flex-direction: column; gap: 24px; position: relative;
    box-shadow: var(--shadow-sm); transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cat-header { display: flex; flex-direction: column; gap: 16px; border-bottom: 1px solid var(--border-subtle); padding-bottom: 24px; }
.cat-icon { 
    background: var(--bg-secondary); 
    width: 64px; height: 64px; 
    display: flex; align-items: center; justify-content: center; 
    border-radius: 20px; 
    color: var(--accent-blue);
}
.cat-icon svg { width: 32px; height: 32px; }
.cat-title { font-family: 'Outfit'; font-size: 1.5rem; font-weight: 900; color: var(--text-primary); line-height: 1.2; }
.cat-badge { align-self: flex-start; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; background: var(--bg-secondary); padding: 6px 14px; border-radius: 50px; color: var(--text-secondary); border: 1px solid var(--border-subtle); }
.cat-items { display: flex; flex-direction: column; gap: 16px; }
.course-item-inner { 
    background: #fff; border: 1px solid var(--border-card); padding: 24px; border-radius: 20px; 
    transition: 0.3s; box-shadow: var(--shadow-sm); cursor: pointer;
}
.ci-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.ci-name { font-family: 'Outfit'; font-size: 1.15rem; font-weight: 800; color: var(--text-primary); }
.ci-arrow { font-size: 1.2rem; color: var(--text-muted); transition: 0.3s; }
.ci-desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }
.ci-cta { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; transition: 0.2s; }

.cat-blue { border-top: 6px solid var(--accent-blue); }
.cat-gold { border-top: 6px solid var(--accent-gold); }
.cat-purple { border-top: 6px solid var(--accent-purple); }

.cat-blue .ci-cta { color: var(--accent-blue); }
.cat-gold .ci-cta { color: var(--accent-gold); }
.cat-purple .ci-cta { color: var(--accent-purple); }

.course-item-inner:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--border-subtle); }
.course-item-inner:hover .ci-arrow { transform: translateX(4px); color: var(--text-primary); }
.cat-blue .course-item-inner:hover { border-color: #bfdbfe; }
.cat-gold .course-item-inner:hover { border-color: #fde68a; }
.cat-purple .course-item-inner:hover { border-color: #e9d5ff; }

/* ═══════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════ */
.features-section { background: var(--bg-secondary); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); position: relative; overflow: hidden; }
.features-bg { position: absolute; inset: 0; }
.feat-orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.1; }
.feat-orb-1, .feat-orb-2 { display: none; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; z-index: 1; }
.feature-card { 
    background: #fff; padding: 40px; border-radius: 32px; border: 1px solid var(--border-card); 
    transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); box-shadow: var(--shadow-sm); 
    display: flex; flex-direction: column; align-items: flex-start;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: rgba(37,99,235,0.2); }
.feat-icon-wrap { position: relative; margin-bottom: 24px; }
.feat-icon { 
    position: relative; z-index: 2; 
    background: var(--bg-secondary); 
    width: 72px; height: 72px; 
    display: flex; align-items: center; justify-content: center; 
    border-radius: 20px; 
    color: var(--accent-blue);
}
.feat-icon svg { width: 36px; height: 36px; }
.feat-icon-glow { position: absolute; inset: -10px; background: radial-gradient(circle, rgba(37,99,235,0.15), transparent); border-radius: 50%; opacity: 0; transition: 0.3s; z-index: 1; }
.feature-card:hover .feat-icon-glow { opacity: 1; transform: scale(1.2); }
.feat-title { font-family: 'Outfit'; font-size: 1.25rem; font-weight: 800; margin-bottom: 12px; color: var(--text-primary); line-height: 1.3; }
.feat-desc { font-size: 1rem; color: var(--text-secondary); line-height: 1.6; }

/* ═══════════════════════════════════════════
   APP SECTION
═══════════════════════════════════════════ */
.app-card {
    background: linear-gradient(135deg, #f0f7ff 0%, #f5f3ff 100%); 
    border-radius: 40px; padding: 80px; display: grid; grid-template-columns: 1fr auto; 
    gap: 80px; align-items: center; border: 1px solid #e0e7ff; box-shadow: var(--shadow-card);
    position: relative; overflow: hidden;
}
.app-badge { display: inline-block; padding: 8px 20px; background: #fff; border-radius: 50px; font-size: 0.85rem; font-weight: 800; color: var(--accent-purple); margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.app-title { font-family: 'Outfit'; font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 900; margin-bottom: 20px; line-height: 1.1; color: #0f172a; }
.app-desc { font-size: 1.15rem; color: var(--text-secondary); margin-bottom: 40px; max-width: 500px; line-height: 1.7; }
.app-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.app-btn { 
    background: #0f172a; color: #fff; padding: 16px 32px; border-radius: 50px; 
    display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 1rem;
    transition: 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.app-btn:hover { transform: translateY(-4px); box-shadow: 0 10px 25px rgba(0,0,0,0.2); background: #1e293b; }
.app-btn svg { width: 24px; height: 24px; }

/* Elegant Phone Mockup */
.phone-mockup { 
    width: 280px; height: 560px; background: #fff; 
    border: 12px solid #0f172a; border-radius: 48px; position: relative; 
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25), 0 0 0 1px #e2e8f0 inset;
}
.phone-mockup::before {
    content: ''; position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
    width: 80px; height: 24px; background: #0f172a; border-radius: 12px; z-index: 10;
}
.phone-screen { height: 100%; border-radius: 34px; overflow: hidden; background: #000; display: flex; align-items: center; justify-content: center; position: relative; }
.app-screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ═══════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════ */
.reviews-section { background: #fff; position: relative; }
.gmb-rating-badge { 
    display: inline-flex; align-items: center; gap: 12px; 
    background: var(--bg-secondary); padding: 8px 20px; 
    border-radius: 50px; border: 1px solid var(--border-subtle);
    margin-top: 16px;
}
.stars { color: #fabb05; font-size: 1.1rem; letter-spacing: 2px; }
.gmb-rating-badge span { font-size: 0.9rem; color: var(--text-secondary); }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
.review-card { 
    background: #fff; border: 1px solid var(--border-card); 
    padding: 32px; border-radius: 28px; 
    box-shadow: var(--shadow-sm); position: relative;
    transition: 0.3s;
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: var(--accent-blue); }
.rev-quote { 
    position: absolute; top: 15px; right: 25px; 
    font-size: 4rem; font-family: 'Outfit'; color: var(--accent-blue-light); 
    line-height: 1; opacity: 0.5;
}
.rev-text { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; font-style: italic; position: relative; z-index: 1; }
.rev-footer { display: flex; align-items: center; gap: 12px; }
.rev-name { display: block; font-family: 'Outfit'; font-weight: 800; color: var(--text-primary); }
.rev-level { font-size: 0.75rem; font-weight: 700; color: var(--accent-blue); text-transform: uppercase; letter-spacing: 0.05em; }

.reviews-cta { margin-top: 60px; text-align: center; }
.reviews-cta .btn-outline { padding: 14px 28px; font-size: 1rem; }
.reviews-cta svg { width: 18px; height: 18px; color: #4285f4; }

/* ═══════════════════════════════════════════
   LOCATIONS
═══════════════════════════════════════════ */
.locations-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 32px; 
    max-width: 1000px; 
    margin: 0 auto; 
}
.location-card { 
    background: #fff; padding: 40px; border-radius: 32px; border: 1px solid var(--border-card); 
    display: flex; flex-direction: column; gap: 16px; box-shadow: var(--shadow-sm); transition: 0.3s;
}
.location-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: rgba(37,99,235,0.2); }
.loc-icon-wrap { 
    width: 64px; height: 64px; 
    background: var(--accent-blue-light); 
    display: flex; align-items: center; justify-content: center; 
    border-radius: 20px; 
    color: var(--accent-blue); 
}
.loc-icon-wrap svg { width: 32px; height: 32px; }
.loc-icon { display: none; }
.loc-name { font-family: 'Outfit'; font-size: 1.35rem; font-weight: 800; color: var(--text-primary); }
.loc-address { font-size: 1rem; color: var(--text-secondary); flex: 1; line-height: 1.6; }
.loc-map-btn { 
    display: inline-flex; align-items: center; gap: 8px; justify-content: center;
    padding: 14px 20px; background: var(--bg-secondary); border-radius: 50px; 
    font-size: 0.95rem; font-weight: 700; color: var(--text-primary); border: 1px solid var(--border-card); transition: 0.3s;
}
.loc-map-btn:hover { background: var(--accent-blue); color: #fff; border-color: var(--accent-blue); }
.loc-map-btn svg { width: 18px; height: 18px; }

.hours-card { background: var(--accent-blue-light); border-color: rgba(0,132,200,0.2); }
.hours-card .loc-icon-wrap { background: #fff; color: var(--accent-blue); }
.hours-table { background: #fff; padding: 20px; border-radius: 16px; border: 1px solid rgba(0,132,200,0.1); display: flex; flex-direction: column; gap: 12px; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.9rem; }
.hours-day { color: var(--text-secondary); font-weight: 500; }
.hours-time { color: var(--accent-blue); font-weight: 800; font-family: 'Outfit'; }
.hours-card .loc-map-btn { background: #fff; color: var(--accent-blue); border-color: rgba(0,132,200,0.2); }
.hours-card .loc-map-btn:hover { background: var(--accent-blue); color: #fff; border-color: var(--accent-blue); }

/* ═══════════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════════ */
.contact-section { background: var(--bg-secondary); border-top: 1px solid var(--border-subtle); position: relative; }
.contact-bg { position: absolute; inset: 0; }
.co-1, .co-2 { display: none; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; position: relative; z-index: 1; }
.contact-desc { font-size: 1.15rem; color: var(--text-secondary); margin-bottom: 40px; line-height: 1.7; }
.ci-item { display: flex; gap: 20px; margin-bottom: 30px; align-items: flex-start; }
.ci-icon { 
    background: #fff; 
    width: 56px; height: 56px; 
    display: flex; align-items: center; justify-content: center; 
    border-radius: 16px; 
    box-shadow: var(--shadow-sm); 
    border: 1px solid var(--border-card); 
    flex-shrink: 0;
    color: var(--accent-blue);
}
.ci-icon svg { width: 24px; height: 24px; }
.ci-label { display: block; font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 4px; }
.ci-value { font-size: 1.1rem; color: var(--text-primary); font-weight: 600; line-height: 1.5; }

.contact-form-card { background: #fff; padding: 48px; border-radius: 32px; box-shadow: var(--shadow-card); border: 1px solid var(--border-card); }
.form-title { font-family: 'Outfit'; font-size: 1.8rem; font-weight: 900; margin-bottom: 32px; color: var(--text-primary); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 700; color: var(--text-secondary); margin-bottom: 10px; }
.req { color: #ef4444; }
.opt { color: var(--text-muted); font-weight: 500; font-size: 0.8rem; }
.form-group input, .form-group select, .form-group textarea { 
    width: 100%; padding: 16px; border-radius: 16px; border: 1px solid var(--border-card); 
    background: var(--bg-secondary); font-family: inherit; font-size: 1rem; color: var(--text-primary);
    transition: 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent-blue); box-shadow: 0 0 0 4px rgba(37,99,235,0.1); background: #fff; }
.form-submit { width: 100%; justify-content: center; padding: 18px; border-radius: 16px; font-size: 1.1rem; margin-top: 10px; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer { padding: 100px 0 40px; background: #0f172a; border-top: 1px solid rgba(255,255,255,0.05); color: #94a3b8; }
.footer-logo { filter: brightness(0) invert(1); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 80px; }
.footer-desc { font-size: 0.95rem; color: #94a3b8; line-height: 1.7; margin-top: 20px; max-width: 320px; }
.footer-col h4 { font-family: 'Outfit'; font-size: 1.1rem; font-weight: 900; margin-bottom: 24px; color: #fff; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col ul { display: flex; flex-direction: column; gap: 14px; }
.footer-col ul li { font-size: 0.95rem; color: #94a3b8; line-height: 1.6; }
.footer-col ul a { transition: 0.2s; font-weight: 500; color: #94a3b8; }
.footer-col ul a:hover { color: #fff; padding-left: 4px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; color: #64748b; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 32px; flex-wrap: wrap; gap: 16px; }

/* ═══════════════════════════════════════════
   ANIMATIONS & OVERRIDES
═══════════════════════════════════════════ */
@keyframes orbFloat { 0% { transform: translateY(0) scale(1); } 100% { transform: translateY(-50px) scale(1.1); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,99,235,0.4); } 70% { box-shadow: 0 0 0 10px rgba(37,99,235,0); } 100% { box-shadow: 0 0 0 0 rgba(37,99,235,0); } }

[data-aos] { opacity: 0; transform: translateY(40px); transition: opacity 0.8s, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   MOBILE & RESPONSIVE
═══════════════════════════════════════════ */
.hamburger { display: none; cursor: pointer; background: none; border: none; padding: 8px; z-index: 1001; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: 0.3s; margin-bottom: 6px; }
.hamburger span:last-child { margin-bottom: 0; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

@media (max-width: 1024px) {
    .courses-grid, .features-grid, .locations-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-visual { display: none; }
    .app-card { grid-template-columns: 1fr; gap: 60px; text-align: center; padding: 60px 40px; }
    .app-desc { margin: 0 auto 40px; }
    .app-buttons { justify-content: center; }
    .phone-mockup { margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    section { padding: 80px 0; }
    .container { padding: 0 20px; }

    .nav-links {
        display: none; position: absolute; top: 60px; left: 0; right: 0;
        background: #fff;
        flex-direction: column; padding: 40px 24px; gap: 24px;
        border-bottom: 1px solid var(--border-subtle); box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    .navbar { height: 60px; }
    .official-logo { height: 32px; }
    .footer-logo { height: 48px; }
    .nav-links.open { display: flex; }
    .nav-container { justify-content: space-between; }
    .hamburger { display: block; }
    
    .hero { padding: 120px 20px 60px; min-height: auto; }
    .hero-badge { font-size: 0.75rem; padding: 6px 16px; margin-bottom: 1.5rem; }
    .hero-title { font-size: clamp(2.2rem, 10vw, 3rem); line-height: 1.2; margin-bottom: 1.2rem; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 2.5rem; line-height: 1.6; }
    .hero-actions { flex-direction: column; width: 100%; gap: 12px; }
    .btn-primary, .btn-outline { width: 100%; min-height: 52px; font-size: 1rem; }
    
    .hero-stats { flex-direction: column; width: 100%; gap: 20px; padding: 24px; }
    .stat-divider { width: 60px; height: 1px; margin: 0 auto; }
    .stat-number { font-size: 2rem; }
    
    .section-header { margin-bottom: 32px; }
    .section-title { font-size: 2.1rem; }
    .gmb-rating-badge { 
        flex-direction: column; gap: 8px; padding: 12px 20px; 
        text-align: center; width: 100%; border-radius: 20px;
    }
    .section-desc { font-size: 1rem; }
    
    .about-text { text-align: center; }
    .about-highlights { justify-content: center; }
    .about-desc { font-size: 1rem; }

    .app-card { padding: 40px 20px; }
    .app-title { font-size: 2rem; }
    .app-buttons { flex-direction: column; width: 100%; }
    .app-btn { width: 100%; justify-content: center; }
    .phone-mockup { width: 240px; height: 480px; }
    
    .courses-grid, .features-grid, .locations-grid, .reviews-grid, .form-row { grid-template-columns: 1fr; gap: 20px; }
    .feature-card, .location-card, .review-card, .course-category { padding: 20px; border-radius: 20px; }
    .rev-quote { font-size: 2.5rem; top: 10px; right: 15px; }
    .rev-text { font-size: 0.95rem; line-height: 1.6; }
    
    .contact-grid { gap: 40px; }
    .contact-left { text-align: center; }
    .ci-item { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 48px; }
    .footer-col ul { align-items: center; }
    .footer-desc { margin: 20px auto; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
