/* ===== DESIGN SYSTEM ===== */
:root {
    --pink: #E91E63;
    --pink-dark: #C2185B;
    --pink-light: #FCE4EC;
    --purple: #7B1FA2;
    --purple-dark: #4A148C;
    --purple-light: #E1BEE7;
    --blue: #1565C0;
    --blue-dark: #0D47A1;
    --blue-light: #BBDEFB;
    --green: #2E7D32;
    --green-whatsapp: #25D366;
    --green-light: #E8F5E9;
    --orange: #EF6C00;
    --orange-light: #FFF3E0;
    --yellow: #FFD600;
    --yellow-light: #FFFDE7;
    --red-urgency: #D32F2F;
    --navy: #1a1a2e;
    --navy-light: #16213e;
    --text-dark: #1a1a2e;
    --text-medium: #444;
    --text-light: #666;
    --bg-light: #f0f4ff;
    --bg-lavender: #ede7f6;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
    --shadow-glow-pink: 0 0 30px rgba(233,30,99,0.3);
    --shadow-glow-blue: 0 0 30px rgba(21,101,192,0.3);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-md); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== ANIMATIONS ===== */
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideRight { from { opacity: 0; transform: translateX(-60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideLeft { from { opacity: 0; transform: translateX(60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes bounceSlow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-15px) rotate(3deg); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes glow { 0%, 100% { box-shadow: 0 0 20px rgba(233,30,99,0.3); } 50% { box-shadow: 0 0 40px rgba(233,30,99,0.6); } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes fadeInScale { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
@keyframes wiggle { 0%, 100% { transform: rotate(-3deg); } 50% { transform: rotate(3deg); } }

.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.animate-slide-right { animation: slideRight 0.8s ease forwards; }
.animate-slide-left { animation: slideLeft 0.8s ease forwards; }
.animate-bounce-slow { animation: bounceSlow 2s ease-in-out infinite; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 28px; border-radius: var(--radius-xl); font-weight: 600;
    font-size: 15px; border: none; cursor: pointer; transition: var(--transition);
    text-align: center; font-family: 'Poppins', sans-serif;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 17px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-full { width: 100%; }
.btn-primary { background: linear-gradient(135deg, var(--pink), var(--pink-dark)); color: var(--white); box-shadow: var(--shadow-glow-pink); }
.btn-primary:hover { background: linear-gradient(135deg, var(--pink-dark), var(--purple)); box-shadow: 0 0 40px rgba(233,30,99,0.5); }
.btn-whatsapp { background: var(--green-whatsapp); color: var(--white); }
.btn-whatsapp:hover { background: #1da851; box-shadow: 0 0 25px rgba(37,211,102,0.4); }
.btn-submit { background: linear-gradient(135deg, var(--pink), var(--orange)); color: var(--white); font-size: 17px; letter-spacing: 0.5px; }
.btn-submit:hover { background: linear-gradient(135deg, var(--orange), var(--pink)); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-urgency { background: linear-gradient(135deg, var(--yellow), #FFA000); color: var(--text-dark); font-weight: 700; }
.btn-urgency:hover { background: linear-gradient(135deg, #FFA000, var(--yellow)); box-shadow: 0 0 30px rgba(255,214,0,0.5); }
.btn-urgency-call { background: var(--white); color: var(--red-urgency); border: 2px solid var(--red-urgency); font-weight: 700; }
.btn-urgency-call:hover { background: var(--red-urgency); color: var(--white); }
.btn-female-tutor { background: linear-gradient(135deg, var(--pink), #E040FB); color: var(--white); }
.btn-male-tutor { background: linear-gradient(135deg, var(--blue), #1976D2); color: var(--white); }
.btn-role-student { background: linear-gradient(135deg, var(--blue), #42A5F5); color: var(--white); }
.btn-role-inquiry { background: linear-gradient(135deg, var(--orange), #FF9800); color: var(--white); }
.btn-role-teacher { background: linear-gradient(135deg, var(--green), #66BB6A); color: var(--white); }
.btn-role-tutor { background: linear-gradient(135deg, var(--purple), #AB47BC); color: var(--white); }
.pulse-btn { animation: pulse 2s ease-in-out infinite; }
.pulse-btn:hover { animation: none; }
.bounce-hover:hover { animation: bounceSlow 0.5s ease; }

/* ===== TOP BAR ===== */
.top-bar { background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: var(--white); padding: 8px 0; font-size: 13px; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-link { color: var(--white); opacity: 0.9; transition: var(--transition); }
.top-link:hover { opacity: 1; color: var(--yellow); }
.top-divider { opacity: 0.4; margin: 0 8px; }

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
    position: sticky; top: 0; z-index: 1000;
    box-shadow: var(--shadow-sm); transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; padding: 12px 20px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 32px; }
.logo-main { font-family: 'Baloo 2', cursive; font-size: 24px; font-weight: 800; color: var(--pink); display: block; line-height: 1.1; }
.logo-sub { font-size: 11px; color: var(--text-medium); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link { padding: 8px 14px; font-size: 14px; font-weight: 500; color: var(--text-medium); border-radius: var(--radius-sm); transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--pink); background: var(--pink-light); }
.nav-cta-btn { background: linear-gradient(135deg, var(--pink), var(--orange)); color: var(--white) !important; padding: 10px 22px !important; border-radius: var(--radius-xl) !important; font-weight: 600 !important; }
.nav-cta-btn:hover { background: linear-gradient(135deg, var(--orange), var(--pink)) !important; transform: scale(1.05); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.hamburger span { width: 28px; height: 3px; background: var(--text-dark); border-radius: 3px; transition: var(--transition); }

/* ===== FLOATING BUTTONS ===== */
.floating-buttons { position: fixed; right: 15px; top: 50%; transform: translateY(-50%); z-index: 999; display: flex; flex-direction: column; gap: 12px; }
.float-btn {
    width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md); transition: var(--transition); animation: bounceSlow 3s ease-in-out infinite;
}
.float-btn:nth-child(2) { animation-delay: 0.3s; }
.float-btn:nth-child(3) { animation-delay: 0.6s; }
.float-btn:nth-child(4) { animation-delay: 0.9s; }
.float-btn:hover { transform: scale(1.2); }
.float-call { background: linear-gradient(135deg, #f44336, #d32f2f); }
.float-whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.float-tutor { background: linear-gradient(135deg, var(--pink), var(--purple)); }
.float-parent { background: linear-gradient(135deg, var(--orange), var(--yellow)); }

/* ===== HERO ===== */
.hero {
    position: relative; overflow: hidden; padding: 50px 0 60px;
    background: linear-gradient(135deg, #ffeef5 0%, #e8eaf6 40%, #e3f2fd 70%, #fce4ec 100%);
}
.hero-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.shape {
    position: absolute; border-radius: 50%; opacity: 0.12;
}
.shape-1 { width: 300px; height: 300px; background: var(--pink); top: -50px; left: -80px; animation: float 8s ease-in-out infinite; }
.shape-2 { width: 200px; height: 200px; background: var(--blue); bottom: -40px; right: -60px; animation: float 10s ease-in-out infinite reverse; }
.shape-3 { width: 150px; height: 150px; background: var(--yellow); top: 30%; right: 40%; animation: float 12s ease-in-out infinite; }
.shape-4 { width: 100px; height: 100px; background: var(--green); bottom: 20%; left: 10%; animation: float 9s ease-in-out infinite reverse; }
.shape-5 { width: 80px; height: 80px; background: var(--purple); top: 10%; right: 20%; animation: float 7s ease-in-out infinite; }

.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--white); padding: 8px 18px; border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); margin-bottom: 18px; }
.badge-stars { font-size: 14px; }
.badge-text { font-size: 13px; font-weight: 600; color: var(--orange); }
.hero-title { font-family: 'Baloo 2', cursive; font-size: 42px; line-height: 1.15; margin-bottom: 14px; }
.highlight-pink { color: var(--pink); position: relative; }
.highlight-pink::after { content: ''; position: absolute; bottom: 2px; left: 0; width: 100%; height: 8px; background: rgba(233,30,99,0.15); border-radius: 4px; z-index: -1; }
.highlight-yellow { color: var(--orange); background: linear-gradient(to bottom, transparent 60%, rgba(255,214,0,0.3) 60%); }
.hero-subtitle { font-size: 17px; color: var(--text-medium); margin-bottom: 22px; font-weight: 500; }
.hero-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.hero-feature { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; }
.feature-icon { font-size: 18px; }
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image-mobile { display: none; margin-top: 20px; }

/* ===== HERO FORM ===== */
.hero-form-wrapper {
    background: linear-gradient(135deg, var(--purple-dark), var(--purple));
    border-radius: var(--radius-lg); padding: 30px 28px; position: relative; overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.form-glow {
    position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    animation: spin 20s linear infinite; pointer-events: none;
}
.hero-form-header { text-align: center; color: var(--white); margin-bottom: 20px; position: relative; z-index: 1; }
.hero-form-header h2 { font-size: 22px; margin-bottom: 4px; }
.hero-form-header p { font-size: 13px; opacity: 0.85; }
.free-demo-badge {
    display: inline-block; background: linear-gradient(135deg, var(--yellow), #FFA000);
    color: var(--text-dark); padding: 6px 20px; border-radius: var(--radius-xl);
    font-weight: 700; font-size: 14px; margin-bottom: 12px;
}
.hero-form { position: relative; z-index: 1; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; color: var(--white); font-size: 13px; font-weight: 500; margin-bottom: 4px; }
.form-group input, .form-group select {
    width: 100%; padding: 11px 14px; border: 2px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm); background: rgba(255,255,255,0.95);
    font-size: 14px; font-family: 'Poppins', sans-serif; transition: var(--transition);
    color: var(--text-dark);
}
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 12px rgba(255,214,0,0.3); }

/* ===== ROLE SELECTION ===== */
.role-selection { padding: 60px 0; background: var(--white); }
.section-title { text-align: center; font-family: 'Baloo 2', cursive; font-size: 34px; margin-bottom: 8px; color: var(--text-dark); }
.section-title.white { color: var(--white); }
.section-subtitle { text-align: center; color: var(--text-light); font-size: 15px; margin-bottom: 40px; }
.section-subtitle.white { color: rgba(255,255,255,0.85); }
.role-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.role-card {
    text-align: center; padding: 30px 20px; border-radius: var(--radius-lg);
    transition: var(--transition); cursor: pointer; position: relative; overflow: hidden;
}
.role-card::before { content: ''; position: absolute; inset: 0; opacity: 0.08; border-radius: var(--radius-lg); transition: var(--transition); }
.role-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.role-card:hover::before { opacity: 0.15; }
.role-icon { font-size: 48px; margin-bottom: 14px; display: block; }
.role-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.role-card p { font-size: 13px; color: var(--text-light); margin-bottom: 16px; }
.role-student { background: var(--blue-light); border: 2px solid rgba(21,101,192,0.15); }
.role-student::before { background: var(--blue); }
.role-inquiry { background: var(--orange-light); border: 2px solid rgba(239,108,0,0.15); }
.role-inquiry::before { background: var(--orange); }
.role-teacher { background: var(--green-light); border: 2px solid rgba(46,125,50,0.15); }
.role-teacher::before { background: var(--green); }
.role-tutor { background: var(--purple-light); border: 2px solid rgba(123,31,162,0.15); }
.role-tutor::before { background: var(--purple); }

/* ===== STATS ===== */
.stats-section {
    padding: 60px 0; background: linear-gradient(135deg, var(--navy), var(--navy-light), #1a237e);
    position: relative; overflow: hidden;
}
.stats-section::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1.5' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 1; }
.stat-card {
    text-align: center; padding: 30px 15px; background: rgba(255,255,255,0.06);
    border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(8px); transition: var(--transition);
}
.stat-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-5px); border-color: var(--pink); }
.stat-number { font-family: 'Baloo 2', cursive; font-size: 48px; font-weight: 800; color: var(--pink); display: inline; }
.stat-plus, .stat-percent { font-family: 'Baloo 2', cursive; font-size: 36px; color: var(--yellow); display: inline; }
.stat-label { color: rgba(255,255,255,0.8); font-size: 14px; margin-top: 6px; font-weight: 500; }
.stat-icon { font-size: 28px; margin-top: 10px; }

/* ===== PROMO BANNER ===== */
.promo-banner-section {
    padding: 70px 0 50px;
    background: linear-gradient(135deg, #fff8e1 0%, #fce4ec 50%, #e8eaf6 100%);
}
.promo-banner-wrapper {
    max-width: 700px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    transition: var(--transition);
    position: relative;
}
.promo-banner-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    box-shadow: inset 0 0 0 2px rgba(233, 30, 99, 0.15);
    pointer-events: none;
}
.promo-banner-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(233, 30, 99, 0.2);
}
.promo-banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

/* ===== ABOUT ===== */
.about-section { padding: 70px 0; background: var(--bg-light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.about-image { position: relative; }
.about-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about-image-badge {
    position: absolute; bottom: 60px; left: -10px; background: linear-gradient(135deg, #fff8e1, #ffe082);
    padding: 14px 20px; border-radius: var(--radius-md); box-shadow: var(--shadow-md); max-width: 280px;
}
.about-image-badge span { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-medium); display: block; }
.about-image-badge strong { font-size: 14px; color: var(--navy); display: block; margin-top: 4px; }
.about-text { font-size: 16px; line-height: 1.8; color: var(--text-medium); margin-bottom: 24px; }
.about-features { display: flex; flex-direction: column; gap: 16px; }
.about-feature { display: flex; gap: 14px; align-items: flex-start; }
.about-feature-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.about-feature strong { display: block; font-size: 15px; color: var(--text-dark); }
.about-feature p { font-size: 13px; color: var(--text-light); margin-top: 2px; }

/* ===== SERVICES ===== */
.services-section {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark), #ad1457);
    position: relative;
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
    background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-md); transition: var(--transition);
    border-top: 4px solid var(--blue);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-academic { border-top-color: var(--blue); }
.service-language { border-top-color: var(--green); }
.service-computer { border-top-color: var(--purple); }
.service-image-wrapper { position: relative; height: 200px; overflow: hidden; }
.service-image-wrapper img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.service-badge { position: absolute; top: 12px; right: 12px; background: var(--white); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; box-shadow: var(--shadow-sm); }
.service-content { padding: 22px; }
.service-content h3 { font-size: 20px; margin-bottom: 6px; font-weight: 700; }
.service-sub { font-size: 14px; color: var(--pink); font-weight: 600; margin-bottom: 12px; }
.service-list { margin-bottom: 18px; }
.service-list li { font-size: 14px; padding: 5px 0; color: var(--text-medium); font-weight: 500; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 70px 0; background: var(--bg-light); overflow: hidden; }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.5s ease; }
.testimonial-card {
    min-width: calc(33.333% - 16px); margin: 0 8px; padding: 28px; background: var(--white);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); position: relative;
    transition: var(--transition); border-bottom: 3px solid transparent;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); border-bottom-color: var(--pink); transform: translateY(-4px); }
.testimonial-quote { font-size: 48px; color: var(--pink); opacity: 0.3; line-height: 1; position: absolute; top: 10px; left: 18px; font-family: serif; }
.testimonial-card p { font-size: 14px; color: var(--text-medium); font-style: italic; line-height: 1.7; margin-bottom: 16px; padding-top: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px; color: var(--white);
    background: linear-gradient(135deg, var(--pink), var(--orange));
}
.tutor-avatar { background: linear-gradient(135deg, var(--blue), var(--purple)) !important; }
.testimonial-author strong { font-size: 14px; color: var(--pink); display: block; }
.author-role { font-size: 12px; font-weight: 600; }
.parent-role { color: var(--orange); }
.tutor-role { color: var(--blue); }
.testimonial-stars { font-size: 13px; margin-top: 10px; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px; }
.slider-btn { width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--pink); background: var(--white); color: var(--pink); font-size: 16px; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.slider-btn:hover { background: var(--pink); color: var(--white); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: #ddd; cursor: pointer; transition: var(--transition); border: none; }
.slider-dot.active { background: var(--pink); width: 28px; border-radius: 5px; }

/* ===== TUTOR TYPES ===== */
.tutors-section { padding: 70px 0; background: var(--white); }
.tutor-types-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 900px; margin: 0 auto; }
.tutor-type-card {
    padding: 28px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
    background: var(--white); position: relative; overflow: hidden; transition: var(--transition);
}
.tutor-type-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tutor-card-accent { position: absolute; left: 0; top: 0; bottom: 0; width: 5px; }
.female-accent { background: linear-gradient(to bottom, var(--pink), #E040FB); }
.male-accent { background: linear-gradient(to bottom, var(--blue), #42A5F5); }
.tutor-type-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 14px; }
.tutor-image { margin-bottom: 16px; border-radius: var(--radius-md); overflow: hidden; }
.tutor-image img { border-radius: var(--radius-md); width: 100%; height: 220px; object-fit: cover; }
.tutor-features { margin-bottom: 18px; }
.tutor-features li { padding: 6px 0; font-size: 14px; font-weight: 500; }

/* ===== ENQUIRY SECTIONS ===== */
.enquiry-section { padding: 70px 0; }
.tutor-enquiry-section { background: var(--bg-lavender); }
.parent-enquiry-section { background: var(--bg-light); }
.enquiry-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.enquiry-wrapper.reverse { direction: rtl; }
.enquiry-wrapper.reverse > * { direction: ltr; }
.enquiry-info h2 { font-family: 'Baloo 2', cursive; font-size: 30px; margin-bottom: 12px; }
.enquiry-info > p { font-size: 15px; color: var(--text-medium); line-height: 1.7; margin-bottom: 24px; }
.enquiry-benefits { display: flex; flex-direction: column; gap: 16px; }
.benefit-item { display: flex; gap: 14px; align-items: flex-start; }
.benefit-icon { font-size: 28px; flex-shrink: 0; }
.benefit-item strong { display: block; font-size: 15px; }
.benefit-item p { font-size: 13px; color: var(--text-light); margin-top: 2px; }
.enquiry-form-card {
    padding: 30px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.tutor-form-card { background: linear-gradient(135deg, var(--purple-dark), var(--purple)); color: var(--white); }
.parent-form-card { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); color: var(--white); }
.enquiry-form-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 20px; text-align: center; }
.enquiry-form-card .form-group label { color: rgba(255,255,255,0.9); }

/* ===== FAQ ===== */
.faq-section { padding: 70px 0; background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 12px; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-question {
    width: 100%; padding: 18px 22px; background: var(--white); border: none;
    font-size: 15px; font-weight: 600; text-align: left; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-family: 'Poppins', sans-serif; transition: var(--transition);
}
.faq-question:hover { background: var(--pink-light); }
.faq-item.active .faq-question { background: var(--navy); color: var(--white); }
.faq-arrow { transition: transform 0.3s ease; font-size: 12px; }
.faq-item.active .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; background: #f9f9f9; }
.faq-item.active .faq-answer { max-height: 300px; padding: 18px 22px; }
.faq-answer p { font-size: 14px; color: var(--text-medium); line-height: 1.7; }

/* ===== URGENCY BANNER ===== */
.urgency-banner {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--red-urgency), #b71c1c, #880E4F);
    position: relative; overflow: hidden;
}
.urgency-banner::before {
    content: ''; position: absolute; inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.03) 10px, rgba(255,255,255,0.03) 20px);
}
.urgency-content { display: flex; align-items: center; justify-content: space-between; gap: 30px; position: relative; z-index: 1; flex-wrap: wrap; }
.urgency-left h2 { font-family: 'Baloo 2', cursive; font-size: 30px; color: var(--white); }
.urgency-left p { color: rgba(255,255,255,0.9); font-size: 16px; }
.urgency-right { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: var(--white); padding: 50px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 30px; }
.footer-brand h3 { font-family: 'Baloo 2', cursive; font-size: 22px; margin-bottom: 10px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 14px; }
.footer-contacts { display: flex; flex-direction: column; gap: 6px; }
.footer-contacts a { font-size: 13px; color: rgba(255,255,255,0.8); transition: var(--transition); }
.footer-contacts a:hover { color: var(--yellow); }
.footer-links-col h4 { font-size: 16px; font-weight: 700; margin-bottom: 14px; color: var(--pink); }
.footer-links-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.7); padding: 4px 0; transition: var(--transition); }
.footer-links-col a:hover { color: var(--yellow); padding-left: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.6); }
.footer-bottom a { color: var(--pink); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.6); }
.footer-bottom-links a:hover { color: var(--yellow); }

/* ===== MODALS ===== */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
    z-index: 10000; display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.show { display: flex; }
.modal-content {
    background: var(--white); border-radius: var(--radius-lg); padding: 40px; max-width: 460px;
    width: 100%; text-align: center; animation: fadeInScale 0.4s ease; position: relative;
}
.modal-close { position: absolute; top: 12px; right: 16px; background: none; border: none; font-size: 28px; cursor: pointer; color: var(--text-light); }
.modal-icon { font-size: 52px; margin-bottom: 14px; }
.modal-content h2 { font-family: 'Baloo 2', cursive; font-size: 26px; margin-bottom: 10px; color: var(--text-dark); }
.modal-content p { font-size: 14px; color: var(--text-medium); margin-bottom: 20px; }
.welcome-roles { display: flex; flex-direction: column; gap: 10px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-image-mobile { display: block; }
    .hero-title { font-size: 32px; }
    .services-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .role-cards { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .enquiry-wrapper, .enquiry-wrapper.reverse { grid-template-columns: 1fr; }
    .tutor-types-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .testimonial-card { min-width: calc(50% - 16px); }
    .promo-banner-section { display: none !important; }
}
@media (max-width: 768px) {
    .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px; box-shadow: var(--shadow-md); }
    .nav-links.active { display: flex; }
    .hamburger { display: flex; }
    .top-bar-inner { justify-content: center; }
    .top-bar-right { display: none; }
    .testimonial-card { min-width: calc(100% - 16px); }
    .role-cards { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .urgency-content { flex-direction: column; text-align: center; }
    .urgency-right { justify-content: center; }
    .floating-buttons { right: 8px; }
    .float-btn { width: 44px; height: 44px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .section-title { font-size: 26px; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 26px; }
    .hero-cta-group { flex-direction: column; }
    .hero-cta-group .btn { width: 100%; }
    .role-cards { grid-template-columns: 1fr; }
    .stat-number { font-size: 36px; }
}
