/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg-dark: #0a0a1a;
    --bg-section: #0d0d24;
    --bg-card: #12122e;
    --bg-card-hover: #1a1a3e;
    --accent-1: #6c63ff;
    --accent-2: #f72585;
    --accent-3: #4cc9f0;
    --accent-4: #7209b7;
    --accent-5: #06d6a0;
    --accent-6: #ffd166;
    --neon-blue: #00d4ff;
    --neon-pink: #ff2e97;
    --neon-purple: #b429f9;
    --neon-green: #00ffa3;
    --neon-orange: #ff6b35;
    --white: #ffffff;
    --text: #e2e8f0;
    --text-muted: #8892b0;
    --text-dim: #5a6380;
    --border: rgba(108, 99, 255, 0.1);
    --gradient-hero: linear-gradient(135deg, #0a0a1a 0%, #1a0533 40%, #0d1b3e 70%, #0a0a1a 100%);
    --gradient-accent: linear-gradient(135deg, #6c63ff, #f72585, #4cc9f0);
    --gradient-warm: linear-gradient(135deg, #f72585, #ff6b35, #ffd166);
    --gradient-cool: linear-gradient(135deg, #4cc9f0, #6c63ff, #b429f9);
    --gradient-fresh: linear-gradient(135deg, #06d6a0, #4cc9f0, #6c63ff);
    --gradient-sunset: linear-gradient(135deg, #f72585, #b429f9, #6c63ff);
    --shadow-neon: 0 0 30px rgba(108, 99, 255, 0.3);
    --shadow-pink: 0 0 30px rgba(247, 37, 133, 0.3);
    --shadow-blue: 0 0 30px rgba(76, 201, 240, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 60px rgba(108, 99, 255, 0.15);
    --radius: 20px;
    --radius-sm: 12px;
    --radius-xs: 8px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
    --font-accent: 'Space Grotesk', sans-serif;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; color: var(--white); }
h4, h5, h6 { font-family: var(--font-accent); font-weight: 600; color: var(--white); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; position: relative; overflow: hidden; }

/* ===== CURSOR ===== */
.cursor-dot {
    width: 8px; height: 8px;
    background: var(--neon-pink);
    border-radius: 50%;
    position: fixed; pointer-events: none; z-index: 99999;
    box-shadow: 0 0 10px var(--neon-pink);
}
.cursor-ring {
    width: 36px; height: 36px;
    border: 2px solid rgba(108, 99, 255, 0.5);
    border-radius: 50%;
    position: fixed; pointer-events: none; z-index: 99998;
    transition: all 0.15s ease-out;
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed; inset: 0;
    background: var(--bg-dark);
    display: flex; align-items: center; justify-content: center;
    z-index: 100000;
    transition: opacity 0.6s, visibility 0.6s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.loader-wrapper { text-align: center; }
.loader-plane { position: relative; width: 80px; height: 80px; margin: 0 auto 24px; }
.loader-plane svg { animation: spin 3s linear infinite; }
.loader-plane i { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 24px; color: var(--neon-blue); text-shadow: 0 0 10px var(--neon-blue); }
.loader-text { display: flex; justify-content: center; gap: 2px; }
.loader-text span { font-family: var(--font-accent); font-size: 18px; color: var(--white); opacity: 0; animation: loadChar 1.5s infinite; }
.loader-text span:nth-child(1){animation-delay:0s}.loader-text span:nth-child(2){animation-delay:.05s}.loader-text span:nth-child(3){animation-delay:.1s}.loader-text span:nth-child(4){animation-delay:.15s}.loader-text span:nth-child(5){animation-delay:.2s}.loader-text span:nth-child(6){animation-delay:.25s}.loader-text span:nth-child(7){animation-delay:.3s}.loader-text span:nth-child(8){animation-delay:.35s}.loader-text span:nth-child(9){animation-delay:.4s}.loader-text span:nth-child(10){animation-delay:.45s}.loader-text span:nth-child(11){animation-delay:.5s}.loader-text span:nth-child(12){animation-delay:.55s}.loader-text span:nth-child(13){animation-delay:.6s}.loader-text span:nth-child(14){animation-delay:.65s}.loader-text span:nth-child(15){animation-delay:.7s}.loader-text span:nth-child(16){animation-delay:.75s}
@keyframes loadChar{0%,100%{opacity:0;transform:translateY(10px)}50%{opacity:1;transform:translateY(0)}}
@keyframes spin{from{transform:rotate(0)}to{transform:rotate(360deg)}}

/* ===== NAVIGATION ===== */
#navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000; padding: 20px 0; transition: var(--transition);
}
#navbar.scrolled {
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-family: var(--font-accent); font-size: 18px; font-weight: 700; color: var(--white); line-height: 1.2; }
.logo-sub { font-size: 11px; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; }

.nav-links { display: flex; gap: 32px; }
.nav-links a { font-family: var(--font-accent); font-size: 14px; font-weight: 500; color: var(--text-muted); position: relative; padding: 6px 0; }
.nav-links a::after { content:''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; border-radius: 2px; background: var(--gradient-accent); transition: width 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-cta {
    display: flex; align-items: center; gap: 8px;
    background: var(--gradient-accent); background-size: 200% 100%;
    color: var(--white); padding: 10px 24px; border-radius: 50px;
    font-family: var(--font-accent); font-size: 13px; font-weight: 600;
    box-shadow: var(--shadow-neon); transition: var(--transition);
    animation: gradientMove 3s ease infinite;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(108,99,255,0.5); }
@keyframes gradientMove { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }

.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1001; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh; display: flex; flex-direction: column;
    justify-content: center; position: relative;
    background: var(--gradient-hero); overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; }
.shape { position: absolute; border-radius: 50%; filter: blur(100px); }
.shape-1 { width: 700px; height: 700px; background: rgba(108,99,255,0.15); top: -300px; right: -200px; }
.shape-2 { width: 500px; height: 500px; background: rgba(247,37,133,0.1); bottom: -200px; left: -150px; }
.shape-3 { width: 400px; height: 400px; background: rgba(76,201,240,0.08); top: 40%; left: 20%; }
.shape-4 { width: 300px; height: 300px; background: rgba(114,9,183,0.1); top: 15%; left: 5%; }
.shape-5 { width: 250px; height: 250px; background: rgba(6,214,160,0.08); bottom: 20%; right: 15%; }

#particleCanvas { position: absolute; inset: 0; z-index: 1; }

.hero-grid-bg {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(108,99,255,0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(108,99,255,0.04) 1px, transparent 1px);
    background-size: 80px 80px; z-index: 1;
}

.hero-content {
    position: relative; z-index: 10;
    display: grid; grid-template-columns: 1.1fr 0.9fr;
    gap: 60px; align-items: center;
    max-width: 1200px; margin: 0 auto; padding: 120px 24px 40px;
}

.hero-tag {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(108, 99, 255, 0.08);
    border: 1px solid rgba(108, 99, 255, 0.2);
    padding: 8px 18px; border-radius: 50px; margin-bottom: 28px;
}
.tag-dot { width: 8px; height: 8px; background: var(--neon-green); border-radius: 50%; box-shadow: 0 0 10px var(--neon-green); animation: pulse-dot 2s infinite; }
.hero-tag span { font-family: var(--font-accent); font-size: 13px; color: var(--text-muted); }

.hero h1 { font-size: clamp(42px, 5.5vw, 76px); color: var(--white); line-height: 1.1; margin-bottom: 28px; }
.hero-line-1 { display: block; }
.hero-line-2 { display: block; background: var(--gradient-accent); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: gradientMove 4s ease infinite; min-height: 1.2em; }
.hero-line-2::after { content: '|'; -webkit-text-fill-color: var(--neon-pink); animation: blink 1s step-end infinite; font-weight: 300; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.hero-line-3 { display: block; }
.text-stroke { -webkit-text-stroke: 2px var(--accent-1); -webkit-text-fill-color: transparent; }

.hero-desc { font-size: 17px; color: var(--text-muted); max-width: 520px; margin-bottom: 40px; line-height: 1.9; }

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-glow {
    position: relative; display: inline-flex; align-items: center;
    padding: 16px 36px; background: var(--gradient-accent); background-size: 200% 100%;
    color: var(--white); border-radius: 50px;
    font-family: var(--font-accent); font-size: 15px; font-weight: 600;
    overflow: hidden; box-shadow: var(--shadow-neon);
    animation: gradientMove 3s ease infinite;
}
.btn-glow:hover { transform: translateY(-3px); box-shadow: 0 0 50px rgba(108,99,255,0.5); }
.btn-shine { position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); animation: shine 3s infinite; }
@keyframes shine{0%{left:-100%}50%{left:100%}100%{left:100%}}

.btn-glass {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 28px; border-radius: 50px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(108,99,255,0.3);
    backdrop-filter: blur(10px);
    font-family: var(--font-accent); font-size: 15px; font-weight: 500; color: var(--white);
}
.btn-glass:hover { background: rgba(108,99,255,0.1); border-color: rgba(108,99,255,0.5); box-shadow: var(--shadow-neon); }

.hero-clients { display: flex; align-items: center; gap: 16px; }
.client-avatars { display: flex; }
.avatar { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--white); border: 2px solid var(--bg-dark); margin-left: -10px; }
.avatar:first-child { margin-left: 0; }
.client-info { font-size: 13px; color: var(--text-muted); }
.client-info strong { color: var(--white); font-size: 15px; }
.client-stars { color: var(--accent-6); font-size: 11px; display: block; margin-top: 2px; }

/* Hero Illustration */
.hero-right { position: relative; display: flex; justify-content: center; }
.hero-illustration { position: relative; width: 100%; max-width: 420px; aspect-ratio: 1; }
.illust-globe { position: relative; width: 100%; height: 100%; animation: float 6s ease-in-out infinite; }
.globe-svg { width: 100%; height: 100%; }

.globe-pin {
    position: absolute; display: flex; align-items: center; gap: 6px;
    background: rgba(18, 18, 46, 0.7); backdrop-filter: blur(10px);
    border: 1px solid rgba(108,99,255,0.3); padding: 8px 14px;
    border-radius: 20px; font-size: 11px; color: var(--white);
    font-family: var(--font-accent); animation: float 4s ease-in-out infinite;
}
.globe-pin i { color: var(--neon-pink); font-size: 12px; }
.pin-1 { top: 15%; right: 10%; animation-delay: 0s; }
.pin-2 { bottom: 25%; right: 5%; animation-delay: 1s; }
.pin-3 { top: 30%; left: 5%; animation-delay: 0.5s; }
.pin-4 { bottom: 15%; left: 15%; animation-delay: 1.5s; }

.floating-card {
    position: absolute; display: flex; align-items: center; gap: 10px;
    background: rgba(18, 18, 46, 0.8); backdrop-filter: blur(20px);
    border: 1px solid rgba(108,99,255,0.2); padding: 14px 20px;
    border-radius: var(--radius-sm); color: var(--white); font-size: 13px;
    font-family: var(--font-accent); animation: float 5s ease-in-out infinite;
    box-shadow: var(--shadow-card);
}
.floating-card i { font-size: 18px; }
.card-visa { top: 10%; left: -10%; animation-delay: 0.5s; }
.card-visa i { color: var(--neon-blue); text-shadow: 0 0 10px var(--neon-blue); }
.card-visa .card-check { width: 22px; height: 22px; background: var(--neon-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--bg-dark); box-shadow: 0 0 10px var(--neon-green); }
.card-plane { bottom: 20%; right: -5%; animation-delay: 1.2s; }
.card-plane i { color: var(--accent-6); text-shadow: 0 0 10px var(--accent-6); }

@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-14px)}}
@keyframes pulse-dot{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(1.5)}}

/* Hero Marquee */
.hero-marquee { position: relative; z-index: 10; padding: 18px 0; border-top: 1px solid rgba(108,99,255,0.08); overflow: hidden; }
.marquee-track { display: flex; gap: 28px; white-space: nowrap; animation: marquee 25s linear infinite; font-family: var(--font-accent); font-size: 15px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; }
.marquee-track .dot { color: var(--neon-pink); text-shadow: 0 0 5px var(--neon-pink); }
@keyframes marquee{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* ===== SECTION HEADERS ===== */
.section-label { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.section-label.center { justify-content: center; }
.label-line { width: 30px; height: 2px; background: var(--gradient-accent); border-radius: 2px; }
.section-label span { font-family: var(--font-accent); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--accent-1); }
.section-title { font-size: clamp(32px, 4vw, 50px); margin-bottom: 16px; }
.section-title.center { text-align: center; }
.section-subtitle { text-align: center; color: var(--text-muted); font-size: 16px; max-width: 550px; margin: 0 auto; }
.gradient-text-purple { background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-header-fancy { margin-bottom: 60px; }

/* ===== ABOUT ===== */
.about { background: var(--bg-section); }
.section-shape-divider { position: absolute; width: 100%; color: var(--bg-section); }
.section-shape-divider.top { top: -1px; }
.section-shape-divider svg { width: 100%; height: 60px; }

.about-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.about-card-stack { position: relative; height: 400px; }
.about-main-card {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: var(--bg-card); border-radius: var(--radius); padding: 40px;
    box-shadow: var(--shadow-card); text-align: center;
    border: 1px solid var(--border);
}
.about-icon-circle { position: relative; width: 100px; height: 100px; margin: 0 auto 16px; }
.about-icon-circle svg { position: absolute; inset: 0; animation: spin 10s linear infinite; }
.about-icon-circle i { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 36px; color: var(--accent-1); text-shadow: 0 0 20px var(--accent-1); }
.about-main-card h3 { font-family: var(--font-accent); font-size: 28px; }
.about-main-card p { color: var(--text-muted); font-size: 14px; }

.about-stat-card {
    position: absolute; background: var(--bg-card); border-radius: var(--radius-sm);
    padding: 16px 20px; box-shadow: var(--shadow-card);
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-accent); font-size: 13px; font-weight: 600; color: var(--white);
    border: 1px solid var(--border);
}
.card-s1 { top: 20px; right: 0; animation: float 4s ease-in-out infinite; }
.card-s2 { bottom: 40px; left: 0; animation: float 5s ease-in-out infinite 1s; }
.card-s2 i { color: var(--accent-6); font-size: 20px; text-shadow: 0 0 10px var(--accent-6); }
.stat-ring { width: 40px; height: 40px; }
.stat-ring svg { transform: rotate(-90deg); }
.stat-ring svg circle { stroke: var(--accent-1); }

.about-text .section-title { text-align: left; }
.about-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(108,99,255,0.08); border: 1px solid rgba(108,99,255,0.2);
    padding: 8px 16px; border-radius: 50px; margin-bottom: 20px;
    font-family: var(--font-accent); font-size: 12px; font-weight: 600;
    color: var(--accent-3); letter-spacing: 0.5px;
}
.about-badge i { color: var(--neon-green); }
.about-desc { color: var(--text-muted); margin-bottom: 32px; font-size: 15px; line-height: 1.9; }
.about-points { display: flex; flex-direction: column; gap: 20px; }
.point-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px; border-radius: var(--radius-sm); transition: var(--transition); }
.point-item:hover { background: rgba(108,99,255,0.05); }
.point-icon { width: 48px; height: 48px; border-radius: var(--radius-xs); background: rgba(108,99,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--accent-1); font-size: 18px; flex-shrink: 0; border: 1px solid rgba(108,99,255,0.2); }
.point-text h4 { font-size: 15px; margin-bottom: 4px; }
.point-text p { font-size: 13px; color: var(--text-muted); }

/* ===== SERVICES ===== */
.services { background: var(--bg-dark); }
.services-showcase { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; }

.service-premium-card {
    position: relative; background: var(--bg-card); border-radius: var(--radius);
    padding: 36px 28px; border: 1px solid var(--border);
    transition: var(--transition); overflow: hidden;
}
.service-premium-card:hover { border-color: rgba(108,99,255,0.3); box-shadow: var(--shadow-neon); }
.spc-glow { position: absolute; top: -50%; right: -50%; width: 200px; height: 200px; background: radial-gradient(circle, rgba(108,99,255,0.08), transparent 70%); border-radius: 50%; transition: var(--transition); }
.service-premium-card:hover .spc-glow { transform: scale(2); }
.spc-number { position: absolute; top: 16px; right: 20px; font-family: var(--font-accent); font-size: 48px; font-weight: 800; color: rgba(108,99,255,0.06); }
.spc-icon { margin-bottom: 20px; }
.service-premium-card h3 { font-family: var(--font-accent); font-size: 20px; margin-bottom: 10px; }
.service-premium-card > p { font-size: 14px; color: var(--text-muted); margin-bottom: 18px; line-height: 1.8; }
.spc-features { margin-bottom: 20px; }
.spc-features li { display: flex; align-items: center; gap: 10px; font-size: 13px; padding: 7px 0; color: var(--text); }
.check-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--neon-green); box-shadow: 0 0 6px var(--neon-green); flex-shrink: 0; }
.spc-link { font-family: var(--font-accent); font-size: 13px; font-weight: 600; color: var(--accent-3); display: inline-flex; align-items: center; gap: 8px; }
.spc-link:hover { gap: 14px; color: var(--neon-blue); text-shadow: 0 0 10px var(--neon-blue); }

/* ===== COUNTRIES ===== */
.countries { background: var(--bg-section); position: relative; }
.blob-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(120px); }
.blob-1 { width: 500px; height: 500px; background: rgba(108,99,255,0.08); top: -100px; right: -200px; }
.blob-2 { width: 400px; height: 400px; background: rgba(247,37,133,0.06); bottom: -100px; left: -150px; }

.country-tabs-fancy { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; }
.fancy-tab {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: 50px;
    border: 2px solid rgba(108,99,255,0.2); background: transparent;
    color: var(--text-muted); font-family: var(--font-accent); font-size: 14px; font-weight: 500;
    cursor: pointer; transition: var(--transition);
}
.fancy-tab.active, .fancy-tab:hover { background: var(--gradient-accent); background-size: 200% 100%; color: var(--white); border-color: transparent; box-shadow: var(--shadow-neon); animation: gradientMove 3s ease infinite; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.country-grid-fancy { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.country-fancy-card {
    display: flex; align-items: center; gap: 16px;
    background: var(--bg-card); border-radius: var(--radius-sm);
    padding: 20px 24px; border: 1px solid var(--border);
    transition: var(--transition); cursor: pointer;
}
.country-fancy-card:hover { transform: translateX(6px); border-color: rgba(108,99,255,0.3); box-shadow: var(--shadow-neon); background: var(--bg-card-hover); }
.cfc-flag { font-size: 36px; }
.cfc-info h4 { font-size: 15px; margin-bottom: 2px; }
.cfc-info span { font-size: 12px; color: var(--text-muted); }
.cfc-arrow { margin-left: auto; color: var(--accent-1); opacity: 0; transition: var(--transition); }
.country-fancy-card:hover .cfc-arrow { opacity: 1; text-shadow: 0 0 10px var(--accent-1); }

/* ===== STUDENT VISA ===== */
.student-section { background: var(--bg-dark); }
.process-timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 60px; }
.timeline-line { position: absolute; top: 30px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, var(--accent-1), var(--neon-pink), var(--accent-3)); opacity: 0.3; }
.process-item { text-align: center; position: relative; }
.process-dot {
    width: 60px; height: 60px; margin: 0 auto 20px;
    background: var(--gradient-accent); background-size: 200% 100%;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 2; box-shadow: var(--shadow-neon);
    animation: gradientMove 3s ease infinite;
}
.process-dot span { color: var(--white); font-family: var(--font-accent); font-size: 18px; font-weight: 700; }
.process-card { padding: 10px; }
.pc-icon { font-size: 24px; color: var(--accent-3); margin-bottom: 10px; text-shadow: 0 0 10px var(--accent-3); }
.process-card h4 { font-size: 15px; margin-bottom: 6px; }
.process-card p { font-size: 13px; color: var(--text-muted); }

.student-highlights { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.sh-card {
    background: var(--bg-card); border-radius: var(--radius-sm); padding: 28px 20px;
    text-align: center; border: 1px solid var(--border); transition: var(--transition);
}
.sh-card:hover { border-color: rgba(108,99,255,0.3); box-shadow: var(--shadow-neon); transform: translateY(-4px); }
.sh-icon { font-size: 28px; color: var(--accent-1); margin-bottom: 12px; text-shadow: 0 0 15px var(--accent-1); }
.sh-card h4 { font-family: var(--font-accent); font-size: 18px; margin-bottom: 4px; }
.sh-card p { font-size: 13px; color: var(--text-muted); }

/* ===== STATS ===== */
.stats-section {
    background: var(--bg-section); position: relative; padding: 80px 0;
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}

/* ===== PACKAGES ===== */
.packages-section { background: var(--bg-dark); }
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; align-items: center; }
.package-card {
    background: var(--bg-card); border-radius: var(--radius); padding: 40px 30px;
    border: 1px solid var(--border); position: relative; overflow: hidden;
    transition: var(--transition); text-align: center;
}
.package-card:hover { transform: translateY(-8px); border-color: rgba(108,99,255,0.3); box-shadow: var(--shadow-neon); }
.package-card.featured {
    background: linear-gradient(180deg, rgba(108,99,255,0.08), var(--bg-card));
    border-color: rgba(108,99,255,0.3); transform: scale(1.05);
    box-shadow: var(--shadow-neon);
}
.package-card.featured:hover { transform: scale(1.05) translateY(-8px); }
.pkg-popular-tag {
    font-family: var(--font-accent); font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent-3);
    margin-bottom: 20px;
}
.package-card.featured .pkg-popular-tag { color: var(--neon-pink); }
.pkg-badge {
    position: absolute; top: 16px; right: 16px;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--gradient-warm); display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 14px; animation: float 3s ease-in-out infinite;
}
.pkg-icon { font-size: 36px; color: var(--accent-1); margin-bottom: 16px; text-shadow: 0 0 20px var(--accent-1); }
.package-card.featured .pkg-icon { color: var(--neon-pink); text-shadow: 0 0 20px var(--neon-pink); }
.package-card h3 { font-family: var(--font-accent); font-size: 22px; margin-bottom: 12px; }
.pkg-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }
.pkg-price { margin-bottom: 24px; display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.pkg-price .currency { font-size: 18px; color: var(--text-muted); font-family: var(--font-accent); }
.pkg-price .amount { font-size: 42px; font-family: var(--font-accent); font-weight: 800; background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.pkg-price .period { font-size: 13px; color: var(--text-muted); }
.pkg-features { margin-bottom: 28px; text-align: left; }
.pkg-features li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; color: var(--text); }
.pkg-features li i { color: var(--neon-green); font-size: 14px; }
.pkg-features li.disabled { opacity: 0.4; }
.pkg-features li.disabled i { color: var(--text-dim); }
.pkg-btn {
    display: block; width: 100%; padding: 14px; border-radius: 50px;
    background: rgba(108,99,255,0.1); border: 1px solid rgba(108,99,255,0.3);
    color: var(--accent-1); font-family: var(--font-accent); font-size: 14px; font-weight: 600;
    text-align: center; transition: var(--transition);
}
.pkg-btn:hover { background: var(--gradient-accent); color: var(--white); border-color: transparent; box-shadow: var(--shadow-neon); }
.pkg-btn.featured-btn { background: var(--gradient-accent); color: var(--white); border-color: transparent; box-shadow: var(--shadow-neon); }
.pkg-btn.featured-btn:hover { box-shadow: 0 0 50px rgba(108,99,255,0.5); transform: translateY(-2px); }

/* ===== FAQ ===== */
.faq-section { background: var(--bg-section); }
.faq-container { max-width: 750px; margin: 0 auto; }
.faq-item {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-sm); margin-bottom: 12px;
    overflow: hidden; transition: var(--transition);
}
.faq-item:hover { border-color: rgba(108,99,255,0.2); }
.faq-item.active { border-color: rgba(108,99,255,0.3); box-shadow: var(--shadow-neon); }
.faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; cursor: pointer; transition: var(--transition);
}
.faq-question span { font-family: var(--font-accent); font-size: 15px; font-weight: 600; color: var(--white); }
.faq-question i { color: var(--accent-1); font-size: 14px; transition: transform 0.3s; }
.faq-item.active .faq-question i { transform: rotate(45deg); color: var(--neon-pink); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s; padding: 0 24px; }
.faq-item.active .faq-answer { max-height: 200px; padding: 0 24px 20px; }
.faq-answer p { font-size: 14px; color: var(--text-muted); line-height: 1.8; }
.stats-bg-art { position: absolute; inset: 0; overflow: hidden; }
.stats-circle { position: absolute; border-radius: 50%; border: 1px solid rgba(108,99,255,0.06); }
.c1 { width: 400px; height: 400px; top: -200px; right: -100px; }
.c2 { width: 300px; height: 300px; bottom: -150px; left: -50px; }
.c3 { width: 200px; height: 200px; top: 50%; left: 50%; transform: translate(-50%,-50%); }

.stats-flex { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
.stat-box { text-align: center; padding: 30px 20px; }
.stat-number {
    font-family: var(--font-accent); font-size: 52px; font-weight: 700;
    background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    text-shadow: none;
}
.stat-label { color: var(--text-muted); font-size: 14px; margin: 8px 0 16px; }
.stat-bar { height: 3px; background: rgba(108,99,255,0.1); border-radius: 3px; overflow: hidden; }
.stat-fill { height: 100%; background: var(--gradient-accent); border-radius: 3px; width: 0; transition: width 1.5s ease; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--bg-dark); }
.testimonial-carousel { max-width: 800px; margin: 0 auto; overflow: hidden; }
.testi-track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.testi-card {
    min-width: 100%; padding: 40px;
    background: var(--bg-card); border-radius: var(--radius);
    border: 1px solid var(--border); position: relative;
}
.testi-quote { position: absolute; top: 20px; right: 30px; font-size: 32px; color: rgba(108,99,255,0.15); }
.testi-card > p { font-size: 16px; line-height: 1.9; color: var(--text); margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: var(--white); }
.testi-author strong { display: block; font-size: 15px; color: var(--white); }
.testi-author span { font-size: 12px; color: var(--text-muted); }
.testi-rating { color: var(--accent-6); font-size: 14px; }

.testi-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 30px; }
.testi-btn { width: 44px; height: 44px; border-radius: 50%; border: 2px solid rgba(108,99,255,0.3); background: transparent; color: var(--accent-1); cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.testi-btn:hover { background: var(--gradient-accent); color: var(--white); border-color: transparent; box-shadow: var(--shadow-neon); }
.testi-dots { display: flex; gap: 8px; }
.testi-dots .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(108,99,255,0.2); cursor: pointer; transition: var(--transition); }
.testi-dots .dot.active { background: var(--accent-1); width: 24px; border-radius: 4px; box-shadow: 0 0 10px var(--accent-1); }

/* ===== CONTACT ===== */
.contact-section { background: var(--bg-section); position: relative; }
.contact-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.contact-shape { position: absolute; border-radius: 50%; filter: blur(120px); }
.cs-1 { width: 400px; height: 400px; background: rgba(108,99,255,0.06); top: -100px; right: -100px; }
.cs-2 { width: 300px; height: 300px; background: rgba(247,37,133,0.05); bottom: -100px; left: -100px; }

.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; align-items: start; }
.cl-card {
    display: flex; align-items: center; gap: 16px; padding: 18px 20px;
    border-radius: var(--radius-sm); margin-bottom: 12px;
    background: var(--bg-card); border: 1px solid var(--border); transition: var(--transition);
}
.cl-card:hover { transform: translateX(5px); border-color: rgba(108,99,255,0.3); box-shadow: var(--shadow-neon); }
.cl-icon { width: 44px; height: 44px; border-radius: var(--radius-xs); background: var(--gradient-cool); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 16px; flex-shrink: 0; }
.cl-icon.whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); }
.cl-card h4 { font-size: 14px; margin-bottom: 2px; }
.cl-card p { font-size: 13px; color: var(--text-muted); }

.cl-socials { display: flex; gap: 10px; margin-top: 24px; }
.social-circle { width: 42px; height: 42px; border-radius: 50%; background: var(--bg-card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--accent-1); font-size: 15px; transition: var(--transition); }
.social-circle:hover { background: var(--gradient-accent); color: var(--white); border-color: transparent; transform: translateY(-3px); box-shadow: var(--shadow-neon); }

.premium-form {
    background: var(--bg-card); border-radius: var(--radius);
    padding: 40px; box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
}
.pf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pf-group { position: relative; margin-bottom: 24px; }
.pf-group input, .pf-group select, .pf-group textarea {
    width: 100%; padding: 14px 0; border: none; border-bottom: 2px solid rgba(108,99,255,0.15);
    font-size: 14px; font-family: var(--font-body); background: transparent;
    color: var(--white); transition: var(--transition); outline: none;
}
.pf-group select option { background: var(--bg-card); color: var(--white); }
.pf-group label { position: absolute; top: 14px; left: 0; font-size: 14px; color: var(--text-muted); pointer-events: none; transition: var(--transition); }
.pf-group input:focus ~ label, .pf-group input:not(:placeholder-shown) ~ label,
.pf-group textarea:focus ~ label, .pf-group textarea:not(:placeholder-shown) ~ label { top: -8px; font-size: 11px; color: var(--accent-1); font-weight: 600; }
.pf-line { position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gradient-accent); transition: width 0.3s; }
.pf-group input:focus ~ .pf-line, .pf-group select:focus ~ .pf-line, .pf-group textarea:focus ~ .pf-line { width: 100%; }
.pf-group textarea { resize: vertical; min-height: 80px; }

.submit-btn {
    width: 100%; padding: 16px; border: none; border-radius: 50px;
    background: var(--gradient-accent); background-size: 200% 100%;
    color: var(--white); font-family: var(--font-accent); font-size: 15px; font-weight: 600;
    cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: var(--transition); animation: gradientMove 3s ease infinite;
    box-shadow: var(--shadow-neon);
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(108,99,255,0.4); }

/* ===== FOOTER ===== */
.footer-premium { background: var(--bg-dark); color: var(--text); position: relative; padding-top: 80px; border-top: 1px solid var(--border); }
.footer-wave { position: absolute; top: -1px; left: 0; width: 100%; color: var(--bg-section); }
.footer-wave svg { width: 100%; height: 80px; display: block; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.footer-brand p { font-size: 14px; color: var(--text-muted); margin-top: 16px; line-height: 1.7; }
.footer-col h4 { font-family: var(--font-accent); font-size: 15px; margin-bottom: 20px; color: var(--white); position: relative; }
.footer-col h4::after { content:''; position: absolute; bottom: -8px; left: 0; width: 24px; height: 2px; background: var(--gradient-accent); border-radius: 2px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: var(--text-muted); transition: var(--transition); }
.footer-col a:hover { color: var(--accent-1); padding-left: 4px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; }
.footer-bottom p { font-size: 13px; color: var(--text-dim); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: var(--text-dim); }
.footer-bottom-links a:hover { color: var(--accent-1); }

/* ===== BACK TO TOP ===== */
.back-to-top-fancy {
    position: fixed; bottom: 30px; right: 30px;
    width: 50px; height: 50px; border-radius: 50%;
    background: var(--bg-card); border: 1px solid var(--border);
    box-shadow: var(--shadow-card); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: var(--transition); z-index: 100;
}
.back-to-top-fancy.visible { opacity: 1; visibility: visible; }
.back-to-top-fancy:hover { border-color: var(--accent-1); box-shadow: var(--shadow-neon); transform: translateY(-3px); }
.back-to-top-fancy i { color: var(--accent-1); font-size: 16px; z-index: 2; }
.btt-circle { fill: none; stroke: var(--accent-1); stroke-width: 2; stroke-dasharray: 145; stroke-dashoffset: 145; transition: stroke-dashoffset 0.5s; }
.back-to-top-fancy.visible .btt-circle { stroke-dashoffset: 0; }

/* ===== WHATSAPP ===== */
.wa-float {
    position: fixed; bottom: 90px; right: 30px;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25d366; color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; z-index: 100; transition: var(--transition);
    box-shadow: 0 0 20px rgba(37,211,102,0.4);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 0 30px rgba(37,211,102,0.6); }
.wa-pulse { position: absolute; inset: -4px; border-radius: 50%; border: 2px solid #25d366; animation: wa-pulse 2s infinite; }
@keyframes wa-pulse{0%{transform:scale(1);opacity:1}100%{transform:scale(1.5);opacity:0}}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-left { order: 1; } .hero-right { order: 0; max-height: 300px; }
    .hero-clients { justify-content: center; } .hero-btns { justify-content: center; }
    .hero-desc { margin: 0 auto 40px; }
    .about-layout { grid-template-columns: 1fr; gap: 60px; }
    .about-card-stack { height: 300px; }
    .contact-layout { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .stats-flex { grid-template-columns: repeat(2, 1fr); }
    .process-timeline { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:768px) {
    .nav-links { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--bg-dark); flex-direction: column; padding: 80px 30px; gap: 0; transition: var(--transition); box-shadow: -5px 0 40px rgba(0,0,0,0.5); border-left: 1px solid var(--border); }
    .nav-links.active { right: 0; }
    .nav-links a { color: var(--text) !important; padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
    .nav-cta { display: none; } .hamburger { display: flex; }
    .section { padding: 80px 0; }
    .hero h1 { font-size: 36px; }
    .hero-illustration { max-width: 260px; }
    .services-showcase { grid-template-columns: 1fr; }
    .country-grid-fancy { grid-template-columns: 1fr; }
    .process-timeline { grid-template-columns: 1fr 1fr; }
    .timeline-line { display: none; }
    .pf-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .testi-card { padding: 28px; }
}
@media(max-width:480px) {
    .hero-btns { flex-direction: column; align-items: center; }
    .stats-flex { grid-template-columns: 1fr 1fr; gap: 16px; }
    .stat-number { font-size: 36px; }
    .student-highlights { grid-template-columns: 1fr 1fr; }
    .country-tabs-fancy { flex-direction: column; align-items: center; }
    .premium-form { padding: 24px; }
    .cursor-dot, .cursor-ring { display: none; }
}
