/*
  IT PRE ŠKOLY / IT PRO ŠKOLU  – LIGHT MODE
  Glass morphism · Pill shapes · #035695 blue accent · Montserrat
*/

/* Hide reCAPTCHA badge */
.grecaptcha-badge { visibility: hidden !important; }

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
a { text-decoration: none !important; color: inherit; transition: .3s; }
img { max-width: 100%; display: block; }

/* ── BASE (LIGHT) ───────────────────────────────────────────── */
body {
    background: #f0f5fa;
    color: #0f172a;
    font-family: "Montserrat", "Segoe UI", system-ui, sans-serif;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── GLASS UTILITIES (light-adapted) ────────────────────────── */
.glass {
    border-radius: 999px;
    border: 1px solid rgba(3,86,149,.18);
    background: rgba(255,255,255,.8);
    box-shadow: 0 2px 12px rgba(3,86,149,.08);
    backdrop-filter: blur(12px);
}
.glassBox {
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,.07);
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
    padding: 28px;
}
.glassButton {
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 999px;
    border: none;
    padding: 11px 30px;
    background: #035695;
    color: #fff; font-weight: 700; font-size: 15px;
    box-shadow: 0 4px 18px rgba(3,86,149,.28);
    transition: .25s ease; cursor: pointer;
}
.glassButton:hover { background: #0468b1; box-shadow: 0 6px 24px rgba(3,86,149,.36); color: #fff; }
.glassButton--outline {
    background: transparent;
    border: 2px solid rgba(3,86,149,.45);
    color: #035695;
    box-shadow: none;
}
.glassButton--outline:hover { background: rgba(3,86,149,.07); border-color: #035695; color: #035695; }

/* ── TOP BAR ────────────────────────────────────────────────── */
.top-bar {
    padding: 9px 0;
    background: #fff;
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.top-item {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 12.5px; color: #475569;
    padding: 5px 14px; border-radius: 50px;
    border: 1px solid rgba(3,86,149,.12);
    background: rgba(3,86,149,.04);
    transition: background .2s, border-color .2s, color .2s;
}
.top-item:hover { background: rgba(3,86,149,.1); border-color: rgba(3,86,149,.25); color: #035695; }
.top-item i { font-size: 11px; color: #035695; }
.top-pill-sep { color: rgba(3,86,149,.3); margin: 0 2px; }
.top-left  { display: flex; gap: 8px; flex-wrap: wrap; }
.top-right { display: flex; gap: 8px; align-items: center; }

.lang-toggle-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 14px; border-radius: 50px;
    font-size: 12px; font-weight: 700; letter-spacing: .03em;
    background: rgba(3,86,149,.09); border: 1px solid rgba(3,86,149,.22);
    color: #035695; transition: .2s;
}
.lang-toggle-pill:hover { background: rgba(3,86,149,.16); color: #023f6e; }

/* ── MAIN NAV ───────────────────────────────────────────────── */
.main-nav {
    padding: 12px 0;
    position: sticky; top: 0; z-index: 100;
    background: #fff;
    transition: box-shadow .2s, border-color .2s;
}
.main-nav.nav-scrolled {
    border-bottom: 1px solid rgba(0,0,0,.07);
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo-icon {
    width: 46px; height: 46px; border-radius: 12px;
    background: #035695;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; color: #fff; flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(3,86,149,.35);
}
.nav-logo-text .logo-main { display: block; font-size: .95rem; font-weight: 800; color: #0f172a; }
.nav-logo-text .logo-sub  { display: block; font-size: .62rem; color: #94a3b8; text-transform: uppercase; letter-spacing: .08em; margin-top: 1px; }

.nav-menu-pill {
    display: flex; align-items: center; gap: 4px;
    padding: 5px; border-radius: 999px;
    border: 1px solid rgba(0,0,0,.1);
    background: rgba(0,0,0,.02);
}
.nav-menu-pill a {
    padding: 9px 22px; border-radius: 999px;
    font-size: 14px; font-weight: 600; color: #334155;
    transition: background .2s, color .2s;
}
.nav-menu-pill a:hover        { background: rgba(0,0,0,.06); color: #0f172a; }
.nav-menu-pill a.active       { background: #035695; color: #fff; box-shadow: 0 2px 10px rgba(3,86,149,.35); }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Burger */
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: #0f172a; border-radius: 2px; transition: .3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer – stays dark */
.nav-drawer {
    display: none; flex-direction: column;
    position: fixed; top: 0; right: 0;
    width: min(300px, 85vw); height: 100vh;
    background: rgba(10,15,28,.97); border-left: 1px solid rgba(255,255,255,.1);
    padding: 72px 20px 24px; gap: 4px;
    transform: translateX(100%); transition: transform .3s ease;
    z-index: 200; backdrop-filter: blur(20px);
}
.nav-drawer.open { transform: translateX(0); }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 199; }
.nav-overlay.show { display: block; }
.nav-drawer a { padding: 13px 18px; border-radius: 14px; font-size: .95rem; font-weight: 600; color: rgba(255,255,255,.8); display: block; transition: background .15s; }
.nav-drawer a:hover, .nav-drawer a.active { background: rgba(255,255,255,.08); color: #fff; }

/* ── SECTION HEADINGS ───────────────────────────────────────── */
.section-head { text-align: center; margin-bottom: 52px; }
.section-tag-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 18px; border-radius: 999px;
    font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em;
    background: rgba(3,86,149,.08); border: 1px solid rgba(3,86,149,.2); color: #035695;
    margin-bottom: 18px;
}
.section-title { font-size: 38px; font-weight: 300; letter-spacing: -.5px; line-height: 1.15; margin-bottom: 10px; color: #0f172a; }
.section-title .bold { font-weight: 800; }
.section-divider {
    width: 500px; height: 7px; background: #035695;
    border-radius: 50px; margin: 0 auto 20px;
}
/* Per-section overrides */
.services-section-wrap .section-divider--wide { width: 250px; }
.bg-white .section-divider--wide              { width: 270px; }
.schools-section .section-divider             { width: 350px; }
.contact-strip-section .section-divider       { width: 350px; }
.section-subtitle { font-size: 15px; color: #475569; max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ── PAGE WRAPPER ───────────────────────────────────────────── */
section { padding: 80px 0; }
.page-hero { padding: 64px 0 48px; border-bottom: 1px solid rgba(0,0,0,.07); background: #fff; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero-section {
    padding: 80px 0 90px; overflow: hidden;
    background: #f0f5fa; position: relative;   /* matches body */
}
.hero-section::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 60% 55% at 2% 50%,  rgba(3,86,149,.07)  0%, transparent 55%),
        radial-gradient(ellipse 40% 35% at 98% 15%,  rgba(99,102,241,.05) 0%, transparent 55%);
}
.hero-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; position: relative; }
.hero-text  { flex: 1; max-width: 580px; }

/* Pills row */
.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.hero-pill {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 7px 16px; border-radius: 999px;
    font-size: .75rem; font-weight: 700;
    background: #fff; border: 1px solid rgba(3,86,149,.2); color: #035695;
    box-shadow: 0 2px 8px rgba(3,86,149,.08);
    transition: transform .15s, box-shadow .15s;
}
.hero-pill:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(3,86,149,.15); }
.hero-pill i { font-size: .7rem; }

.hero-title    { font-size: 46px; font-weight: 800; line-height: 1.15; margin-bottom: 16px; letter-spacing: -.5px; color: #0f172a; }
.hero-title .accent { color: #035695; }
.hero-subtitle { font-size: 16px; color: #475569; margin-bottom: 32px; line-height: 1.7; }
.hero-ctas     { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-section .glassButton { box-shadow: 0 4px 18px rgba(3,86,149,.3); }
.hero-section .glassButton--outline { background: transparent; border: 2px solid rgba(3,86,149,.4); color: #035695; box-shadow: none; }
.hero-section .glassButton--outline:hover { background: rgba(3,86,149,.06); border-color: #035695; }

.hero-stats    { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat-val { font-size: 1.8rem; font-weight: 900; color: #035695; line-height: 1; }
.hero-stat-lbl { font-size: .68rem; color: #64748b; text-transform: uppercase; letter-spacing: .06em; margin-top: 3px; }

/* Hero visual – floating cards */
.hero-visual { flex: 0 0 auto; display: flex; justify-content: center; align-items: center; }
.hero-illustration { width: 460px; height: 420px; position: relative; display: flex; align-items: center; justify-content: center; }
.hero-center-icon {
    width: 100px; height: 100px; border-radius: 28px;
    background: linear-gradient(135deg, #035695, #2563eb);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; color: #fff; position: relative; z-index: 2;
    box-shadow: 0 16px 48px rgba(3,86,149,.35);
    animation: icon-float 3s ease-in-out infinite;
}
@keyframes icon-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.hero-ring {
    position: absolute; border-radius: 50%;
    border: 2px dashed rgba(3,86,149,.18);
    animation: spin-ring 25s linear infinite;
}
.hero-ring-1 { width: 200px; height: 200px; }
.hero-ring-2 { width: 310px; height: 310px; animation-duration: 40s; animation-direction: reverse; }
@keyframes spin-ring { from{transform:rotate(0)} to{transform:rotate(360deg)} }
.hero-float-card {
    position: absolute; background: #fff; border-radius: 14px; padding: 11px 16px;
    box-shadow: 0 6px 24px rgba(3,86,149,.13); border: 1px solid rgba(3,86,149,.12);
    display: flex; align-items: center; gap: 9px;
    font-size: .78rem; font-weight: 700; color: #0f172a; white-space: nowrap;
    animation: card-float 4s ease-in-out infinite;
}
/* nth-child offset: child 1=ring1, 2=ring2, 3=center-icon → cards start at 4 */
.hero-float-card:nth-child(4)  { top: 16px;    left: 0;      animation-delay: 0s; }
.hero-float-card:nth-child(5)  { top: 50px;    right: -8px;  animation-delay: .6s; }
.hero-float-card:nth-child(6)  { top: 165px;   left: -12px;  animation-delay: 1.2s; }
.hero-float-card:nth-child(7)  { top: 165px;   right: -12px; animation-delay: 1.8s; }
.hero-float-card:nth-child(8)  { bottom: 75px; left: 0;      animation-delay: 2.4s; }
.hero-float-card:nth-child(9)  { bottom: 75px; right: -8px;  animation-delay: 3.0s; }
.hero-float-card:nth-child(10) { bottom: 16px; left: 40px;   animation-delay: 3.6s; }
.hero-float-card:nth-child(11) { bottom: 16px; right: 40px;  animation-delay: 4.2s; }
@keyframes card-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

/* ── ABOUT ──────────────────────────────────────────────────── */
.about-body  { font-size: .98rem; color: #475569; line-height: 1.85; margin: 18px 0 28px; }
.about-stats { display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 32px; }
.stat-val    { font-size: 2.1rem; font-weight: 900; color: #035695; line-height: 1; }
.stat-lbl    { font-size: .68rem; color: #64748b; text-transform: uppercase; letter-spacing: .06em; margin-top: 3px; }

.feats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.feat-box {
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 18px; padding: 20px;
    transition: border-color .2s, transform .2s, box-shadow .2s;
}
.feat-box:hover { border-color: rgba(3,86,149,.3); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(3,86,149,.08); }
.feat-box i  { font-size: 1.3rem; color: #035695; margin-bottom: 8px; }
.feat-box h4 { font-size: .85rem; font-weight: 700; margin-bottom: 5px; color: #0f172a; }
.feat-box p  { font-size: .76rem; color: #64748b; line-height: 1.55; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* ── SERVICES – redesign + SVG effects ─────────────────────── */
.services-section-wrap {
    position: relative; overflow: hidden;
    background: #f3f7fc;
}
/* Subtle dot-grid background */
.services-section-wrap::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background-image: radial-gradient(circle, rgba(3,86,149,.12) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
}
/* Decorative accent blobs */
.services-section-wrap::after {
    content: ''; position: absolute;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(3,86,149,.07) 0%, transparent 65%);
    top: -120px; right: -120px; pointer-events: none;
}

/* Services 2/3 + 1/3 split */
.svc-content-split { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; position: relative; z-index: 1; }
@media (max-width: 1024px) { .svc-content-split { grid-template-columns: 1fr; } }

.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 14px; }
.service-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 18px; padding: 20px 18px;
    position: relative; overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
    transition: transform .25s, box-shadow .25s, border-color .25s;
    cursor: default;
}
/* Colored top accent bar */
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--svc-color, #035695);
    opacity: 0; transition: opacity .25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,.1); border-color: rgba(0,0,0,.12); }
.service-card:hover::before { opacity: 1; }

/* Glow blob */
.service-card::after {
    content: ''; position: absolute; top: -30px; right: -30px;
    width: 120px; height: 120px; border-radius: 50%;
    background: var(--svc-color, #035695); opacity: 0;
    filter: blur(40px); transition: opacity .3s;
}
.service-card:hover::after { opacity: .1; }

.service-icon {
    width: 44px; height: 44px; border-radius: 13px;
    background: color-mix(in srgb, var(--svc-color, #035695) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--svc-color, #035695) 25%, transparent);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--svc-color, #035695);
    margin-bottom: 12px; position: relative; z-index: 1;
    transition: transform .25s;
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-4deg); }
.service-title { font-size: .9rem; font-weight: 700; margin-bottom: 6px; position: relative; z-index: 1; color: #0f172a; }
.service-body  { font-size: .78rem; color: #64748b; line-height: 1.6; position: relative; z-index: 1; }

/* ── SCHOOLS – marquee slider ───────────────────────────────── */
.schools-section { background: #fff; overflow: hidden; }
.schools-slider-wrap {
    position: relative; width: 100%; overflow: hidden;
    margin-top: 48px;
    /* fade edges */
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.schools-track {
    display: flex; gap: 14px;
    width: max-content;
    animation: schools-marquee 32s linear infinite;
}
.schools-track:hover { animation-play-state: paused; }
@keyframes schools-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.school-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 16px; padding: 18px 22px;
    display: flex; align-items: center; gap: 14px;
    transition: border-color .2s, transform .2s, box-shadow .2s;
    flex-shrink: 0; min-width: 220px;
}
.school-card:hover { border-color: rgba(3,86,149,.3); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(3,86,149,.1); }
.school-logo {
    width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
    background: #035695; border: 1px solid #024a80;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: #fff; overflow: hidden;
}
.school-logo img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.school-name { font-size: .83rem; font-weight: 700; color: #0f172a; line-height: 1.3; }
.school-city { font-size: .72rem; color: #64748b; margin-top: 2px; }

/* ── PACKAGES ───────────────────────────────────────────────── */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 18px; }
.package-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 20px; padding: 24px 20px;
    display: flex; flex-direction: column;
    position: relative;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
    transition: transform .2s, box-shadow .2s;
}
.package-card.popular { border-color: #035695; background: #f0f7ff; box-shadow: 0 4px 20px rgba(3,86,149,.12); }
.package-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }
.package-card.popular:hover { box-shadow: 0 16px 40px rgba(3,86,149,.18); }
.popular-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: #035695; color: #fff; font-size: .65rem; font-weight: 800;
    padding: .3rem .85rem; border-radius: 999px; text-transform: uppercase; letter-spacing: .08em; white-space: nowrap;
}
.pkg-color { width: 32px; height: 4px; border-radius: 2px; margin-bottom: 14px; }
.pkg-name   { font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: #64748b; margin-bottom: 4px; }
.pkg-price  { font-size: 1.5rem; font-weight: 900; line-height: 1.1; color: #0f172a; }
.pkg-period { font-size: .73rem; color: #94a3b8; font-weight: 500; }
.pkg-divider { height: 1px; background: rgba(0,0,0,.07); margin: 16px 0; }
.pkg-features { list-style: none; flex: 1; }
.pkg-features li { display: flex; align-items: flex-start; gap: 8px; font-size: .8rem; color: #334155; padding: .3rem 0; }
.pkg-features li i.ok  { color: #16a34a; flex-shrink: 0; font-size: .65rem; margin-top: 3px; }
.pkg-features li.miss  { color: #94a3b8; }
.pkg-features li.miss i { color: #cbd5e1; }
.pkg-cta { display: block; text-align: center; margin-top: 18px; padding: .65rem 1rem; border-radius: 999px; font-size: .8rem; font-weight: 700; border: 1px solid rgba(0,0,0,.15); color: #475569; background: transparent; transition: .2s; }
.pkg-cta:hover { background: rgba(0,0,0,.05); color: #0f172a; }
.package-card.popular .pkg-cta { background: #035695; border-color: #035695; color: #fff; }
.package-card.popular .pkg-cta:hover { background: #0468b1; }
.packages-note { text-align: center; margin-top: 24px; font-size: .78rem; color: #94a3b8; }

/* Scroll-triggered blue highlight (homepage only) */
.package-card.pkg-active {
    border-color: #035695;
    box-shadow: 0 0 0 3px rgba(3,86,149,.18), 0 16px 40px rgba(3,86,149,.12);
    transform: translateY(-4px);
    transition: border-color .4s ease, box-shadow .4s ease, transform .4s ease;
}
[data-theme="dark"] .package-card.pkg-active {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,.2), 0 16px 40px rgba(0,0,0,.4);
}

/* ── CONTACT ────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 32px; align-items: start; }
.contact-info { background: #fff; border: 1px solid rgba(0,0,0,.08); border-radius: 20px; padding: 28px; }
.contact-info h3 { font-size: 1rem; font-weight: 700; margin-bottom: 20px; color: #0f172a; }
.cinfo-list { list-style: none; }
.cinfo-list li { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,.06); font-size: .85rem; color: #475569; line-height: 1.5; }
.cinfo-list li:last-child { border: none; }
.cinfo-list li i { color: #035695; font-size: .9rem; margin-top: 2px; flex-shrink: 0; }
.cinfo-lbl { font-size: .65rem; text-transform: uppercase; letter-spacing: .06em; color: #94a3b8; margin-bottom: 2px; }
.cinfo-list a:hover { color: #035695; }

.contact-form-wrap { background: #fff; border: 1px solid rgba(0,0,0,.08); border-radius: 20px; padding: 28px; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #64748b; margin-bottom: 7px; }
.form-input, .form-textarea {
    width: 100%; padding: .7rem 1rem; border-radius: 12px;
    background: #f8faff; border: 1px solid rgba(0,0,0,.12);
    color: #0f172a; font-size: .88rem; font-family: inherit; outline: none;
    transition: border-color .15s, background .15s;
}
.form-input:focus, .form-textarea:focus { border-color: rgba(3,86,149,.5); background: #fff; }
.form-input::placeholder, .form-textarea::placeholder { color: #94a3b8; }
.form-textarea { resize: vertical; min-height: 130px; }
.btn-submit { width: 100%; padding: .8rem 1.5rem; border-radius: 999px; background: #035695; color: #fff; font-size: .9rem; font-weight: 700; font-family: inherit; border: none; cursor: pointer; transition: .2s; display: flex; align-items: center; justify-content: center; gap: 8px; box-shadow: 0 4px 14px rgba(3,86,149,.25); }
.btn-submit:hover { background: #0468b1; }

.alert { padding: .9rem 1.1rem; border-radius: 12px; font-size: .85rem; font-weight: 600; margin-bottom: 18px; }
.alert-success { background: rgba(22,163,74,.08); border: 1px solid rgba(22,163,74,.2); color: #16a34a; }
.alert-error   { background: rgba(239,68,68,.08);  border: 1px solid rgba(239,68,68,.2);  color: #dc2626; }

/* ── MAP ─────────────────────────────────────────────────────── */
.map-wrap { margin-top: 18px; border-radius: 16px; overflow: hidden; border: 1px solid rgba(0,0,0,.08); }

/* ── FOOTER (light mode: white + dark text) ─────────────────── */
.site-footer { background: #fff; border-top: 1px solid rgba(0,0,0,.08); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo .nav-logo-icon { width: 34px; height: 34px; border-radius: 9px; font-size: .9rem; }
.footer-logo .logo-main { font-size: .9rem; font-weight: 800; color: #0f172a; }
.footer-desc { font-size: .83rem; color: #475569; line-height: 1.75; max-width: 280px; margin-bottom: 18px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a { width: 34px; height: 34px; border-radius: 10px; background: rgba(0,0,0,.04); border: 1px solid rgba(0,0,0,.08); display: flex; align-items: center; justify-content: center; color: #64748b; transition: .15s; }
.footer-social a:hover { background: rgba(3,86,149,.1); color: #035695; border-color: rgba(3,86,149,.2); }
.footer-heading { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; color: #94a3b8; margin-bottom: 14px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 6px; }
.footer-links a { font-size: .83rem; color: #334155; transition: color .15s; }
.footer-links a:hover { color: #035695; }
.footer-contact { list-style: none; }
.footer-contact li { display: flex; align-items: flex-start; gap: 8px; font-size: .82rem; color: #334155; margin-bottom: 8px; line-height: 1.5; }
.footer-contact i { color: #035695; font-size: .78rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact a:hover { color: #035695; }
.footer-bottom { border-top: 1px solid rgba(0,0,0,.07); padding: 18px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .76rem; color: #94a3b8; }
.footer-bottom a { color: #64748b; transition: color .15s; }
.footer-bottom a:hover { color: #035695; }

/* ── COMPARISON TABLE ───────────────────────────────────────── */
.compare-table { width: 100%; border-collapse: collapse; font-size: .82rem; margin-top: 24px; }
.compare-table th { padding: .65rem .9rem; font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 800; border-bottom: 1px solid rgba(0,0,0,.08); color: #64748b; }
.compare-table td { padding: .6rem .9rem; border-bottom: 1px solid rgba(0,0,0,.05); color: #475569; }
.compare-table td:first-child { text-align: left; color: #0f172a; }
.compare-table td:not(:first-child) { text-align: center; }

/* ── 404 ─────────────────────────────────────────────────────── */
.not-found { min-height: 60vh; display: flex; align-items: center; text-align: center; }
.not-found-num { font-size: 6rem; font-weight: 900; color: rgba(0,0,0,.05); line-height: 1; margin-bottom: 12px; }

/* ── CONTACT STRIP SECTION ──────────────────────────────────── */
.contact-strip-section {
    background: #035695;
    padding: 80px 0;
}
.contact-strip-section .section-tag-pill { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.25); color: #fff; }
.contact-strip-section .section-title { color: #fff; }
.contact-strip-section .section-divider { background: rgba(255,255,255,.5); }
.contact-strip-section .section-subtitle { color: rgba(255,255,255,.8); }
.contact-strip-section .glassButton { background: #fff; color: #035695; box-shadow: 0 4px 18px rgba(0,0,0,.15); }
.contact-strip-section .glassButton:hover { background: #f0f7ff; }
.contact-strip-section .glassButton--outline { border-color: rgba(255,255,255,.5); color: #fff; background: transparent; }
.contact-strip-section .glassButton--outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */

/* ── Tablet (≤1024px) ─── */
@media (max-width: 1024px) {
    .hero-inner     { flex-direction: column; text-align: center; }
    .hero-pills     { justify-content: center; }
    .hero-ctas      { justify-content: center; }
    .hero-stats     { justify-content: center; }
    .hero-visual    { display: none; }
    .about-grid     { grid-template-columns: 1fr; gap: 32px; }
    .feats-grid     { grid-template-columns: 1fr 1fr; }
    .contact-grid   { grid-template-columns: 1fr; }
    .footer-grid    { grid-template-columns: 1fr 1fr; }
    .footer-brand   { grid-column: 1 / -1; }
    .about-illustration { display: none; }
    .section-divider { width: min(500px, 88vw); }
    .schools-section .section-divider,
    .contact-strip-section .section-divider { width: min(350px, 88vw); }
    .services-section-wrap .section-divider--wide,
    .bg-white .section-divider--wide { width: min(270px, 88vw); }
}

/* ── Mobile (≤768px) ─── */
@media (max-width: 768px) {
    /* Nav */
    .top-bar              { display: none; }
    .nav-menu-pill        { display: none; }
    .nav-actions .glassButton { display: none; }
    .nav-burger           { display: flex; }
    .nav-drawer           { display: flex; }

    /* Typography */
    .section-title  { font-size: 26px; }
    .hero-title     { font-size: 28px; }
    .hero-subtitle  { font-size: 14px; }
    .section-head   { margin-bottom: 32px; }
    .about-body     { font-size: .9rem; }

    /* Spacing */
    section           { padding: 48px 0; }
    .hero-section     { padding: 48px 0 56px; }
    .contact-strip-section { padding: 56px 0; }
    .container        { padding: 0 16px; }

    /* Hero */
    .hero-pills       { gap: 6px; }
    .hero-pill        { font-size: .68rem; padding: 5px 12px; }
    .hero-stats       { gap: 20px; }
    .hero-stat-val    { font-size: 1.5rem; }
    .hero-ctas        { gap: 10px; }
    .hero-visual {
        display: flex;
        position: absolute;
        top: 40%; right: -60px;
        transform: translateY(-50%) scale(0.55);
        opacity: 0.5;
        pointer-events: none;
        z-index: 0;
    }
    .hero-visual .hero-center-icon { display: none; }

    /* Services section – decorative background icon on mobile */
    .services-section-wrap::after {
        content: '\f085';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 320px;
        color: rgba(3,86,149,0.07);
        position: absolute;
        right: -60px;
        top: 50%;
        transform: translateY(-50%) rotate(-15deg);
        pointer-events: none;
        z-index: 0;
        line-height: 1;
    }
    .hero-text {
        position: relative;
        z-index: 1;
    }
    .hero-section .glassButton,
    .hero-section .glassButton--outline {
        background: #035695 !important;
        color: #fff !important;
        border: none !important;
        box-shadow: 0 4px 18px rgba(3,86,149,.3) !important;
    }

    /* About */
    .about-grid       { gap: 24px; }
    .feats-grid       { grid-template-columns: 1fr 1fr; gap: 10px; }
    .feat-box         { padding: 14px; }

    /* Services */
    .service-card     { padding: 16px 14px; }

    /* Packages */
    .packages-grid    { grid-template-columns: 1fr 1fr; }

    /* Footer */
    .footer-grid      { grid-template-columns: 1fr; gap: 28px; }
    .footer-desc      { max-width: 100%; }

    /* Contact strip */
    .contact-strip-section > .container > div[style] {
        flex-direction: column; align-items: center;
    }
}

/* ── Small mobile (≤480px) ─── */
@media (max-width: 480px) {
    /* Typography */
    .section-title  { font-size: 22px; }
    .hero-title     { font-size: 24px; }
    .section-tag-pill { font-size: .65rem; padding: 5px 14px; }

    /* Layout */
    .feats-grid     { grid-template-columns: 1fr; }
    .packages-grid  { grid-template-columns: 1fr; }
    .form-row2      { grid-template-columns: 1fr; }

    /* Buttons */
    .hero-ctas      { flex-direction: column; align-items: stretch; }
    .glassButton, .glassButton--outline { width: 100%; justify-content: center; }

    /* Hero pills – show max 3, wrap rest */
    .hero-pills     { gap: 5px; }
    .hero-pill      { font-size: .65rem; padding: 5px 10px; }

    /* Stats */
    .hero-stats     { gap: 16px; }
    .hero-stat-val  { font-size: 1.3rem; }

    /* School slider */
    .school-card    { min-width: 180px; }

    /* Section dividers */
    .section-divider { width: 85vw; }
    .schools-section .section-divider,
    .contact-strip-section .section-divider { width: 85vw; }
    .services-section-wrap .section-divider--wide,
    .bg-white .section-divider--wide { width: 85vw; }

    /* About grid divider */
    .about-grid .section-divider { width: 100%; }

    /* Nav drawer padding */
    .nav-drawer { padding-top: 64px; }

    /* Section padding */
    section           { padding: 40px 0; }
    .hero-section     { padding: 40px 0 48px; }
    .contact-strip-section { padding: 48px 0; }
}

/* ── SERVICES PAGER (2×2 pages) ─────────────────────────────── */
.svc-page { display: none; }
.svc-page.active { display: block; animation: svc-fade .35s ease; }
@keyframes svc-fade { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:none; } }

/* Force 2-column grid inside the split */
.svc-content-split .services-grid { grid-template-columns: 1fr 1fr; }

.svc-pager {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; margin-top: 20px;
}
.svc-nav-btn {
    width: 34px; height: 34px; border-radius: 50%;
    background: #fff; border: 1px solid rgba(0,0,0,.1);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    color: #035695; font-size: .8rem;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    transition: background .2s, color .2s, box-shadow .2s;
}
.svc-nav-btn:hover { background: #035695; color: #fff; box-shadow: 0 4px 14px rgba(3,86,149,.3); }
.svc-nav-btn:disabled { opacity: .3; cursor: default; }
.svc-nav-btn:disabled:hover { background: #fff; color: #035695; box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.svc-slider-dots { display: flex; gap: 6px; align-items: center; }
.svc-dot {
    width: 8px; height: 8px; border-radius: 999px;
    background: rgba(3,86,149,.2); cursor: pointer;
    transition: width .25s, background .25s;
}
.svc-dot.active { width: 22px; background: #035695; }

[data-theme="dark"] .svc-nav-btn { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); color: #60a5fa; }
[data-theme="dark"] .svc-nav-btn:hover { background: #035695; color: #fff; }
[data-theme="dark"] .svc-nav-btn:disabled:hover { background: rgba(255,255,255,.08); color: #60a5fa; }
[data-theme="dark"] .svc-dot { background: rgba(255,255,255,.15); }
[data-theme="dark"] .svc-dot.active { background: #60a5fa; }

/* ── SECTION BACKGROUND UTILITIES ───────────────────────────── */
.bg-white { background: #fff; }
.bg-alt   { background: #f0f5fa; }

/* ── SECTION DIVIDER – full width (left aligned) ────────────── */
.about-grid .section-divider {
    width: 100%;
    max-width: none;
    margin: 0 0 20px;
}

/* ── COOKIE CONSENT (TermsFeed overrides) ───────────────────── */
.termsfeed-com---nb {
    font-family: "Montserrat", "Segoe UI", system-ui, sans-serif !important;
}
.termsfeed-com---palette-dark .cc-nb-main-container {
    background: rgba(12,17,32,.97) !important;
    border: 1px solid rgba(255,255,255,.1) !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 40px rgba(0,0,0,.5) !important;
    backdrop-filter: blur(20px) !important;
    padding: 20px 24px !important;
    max-width: 480px !important;
}
.termsfeed-com---nb-simple .cc-nb-main-container {
    bottom: 20px !important;
    left: 20px !important;
    right: auto !important;
}
.termsfeed-com---palette-dark .cc-nb-title {
    font-size: .9rem !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin-bottom: 8px !important;
}
.termsfeed-com---palette-dark .cc-nb-text {
    font-size: .78rem !important;
    color: rgba(255,255,255,.6) !important;
    line-height: 1.6 !important;
    margin-bottom: 16px !important;
}
.termsfeed-com---palette-dark .cc-nb-text a {
    color: #60a5fa !important;
    text-decoration: underline !important;
}
.termsfeed-com---palette-dark .cc-nb-buttons-container {
    display: flex !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
}
.termsfeed-com---palette-dark .cc-nb-okagree {
    background: #035695 !important;
    border: none !important;
    border-radius: 999px !important;
    color: #fff !important;
    font-size: .78rem !important;
    font-weight: 700 !important;
    padding: 9px 20px !important;
    cursor: pointer !important;
    transition: background .2s !important;
    box-shadow: 0 4px 14px rgba(3,86,149,.35) !important;
}
.termsfeed-com---palette-dark .cc-nb-okagree:hover { background: #0468b1 !important; }
.termsfeed-com---palette-dark .cc-nb-reject {
    background: transparent !important;
    border: 1px solid rgba(255,255,255,.2) !important;
    border-radius: 999px !important;
    color: rgba(255,255,255,.7) !important;
    font-size: .78rem !important;
    font-weight: 600 !important;
    padding: 8px 20px !important;
    cursor: pointer !important;
    transition: background .2s, border-color .2s !important;
}
.termsfeed-com---palette-dark .cc-nb-reject:hover {
    background: rgba(255,255,255,.07) !important;
    border-color: rgba(255,255,255,.35) !important;
    color: #fff !important;
}
.termsfeed-com---palette-dark .cc-nb-changep {
    background: transparent !important;
    border: none !important;
    color: rgba(255,255,255,.4) !important;
    font-size: .72rem !important;
    font-weight: 500 !important;
    padding: 8px 4px !important;
    cursor: pointer !important;
    text-decoration: underline !important;
    transition: color .2s !important;
}
.termsfeed-com---palette-dark .cc-nb-changep:hover { color: rgba(255,255,255,.7) !important; }

/* Preferences center */
.termsfeed-com---palette-dark .cc-pc-container {
    background: rgba(15,20,35,.98) !important;
    border: 1px solid rgba(255,255,255,.1) !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,.6) !important;
    font-family: "Montserrat", system-ui, sans-serif !important;
}
.termsfeed-com---palette-dark .cc-pc-head {
    background: rgba(255,255,255,.03) !important;
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
    border-radius: 20px 20px 0 0 !important;
    padding: 20px 24px !important;
}
.termsfeed-com---palette-dark .cc-pc-head-title-text {
    font-size: .95rem !important;
    font-weight: 800 !important;
    color: #fff !important;
}
.termsfeed-com---palette-dark .cc-pc-head-close {
    color: rgba(255,255,255,.5) !important;
    background: rgba(255,255,255,.06) !important;
    border-radius: 8px !important;
    transition: background .2s !important;
}
.termsfeed-com---palette-dark .cc-pc-head-close:hover { background: rgba(255,255,255,.12) !important; color: #fff !important; }
.termsfeed-com---palette-dark .cc-cp-foot {
    background: rgba(255,255,255,.03) !important;
    border-top: 1px solid rgba(255,255,255,.08) !important;
    border-radius: 0 0 20px 20px !important;
    padding: 16px 24px !important;
}
.termsfeed-com---palette-dark .cc-cp-foot-save {
    background: #035695 !important;
    border: none !important;
    border-radius: 999px !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: .82rem !important;
    padding: 10px 24px !important;
    cursor: pointer !important;
    transition: background .2s !important;
}
.termsfeed-com---palette-dark .cc-cp-foot-save:hover { background: #0468b1 !important; }

@media (max-width: 540px) {
    .termsfeed-com---nb-simple .cc-nb-main-container {
        left: 10px !important;
        right: 10px !important;
        bottom: 10px !important;
        max-width: none !important;
    }
}

/* ── THEME TOGGLE BUTTON ────────────────────────────────────── */
.theme-toggle {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(3,86,149,.09);
    border: 1px solid rgba(3,86,149,.2);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    color: #035695; font-size: .85rem; transition: .2s; flex-shrink: 0;
}
.theme-toggle:hover { background: rgba(3,86,149,.17); }

/* ── ABOUT ILLUSTRATION ─────────────────────────────────────── */
.about-illustration {
    width: 340px; height: 480px;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.about-ring {
    position: absolute; border-radius: 50%;
    border: 2px dashed rgba(3,86,149,.1);
    pointer-events: none;
}
.about-ring-1 { width: 300px; height: 300px; animation: spin-ring 32s linear infinite; }
.about-ring-2 { width: 200px; height: 200px; animation: spin-ring 20s linear infinite reverse; }

.about-dash-card {
    width: 220px;
    background: #fff;
    border: 1px solid rgba(3,86,149,.14);
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 14px 44px rgba(3,86,149,.13);
    position: relative; z-index: 2;
}
.about-dash-header {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 18px;
    font-size: .72rem; font-weight: 700; color: #64748b;
}
.about-dash-dots { display: flex; gap: 4px; }
.about-dash-dots span { width: 8px; height: 8px; border-radius: 50%; }
.about-dash-dots span:nth-child(1) { background: #ef4444; }
.about-dash-dots span:nth-child(2) { background: #f59e0b; }
.about-dash-dots span:nth-child(3) { background: #22c55e; }

.about-bar-wrap { margin-bottom: 10px; }
.about-bar-label { font-size: .68rem; font-weight: 700; color: #64748b; margin-bottom: 5px; display: flex; justify-content: space-between; }
.about-bar-track { height: 7px; background: #f1f5f9; border-radius: 4px; overflow: hidden; }
.about-bar-fill  { height: 100%; border-radius: 4px; background: var(--c, #035695); width: var(--w, 50%); animation: bar-grow .9s ease forwards; }
@keyframes bar-grow { from { width: 0; } to { width: var(--w, 50%); } }

.about-dash-status {
    display: flex; align-items: center; gap: 8px;
    margin-top: 14px; padding-top: 12px;
    border-top: 1px solid #f1f5f9;
    font-size: .72rem; font-weight: 600; color: #64748b;
}
.about-status-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34,197,94,.5);
    flex-shrink: 0;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{box-shadow:0 0 6px rgba(34,197,94,.4)} 50%{box-shadow:0 0 14px rgba(34,197,94,.8)} }

.about-float-badge {
    position: absolute; background: #fff; border-radius: 12px;
    padding: 9px 14px;
    box-shadow: 0 6px 22px rgba(3,86,149,.12);
    border: 1px solid rgba(3,86,149,.1);
    display: flex; align-items: center; gap: 8px;
    font-size: .74rem; font-weight: 700; color: #0f172a; white-space: nowrap;
    z-index: 3;
    animation: card-float 4s ease-in-out infinite;
}
.about-float-1 { top: 30px;   left: -20px;  animation-delay: 0s; }
.about-float-2 { top: 30px;   right: -20px; animation-delay: .7s; }
.about-float-3 { bottom: 50px; left: -20px; animation-delay: 1.4s; }
.about-float-4 { bottom: 50px; right: -20px; animation-delay: 2.1s; }
.about-float-5 { top: 50%; transform: translateY(-50%); left: -30px; animation-delay: 2.8s; }

/* ── LOGO THEME SWITCHING ───────────────────────────────────── */
/* Light mode: show logo-light (logo for light bg), hide logo-dark */
.nav-logo-dark  { display: none;  }
.nav-logo-light { display: block; }
/* Dark mode: flip */
[data-theme="dark"] .nav-logo-light { display: none;  }
[data-theme="dark"] .nav-logo-dark  { display: block; }

/* ── SERVICES illustration (right 1/3 column) ───────────────── */
.svc-illustration {
    width: 100%; height: 340px;
    position: relative;
    display: flex; align-items: center; justify-content: center;
}
.svc-illustration .about-ring-1 { width: 240px; height: 240px; }
.svc-illustration .about-ring-2 { width: 160px; height: 160px; }
.svc-illustration .about-dash-card { width: 180px; }
.svc-illustration .about-float-1 { top: 20px;    left: 0;    }
.svc-illustration .about-float-2 { top: 20px;    right: 0;   }
.svc-illustration .about-float-3 { bottom: 20px; left: 0;    }

@media (max-width: 1024px) { .svc-illustration { display: none; } }

/* ── DARK MODE ──────────────────────────────────────────────── */
[data-theme="dark"] body { background: #1b1b1b; color: #f0f5fa; }

[data-theme="dark"] .top-bar                { background: #1e1e1e; }
[data-theme="dark"] .main-nav               { background: #1e1e1e; }
[data-theme="dark"] .main-nav.nav-scrolled  { border-color: rgba(255,255,255,.08); box-shadow: 0 2px 20px rgba(0,0,0,.5); }
[data-theme="dark"] .top-item { color: rgba(255,255,255,.65); background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }
[data-theme="dark"] .top-pill-sep { color: rgba(255,255,255,.2); }
[data-theme="dark"] .top-item:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.2); color: #fff; }
[data-theme="dark"] .top-item i { color: #60a5fa; }
[data-theme="dark"] .lang-toggle-pill { background: rgba(3,86,149,.2); border-color: rgba(3,86,149,.4); color: #60a5fa; }
[data-theme="dark"] .lang-toggle-pill:hover { background: rgba(3,86,149,.3); color: #fff; }

[data-theme="dark"] .nav-logo-text .logo-main { color: #fff; }
[data-theme="dark"] .nav-logo-text .logo-sub  { color: rgba(255,255,255,.38); }
[data-theme="dark"] .nav-menu-pill { border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.02); }
[data-theme="dark"] .nav-menu-pill a { color: rgba(255,255,255,.92); }
[data-theme="dark"] .nav-menu-pill a:hover { background: rgba(255,255,255,.07); color: #fff; }
[data-theme="dark"] .nav-burger span { background: #fff; }
[data-theme="dark"] .theme-toggle { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: #f59e0b; }
[data-theme="dark"] .theme-toggle:hover { background: rgba(255,255,255,.14); }

[data-theme="dark"] .section-tag-pill { background: rgba(3,86,149,.18); border-color: rgba(3,86,149,.32); color: #60a5fa; }
[data-theme="dark"] .section-title    { color: #f0f5fa; }
[data-theme="dark"] .section-subtitle { color: rgba(255,255,255,.55); }
[data-theme="dark"] .page-hero   { background: #161616; border-color: rgba(255,255,255,.07); }
[data-theme="dark"] .bg-white    { background: #1e1e1e; }
[data-theme="dark"] .bg-alt      { background: #161616; }
[data-theme="dark"] .services-section-wrap { background: #161616; }
[data-theme="dark"] .services-section-wrap::before { background-image: radial-gradient(circle, rgba(3,86,149,.2) 1px, transparent 1px); }
[data-theme="dark"] .schools-section { background: #1a1a1a; }

[data-theme="dark"] .hero-section { background: #1b1b1b; }
[data-theme="dark"] .hero-pill    { background: rgba(255,255,255,.07); border-color: rgba(3,86,149,.3); color: #60a5fa; }
[data-theme="dark"] .hero-title   { color: #f0f5fa; }
[data-theme="dark"] .hero-subtitle { color: rgba(255,255,255,.6); }
[data-theme="dark"] .hero-stat-lbl { color: rgba(255,255,255,.45); }
[data-theme="dark"] .hero-float-card { background: rgba(15,25,45,.92); border-color: rgba(3,86,149,.25); color: rgba(255,255,255,.9); box-shadow: 0 6px 24px rgba(0,0,0,.35); }

[data-theme="dark"] .about-body { color: rgba(255,255,255,.62); }
[data-theme="dark"] .stat-lbl   { color: rgba(255,255,255,.4); }
[data-theme="dark"] .feat-box        { background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.1); }
[data-theme="dark"] .feat-box:hover  { border-color: rgba(3,86,149,.4); box-shadow: 0 8px 28px rgba(0,0,0,.3); }
[data-theme="dark"] .feat-box i      { color: #fff; }
[data-theme="dark"] .feat-box h4     { color: #fff; }
[data-theme="dark"] .feat-box p      { color: rgba(255,255,255,.48); }

[data-theme="dark"] .about-dash-card   { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); box-shadow: 0 14px 44px rgba(0,0,0,.4); }
[data-theme="dark"] .about-dash-header { color: rgba(255,255,255,.45); }
[data-theme="dark"] .about-bar-label   { color: rgba(255,255,255,.5); }
[data-theme="dark"] .about-bar-track   { background: rgba(255,255,255,.07); }
[data-theme="dark"] .about-dash-status { border-color: rgba(255,255,255,.08); color: rgba(255,255,255,.5); }
[data-theme="dark"] .about-float-badge { background: rgba(20,30,50,.95); border-color: rgba(3,86,149,.25); color: rgba(255,255,255,.9); box-shadow: 0 6px 22px rgba(0,0,0,.4); }

[data-theme="dark"] .service-card       { background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.09); box-shadow: none; }
[data-theme="dark"] .service-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,.3); border-color: rgba(255,255,255,.18); }
[data-theme="dark"] .service-icon       { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); }
[data-theme="dark"] .service-icon i,
[data-theme="dark"] .service-icon .fas  { color: #fff; }
[data-theme="dark"] .service-title      { color: #fff; }
[data-theme="dark"] .service-body       { color: rgba(255,255,255,.5); }

[data-theme="dark"] .school-card  { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.09); }
[data-theme="dark"] .school-card:hover { border-color: rgba(3,86,149,.4); box-shadow: 0 8px 24px rgba(0,0,0,.3); }
[data-theme="dark"] .school-name  { color: #fff; }
[data-theme="dark"] .school-city  { color: rgba(255,255,255,.42); }
[data-theme="dark"] .school-logo  { background: rgba(3,86,149,.15); border-color: rgba(3,86,149,.25); }

[data-theme="dark"] .package-card { background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.09); box-shadow: none; }
[data-theme="dark"] .package-card.popular { background: rgba(3,86,149,.1); border-color: #035695; }
[data-theme="dark"] .package-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,.3); }
[data-theme="dark"] .pkg-name    { color: rgba(255,255,255,.42); }
[data-theme="dark"] .pkg-price   { color: #fff; }
[data-theme="dark"] .pkg-period  { color: rgba(255,255,255,.35); }
[data-theme="dark"] .pkg-divider { background: rgba(255,255,255,.08); }
[data-theme="dark"] .pkg-features li      { color: rgba(255,255,255,.7); }
[data-theme="dark"] .pkg-features li.miss { color: rgba(255,255,255,.25); }
[data-theme="dark"] .pkg-features li.miss i { color: rgba(255,255,255,.15); }
[data-theme="dark"] .pkg-cta { border-color: rgba(255,255,255,.18); color: rgba(255,255,255,.7); }
[data-theme="dark"] .pkg-cta:hover { background: rgba(255,255,255,.06); color: #fff; }
[data-theme="dark"] .packages-note { color: rgba(255,255,255,.3); }

[data-theme="dark"] .contact-info,
[data-theme="dark"] .contact-form-wrap { background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.1); }
[data-theme="dark"] .contact-info h3    { color: #fff; }
[data-theme="dark"] .cinfo-list li      { color: rgba(255,255,255,.62); border-color: rgba(255,255,255,.06); }
[data-theme="dark"] .cinfo-lbl          { color: rgba(255,255,255,.32); }
[data-theme="dark"] .form-label         { color: rgba(255,255,255,.48); }
[data-theme="dark"] .form-input,
[data-theme="dark"] .form-textarea      { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); color: #fff; }
[data-theme="dark"] .form-input:focus,
[data-theme="dark"] .form-textarea:focus { border-color: rgba(3,86,149,.6); background: rgba(3,86,149,.06); }
[data-theme="dark"] .form-input::placeholder,
[data-theme="dark"] .form-textarea::placeholder { color: rgba(255,255,255,.22); }
[data-theme="dark"] .alert-success { background: rgba(22,163,74,.1);  border-color: rgba(22,163,74,.2);  color: #4ade80; }
[data-theme="dark"] .alert-error   { background: rgba(239,68,68,.1);  border-color: rgba(239,68,68,.2);  color: #f87171; }

[data-theme="dark"] .glassButton--outline { border-color: rgba(255,255,255,.35); color: rgba(255,255,255,.88); }
[data-theme="dark"] .glassButton--outline:hover { background: rgba(255,255,255,.07); border-color: #fff; color: #fff; }
[data-theme="dark"] .hero-section .glassButton--outline { border-color: rgba(255,255,255,.4); color: rgba(255,255,255,.9); }

[data-theme="dark"] .compare-table th { border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.4); }
[data-theme="dark"] .compare-table td { border-color: rgba(255,255,255,.05); color: rgba(255,255,255,.62); }
[data-theme="dark"] .compare-table td:first-child { color: #fff; }
[data-theme="dark"] .not-found-num { color: rgba(255,255,255,.04); }
[data-theme="dark"] .map-wrap { border-color: rgba(255,255,255,.1); }

/* Dark mode footer */
[data-theme="dark"] .site-footer         { background: #1e1e1e; border-color: rgba(255,255,255,.06); }
[data-theme="dark"] .footer-logo .logo-main { color: #fff; }
[data-theme="dark"] .footer-desc         { color: rgba(255,255,255,.45); }
[data-theme="dark"] .footer-heading      { color: rgba(255,255,255,.4); }
[data-theme="dark"] .footer-links a      { color: rgba(255,255,255,.55); }
[data-theme="dark"] .footer-links a:hover { color: #60a5fa; }
[data-theme="dark"] .footer-contact li   { color: rgba(255,255,255,.55); }
[data-theme="dark"] .footer-contact i    { color: #60a5fa; }
[data-theme="dark"] .footer-contact a:hover { color: #60a5fa; }
[data-theme="dark"] .footer-bottom       { border-color: rgba(255,255,255,.07); color: rgba(255,255,255,.3); }
[data-theme="dark"] .footer-bottom a     { color: rgba(255,255,255,.35); }
[data-theme="dark"] .footer-bottom a:hover { color: #60a5fa; }
[data-theme="dark"] .footer-social a     { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.5); }
[data-theme="dark"] .footer-social a:hover { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.2); }

/* ── GDPR page ──────────────────────────────────────────────── */
.gdpr-box {
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 18px;
    padding: 2.5rem;
    font-size: .9rem;
    color: #475569;
    line-height: 1.9;
}
.gdpr-box h2 {
    color: #1e293b;
    font-size: 1.1rem;
    margin: 1.4rem 0 .6rem;
}
.gdpr-box h2:first-child { margin-top: 0; }
.gdpr-box a { color: #035695; }
.gdpr-box strong { color: #1e293b; }

[data-theme="dark"] .gdpr-box {
    background: rgba(255,255,255,.04);
    border-color: rgba(255,255,255,.08);
    color: rgba(255,255,255,.65);
}
[data-theme="dark"] .gdpr-box h2  { color: #fff; }
[data-theme="dark"] .gdpr-box a   { color: #60a5fa; }
[data-theme="dark"] .gdpr-box strong { color: #fff; }
