

        :root {
            /* 2026 Palette — Eco-first for "Green School" identity */
            --primary: #2D5A27;          /* Forest Green — eco */
            --primary-dark: #1d3a18;
            --primary-light: #4a8a3d;
            --primary-pale: #e8f0e6;
            --secondary: #0077B6;        /* Azure Blue — sea / Nautilus */
            --secondary-dark: #005f94;
            --secondary-light: #4ba2d4;
            --secondary-pale: #e6f1f9;
            --accent: #E2725B;           /* Soft Terracotta — creativity */
            --accent-dark: #c25543;
            --accent-light: #ec8e7a;
            --accent-pale: #fbe9e3;
            --gold: #FFB703;             /* Kept for special highlights (ESPA etc) */
            --orange: #E5A503;
            --dark: #1a1a2e;
            --text: #2a3650;
            --text-light: #5b6478;
            --light: #F9F9F9;            /* Off-white base */
            --white: #ffffff;
            --border: #e8eaf0;
            /* Aliases for backwards compat with older sections */
            --eco: var(--primary);
            --eco-light: var(--primary-light);
            --eco-pale: var(--primary-pale);
            --eco-bg: #f4f8f2;
            --eco-dark: var(--primary-dark);
            --ocean: var(--secondary);
            --ocean-dark: var(--secondary-dark);
            --ocean-pale: var(--secondary-pale);
            /* Hero variables — easy to change overlay/text colors */
            --hero-text-color: #000;
            --hero-overlay-color: #ffffff;
            --hero-overlay-stop: 35%;
        }
        body { background: var(--light); }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; overflow-x: hidden; }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            background: #ffffff;
            line-height: 1.85;
            font-weight: 400;
            font-size: 16px;
            letter-spacing: -0.01em;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -0.02em;
        }

        h4, h5, h6 {
            font-family: 'Manrope', sans-serif;
            font-weight: 700;
            line-height: 1.3;
        }

        /* Scroll offset for fixed navbar — anchor targets sit below it */
        html { scroll-padding-top: 120px; scroll-behavior: smooth; }
        :target { scroll-margin-top: 120px; }
        .px-card { scroll-margin-top: 120px; }
        section[id] { scroll-margin-top: 120px; }
        /* Highlight pulse for targeted paroxes card */
        .px-card:target {
            animation: px-target-pulse 1.6s ease-out;
        }
        @keyframes px-target-pulse {
            0% { box-shadow: 0 0 0 0 var(--cat, #0077B6), 0 10px 30px rgba(15,30,55,0.1); transform: scale(1); }
            30% { box-shadow: 0 0 0 8px rgba(0,119,182,0.25), 0 18px 40px rgba(15,30,55,0.18); transform: scale(1.015); }
            100% { box-shadow: 0 0 0 0 transparent, 0 10px 30px rgba(15,30,55,0.1); transform: scale(1); }
        }

        /* ========== TOP BAR ========== */
        .top-bar {
            background: var(--dark);
            color: #fff;
            padding: 8px 0;
            font-size: 0.82rem;
            font-family: 'Manrope', sans-serif;
            font-weight: 400;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1001;
            transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
            min-height: 30px;
        }

        .top-bar-left {
            display: flex;
            gap: 22px;
            align-items: center;
            flex-wrap: wrap;
        }

        .top-bar-left a, .top-bar-left span {
            display: inline-flex;
            align-items: center;
            line-height: 1;
        }

        .top-bar a {
            color: rgba(255,255,255,0.9);
            text-decoration: none;
            transition: color 0.3s;
        }

        .top-bar a:hover { color: var(--accent); }

        .top-bar i {
            margin-right: 6px;
            font-size: 0.78rem;
            color: rgba(255,255,255,0.6);
        }

        .top-bar-social {
            display: flex;
            gap: 14px;
            align-items: center;
        }

        .top-bar-social a {
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 26px;
            height: 26px;
        }
        .top-bar-social a i { margin: 0; color: rgba(255,255,255,0.85); transition: color 0.2s; }
        .top-bar-social a:hover i { color: var(--accent); }

        /* ========== NAVBAR — Apple-style clean bar with full-width mega ========== */
        .navbar {
            position: fixed;
            top: 46px;
            width: 100%;
            z-index: 1000;
            /* Solid fallback for browsers without backdrop-filter (older Firefox, some Android WebViews) */
            background: rgba(255,255,255,0.96);
            padding: 0;
            height: 58px;
            display: flex;
            align-items: center;
            border-bottom: 1px solid rgba(0,0,0,0.06);
            transition: top 0.35s cubic-bezier(0.22,1,0.36,1), background 0.35s, height 0.3s, box-shadow 0.3s;
        }
        @supports ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
            .navbar {
                background: rgba(255,255,255,0.82);
                backdrop-filter: blur(22px) saturate(180%);
                -webkit-backdrop-filter: blur(22px) saturate(180%);
            }
        }
        .navbar.scrolled {
            background: rgba(255,255,255,0.94);
            box-shadow: 0 1px 24px rgba(15,30,55,0.06);
        }
        .navbar .container {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            max-width: none !important;
            padding: 0 20px;
            height: 100%;
        }
        @media (max-width: 768px) {
            .navbar .container { justify-content: space-between !important; padding: 0 16px; }
        }
        .navbar-logo img {
            height: 42px;
            position: relative;
            z-index: 1002;
            transition: height 0.3s;
        }
        .navbar.scrolled .navbar-logo img { height: 38px; }
        .navbar-brand-text {
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--dark);
            letter-spacing: -0.3px;
            transition: color 0.2s;
        }
        .navbar-brand-text:hover { color: var(--primary); }

        .navbar-menu {
            display: flex;
            list-style: none;
            gap: 0;
            align-items: center;
            justify-content: center;
            height: 100%;
        }
        .navbar-menu > li { position: static; height: 100%; display: flex; align-items: center; }
        /* Mobile drawer footer (phone + socials) — only visible on mobile, hidden on desktop */
        .navbar-menu > li.nav-drawer-footer { display: none !important; }
        .navbar-menu > li > a {
            color: var(--dark);
            text-decoration: none;
            font-family: 'Manrope', sans-serif;
            font-size: 0.88rem;
            font-weight: 500;
            padding: 0 14px;
            height: 100%;
            transition: color 0.2s ease;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            position: relative;
            letter-spacing: -0.1px;
        }
        @media (min-width: 1200px) {
            .navbar-menu > li > a { font-size: 0.92rem; padding: 0 18px; }
        }
        @media (min-width: 1400px) {
            .navbar-menu > li > a { padding: 0 22px; }
        }
        .navbar-menu > li > a:hover { color: var(--primary); }
        .navbar-menu > li.active > a,
        .has-dropdown.open > a { color: var(--primary); }
        .navbar-menu > li > a::after { display: none !important; }
        /* Drawer header / mobile-only injected items — hide on desktop, show on mobile only */
        .drawer-header,
        .nav-feature-image,
        .nav-bottom-block { display: none !important; }
        @media (max-width: 768px) {
            .drawer-header { display: flex !important; }
            .nav-feature-image,
            .nav-bottom-block { display: block !important; }
        }
        .nav-arrow { font-size: 0.6rem; opacity: 0.7; transition: transform 0.3s; }
        .has-dropdown.open .nav-arrow { transform: rotate(180deg); }

        .nav-home {
            color: #fff !important;
            font-weight: 700 !important;
            background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
            padding: 9px 18px !important;
            border-radius: 50px !important;
            box-shadow: 0 4px 14px rgba(45,90,39,0.3) !important;
            transition: transform 0.2s ease, box-shadow 0.2s ease !important;
        }
        .nav-home:hover {
            color: #fff !important;
            transform: translateY(-2px) !important;
            box-shadow: 0 8px 22px rgba(45,90,39,0.45) !important;
        }
        .nav-home::after { display: none !important; }
        .nav-summer {
            color: #fff !important;
            font-weight: 700 !important;
            background: linear-gradient(135deg, #FFB800, #FF6B35) !important;
            padding: 8px 14px !important;
            height: auto !important;
            border-radius: 50px !important;
            box-shadow: 0 4px 14px rgba(255,107,53,0.35) !important;
            transition: transform 0.2s ease, box-shadow 0.2s ease !important;
        }
        @media (min-width: 1200px) {
            .nav-summer { padding: 9px 18px !important; }
        }
        .nav-summer:hover {
            color: #fff !important;
            transform: translateY(-2px) !important;
            box-shadow: 0 8px 22px rgba(255,107,53,0.5) !important;
        }
        .nav-summer::after { display: none !important; }
        .nav-etwinning { color: var(--primary) !important; font-weight: 700 !important; }

        .navbar-cta {
            background: var(--accent);
            color: #fff !important;
            border-radius: 50px;
            padding: 11px 22px !important;
            box-shadow: 0 6px 20px rgba(255,107,53,0.35);
            transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
            font-weight: 700 !important;
        }
        .navbar-cta::after { display: none !important; }
        .navbar-cta:hover {
            background: #E65100 !important;
            color: #fff !important;
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(255,107,53,0.5);
        }
        .navbar-cta i { color: #fff !important; }

        /* Full-width mega-menu panel — Apple-style */
        .nav-dropdown {
            position: fixed;
            top: 104px; /* 46 (top-bar) + 58 (navbar) */
            left: 0;
            right: 0;
            width: 100vw;
            min-height: 500px;
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(28px) saturate(200%);
            -webkit-backdrop-filter: blur(28px) saturate(200%);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            box-shadow: 0 24px 50px rgba(15,30,55,0.08);
            padding: 44px 0 50px;
            margin: 0;
            min-width: 0;
            border-radius: 0 0 28px 28px;
            border-left: none;
            border-right: none;
            border-top: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: opacity 0.32s cubic-bezier(0.22,1,0.36,1), transform 0.4s cubic-bezier(0.22,1,0.36,1), visibility 0.32s;
        }
        .nav-dropdown::after { display: none; }
        .nav-dropdown::before {
            content:''; position: absolute; top: -20px; left: 0; right: 0; height: 20px;
        }
        @media (hover: hover) and (pointer: fine) {
            .has-dropdown:hover > .nav-dropdown {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
            .has-dropdown:hover .nav-arrow { transform: rotate(180deg); }
        }
        .has-dropdown.open > .nav-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* Mega-menu inner content grid */
        .mega-content {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 30px;
            display: grid;
            gap: 36px;
            align-items: stretch;
        }
        .mega-cols-4 { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
        .mega-cols-3 { grid-template-columns: 1.4fr 1fr 1fr; }
        .mega-col {
            display: flex;
            flex-direction: column;
            min-height: 100%;
        }

        /* Featured card with photo */
        .mega-feature {
            display: block;
            position: relative;
            aspect-ratio: 16/10;
            border-radius: 18px;
            overflow: hidden;
            text-decoration: none;
            color: #fff;
            background: var(--dark);
            transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s;
            box-shadow: 0 10px 30px rgba(15,30,55,0.1);
        }
        .mega-feature:hover {
            transform: translateY(-3px);
            box-shadow: 0 18px 40px rgba(15,30,55,0.18);
        }
        .mega-feature img {
            position: absolute; inset: 0;
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
        }
        .mega-feature:hover img { transform: scale(1.06); }
        .mega-feature::after {
            content:'';
            position: absolute; inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0) 10%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.92) 100%);
        }
        .mega-feature-text {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            padding: 24px 26px;
            z-index: 2;
            text-shadow: 0 2px 14px rgba(0,0,0,0.55);
        }
        .mega-feature-eyebrow {
            display: inline-block;
            font-size: 0.68rem;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            background: var(--accent, #FF6B35);
            color: #fff;
            padding: 5px 12px;
            border-radius: 50px;
            margin-bottom: 12px;
            text-shadow: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.25);
        }
        .mega-feature h4 {
            font-family: 'Manrope', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.5px;
            color: #fff;
            margin: 0 0 8px;
        }
        .mega-feature p {
            font-size: 0.88rem;
            opacity: 0.95;
            line-height: 1.4;
            margin: 0;
            color: #fff;
        }

        /* Column with link list */
        .mega-col h5 {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.6px;
            color: var(--text-light);
            margin: 4px 0 16px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(0,0,0,0.06);
        }
        .nav-dropdown a {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 9px 0;
            color: var(--dark);
            text-decoration: none;
            font-size: 0.92rem;
            font-weight: 500;
            transition: color 0.2s ease, transform 0.25s ease;
            border-radius: 0;
            background: transparent;
            border: none;
        }
        .nav-dropdown a:hover {
            color: var(--primary);
            transform: translateX(4px);
            background: transparent;
        }
        .nav-dropdown a > i:first-child {
            width: 26px; height: 26px;
            background: transparent;
            color: var(--primary);
            display: flex; align-items: center; justify-content: center;
            font-size: 0.95rem; flex-shrink: 0;
            transition: transform 0.25s;
            margin-top: 2px;
            border-radius: 0;
        }
        .nav-dropdown a:hover > i:first-child {
            background: transparent;
            color: var(--primary);
            transform: none;
            box-shadow: none;
        }
        .nav-dropdown a > div { flex: 1; }
        .nav-dropdown a strong {
            display: block;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--dark);
            letter-spacing: -0.2px;
            line-height: 1.3;
        }
        .nav-dropdown a:hover strong { color: var(--primary); }
        .nav-dropdown a span {
            display: block;
            font-size: 0.78rem;
            color: var(--text-light);
            margin-top: 2px;
            line-height: 1.35;
        }
        .nav-dropdown-all {
            margin-top: 14px;
            padding: 10px 14px !important;
            background: rgba(0,119,182,0.06) !important;
            color: var(--primary) !important;
            font-weight: 700 !important;
            justify-content: center;
            border-radius: 50px !important;
            transition: all 0.25s ease !important;
        }
        .nav-dropdown-all:hover {
            background: var(--primary) !important;
            color: #fff !important;
            transform: translateX(0) !important;
        }
        .nav-dropdown-all strong { color: inherit !important; }

        /* Backdrop dim while mega is open */
        .mega-backdrop {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(15,30,55,0.35);
            backdrop-filter: blur(2px);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
            pointer-events: none;
        }
        .mega-backdrop.show { opacity: 1; visibility: visible; }

        /* Τάξεις mega-menu — photo cards (full-width grid) */
        .nav-mega {
            min-width: 0 !important;
        }
        .nav-mega .mega-content {
            display: grid !important;
            grid-template-columns: repeat(5, 1fr) !important;
            gap: 14px !important;
            align-items: stretch !important;
        }
        .nav-mega-card {
            display: flex !important;
            flex-direction: column !important;
            align-items: stretch !important;
            gap: 0 !important;
            padding: 0 !important;
            border-radius: 16px !important;
            overflow: hidden;
            background: var(--light) !important;
            border: 1px solid rgba(0,0,0,0.04);
            transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease, border-color 0.35s ease !important;
        }
        .nav-mega-card:hover {
            transform: translateY(-4px) !important;
            box-shadow: 0 14px 30px rgba(0,119,182,0.16) !important;
            border-color: var(--primary);
            background: #fff !important;
        }
        .nav-mega-card .nmc-img {
            aspect-ratio: 16/10;
            overflow: hidden;
            background: var(--dark);
            position: relative;
        }
        .nav-mega-card .nmc-img img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
        }
        .nav-mega-card:hover .nmc-img img { transform: scale(1.08); }
        .nav-mega-card .nmc-body {
            padding: 9px 12px 11px;
            text-align: left;
        }
        .nav-mega-card .age-pill {
            display: inline-block !important;
            padding: 3px 10px !important;
            border-radius: 50px !important;
            background: rgba(0,119,182,0.12) !important;
            color: var(--primary) !important;
            font-size: 0.65rem !important;
            font-weight: 700 !important;
            margin: 0 0 6px 0 !important;
            letter-spacing: 0.4px !important;
            width: auto !important;
            line-height: 1.4 !important;
        }
        .nav-mega-card:hover .age-pill { background: var(--primary); color: #fff; }
        .nav-mega-card strong {
            display: block !important;
            font-family: 'Manrope', sans-serif;
            font-size: 0.92rem !important;
            font-weight: 700 !important;
            color: var(--dark) !important;
            line-height: 1.2;
            letter-spacing: -0.2px;
        }
        .nav-mega-card:hover strong { color: var(--primary) !important; }

        /* Mobile: keep grid but smaller */
        @media (max-width: 768px) {
            .nav-mega {
                grid-template-columns: 1fr 1fr !important;
                min-width: 0 !important;
                gap: 6px !important;
                padding: 8px !important;
            }
            .nav-mega-card .nmc-img { aspect-ratio: 16/10; }
            .nav-mega-card .nmc-body { padding: 8px 10px 10px; }
            .nav-mega-card strong { font-size: 0.8rem !important; }
            .nav-mega-card .age-pill { font-size: 0.58rem; padding: 2px 7px; }
        }

        /* Hamburger */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            width: 42px;
            height: 42px;
            padding: 0;
            position: relative;
            z-index: 1010;
        }
        .menu-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--dark);
            margin: 5px auto;
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .menu-toggle.open span:nth-child(2) { opacity: 0; }
        .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        /* ========== CONTAINER ========== */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 30px;
        }

        /* ========== HERO ========== */
        .hero {
            position: relative;
            height: 56.25vw; /* 16:9 aspect ratio */
            max-height: 100vh;
            min-height: 500px;
            margin-top: 104px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        /* Hero logo "drop card" — white card descending from navbar into hero */
        .hero-drop-logo {
            position: absolute;
            top: 0;
            left: 30px;
            z-index: 5;
            width: 130px;
            height: 130px;
            background: #fff;
            border-radius: 0 0 18px 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 12px 30px rgba(0,0,0,0.12);
            text-decoration: none;
            transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
            overflow: hidden;
        }
        .hero-drop-logo::before {
            content:''; position: absolute;
            top:0; left:0; right:0; height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
        }
        .hero-drop-logo:hover {
            transform: translateY(4px);
        }
        .hero-drop-logo img {
            width: 80%;
            height: auto;
            display: block;
        }
        @media (max-width: 768px) {
            .hero-drop-logo {
                left: 50%;
                transform: translateX(-50%);
                width: 100px;
                height: 100px;
                border-radius: 0 0 14px 14px;
            }
            .hero-drop-logo:hover { transform: translateX(-50%) translateY(4px); }
        }

        /* HERO — Background image right (contain, no zoom) + white gradient overlay left */
        section.hero {
            min-height: auto !important;
            padding: 0 !important;
            background: #fff !important;
        }
        .hero-container {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            min-height: 92vh;
            position: relative;
            background-color: #ffffff;
            overflow: hidden;
        }
        /* Wrapper acts transparent on desktop (display:contents) so photos absolute-fill hero */
        .hero-photos-mobile-wrap { display: contents; }
        /* Each photo as background-image (contain, right center, no zoom) */
        .hero-photos-mobile-wrap > .hd-img,
        .hero-container > .hd-img {
            position: absolute;
            inset: 0;
            background-repeat: no-repeat;
            background-size: auto 112%;
            background-position: right center;
            background-color: #ffffff;
            opacity: 0;
            transition: opacity 1.4s ease;
            z-index: 0;
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
            transform: translateZ(0);
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            will-change: opacity;
        }
        .hero-photos-mobile-wrap > .hd-img.active,
        .hero-container > .hd-img.active { opacity: 1; }
        /* Hero navigation arrows + dots */
        .hero-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255,255,255,0.85);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(0,0,0,0.06);
            color: var(--dark);
            font-size: 1.05rem;
            cursor: pointer;
            z-index: 8;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 22px rgba(0,0,0,0.12);
            transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
            opacity: 0.85;
        }
        .hero-nav:hover {
            background: #fff;
            opacity: 1;
            transform: translateY(-50%) scale(1.08);
            box-shadow: 0 10px 30px rgba(0,0,0,0.18);
        }
        .hero-nav-prev { left: 18px; }
        .hero-nav-next { right: 18px; }
        .hero-dots {
            position: absolute;
            bottom: 22px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 8;
            background: rgba(255,255,255,0.6);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            padding: 8px 14px;
            border-radius: 50px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        }
        .hero-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: rgba(0,0,0,0.18);
            border: none;
            cursor: pointer;
            padding: 0;
            transition: background 0.25s ease, width 0.3s ease;
        }
        .hero-dot:hover { background: rgba(0,0,0,0.4); }
        .hero-dot.active {
            background: var(--primary);
            width: 26px;
            border-radius: 8px;
        }
        @media (max-width: 768px) {
            .hero-nav { width: 40px; height: 40px; font-size: 0.92rem; }
            .hero-nav-prev { left: 10px; }
            .hero-nav-next { right: 10px; }
            .hero-dots { bottom: 14px; padding: 6px 12px; }
            .hero-dot { width: 8px; height: 8px; }
            .hero-dot.active { width: 22px; }
        }
        /* Linear gradient overlay — solid white to 35%, transparent at 100% */
        .hero-container::before {
            content: "";
            position: absolute;
            top: 0; left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right,
                white 0%,
                white 30%,
                transparent 60%,
                transparent 100%);
            z-index: 1;
            pointer-events: none;
        }
        .hero-content-wrapper {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: flex-start;
            padding-left: 80px;
            padding-right: 32px;
            padding-top: 28px;
            padding-bottom: 60px;
            width: 100%;
        }
        .hero-text {
            text-align: left;
            /* extend up to where the gradient blend starts (~30vw) accounting for left padding */
            max-width: clamp(480px, calc(38vw - 80px), 720px);
            color: #000;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        @media screen and (min-width: 769px) {
            #hero .hero-text {
                max-width: clamp(480px, calc(38vw - 80px), 720px) !important;
                padding-left: 0 !important;
                display: flex;
                flex-direction: column;
                gap: 20px;
            }
            #hero .hd-title {
                font-size: 44px !important;
                font-weight: 700 !important;
                line-height: 1.15 !important;
                letter-spacing: -0.8px !important;
                color: #1a1a1a !important;
            }
            #hero .hd-sub {
                font-size: 18px !important;
                line-height: 1.6 !important;
                color: #444 !important;
                margin-bottom: 10px !important;
            }
            /* Allow typing wrap to take more horizontal room on desktop so words like "imagination" fit comfortably */
            #hero .hd-title .hd-typing-wrap {
                min-width: 13ch;
            }
        }
        @media screen and (max-width: 768px) {
            /* 1. Hero section — column layout, white bg */
            #hero {
                display: flex !important;
                flex-direction: column !important;
                height: auto !important;
                min-height: 100vh;
                background-image: none !important;
                background-color: #ffffff !important;
            }
            #hero .hero-container {
                flex-direction: column;
                align-items: stretch;
                min-height: auto;
                padding: 0;
                position: relative;
                background: #fff;
            }
            /* 2. Photo container on mobile — full width, ABOVE text */
            .hero-photos-mobile-wrap {
                display: block !important;
                width: 100% !important;
                aspect-ratio: 1 / 1 !important;
                max-height: 540px;
                position: relative !important;
                overflow: hidden;
                background-color: #f0f0f0 !important;
                order: 1 !important;
                visibility: visible !important;
                opacity: 1 !important;
            }
            .hero-photos-mobile-wrap > .hd-img {
                position: absolute !important;
                inset: 0 !important;
                width: 100% !important;
                height: 100% !important;
                background-size: cover !important;
                background-position: center !important;
                background-repeat: no-repeat !important;
                background-color: #f0f0f0 !important;
                z-index: 1 !important;
            }
            #hero .hero-content-wrapper { order: 2 !important; }
            /* 3. Text container — centered, white, padded */
            .hero-content-wrapper {
                width: 100% !important;
                max-width: 100% !important;
                padding: 16px 20px 40px !important;
                text-align: center !important;
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                background: #ffffff !important;
            }
            .hero-text {
                max-width: 100%;
                text-align: center;
                margin: 0 auto;
            }
            /* 4. Modern typography — smaller, elegant */
            #hero .hd-title, .hero-text .hd-title {
                font-size: 32px !important;
                line-height: 1.18 !important;
                margin-bottom: 18px !important;
                color: #000000 !important;
                letter-spacing: -0.6px !important;
            }
            /* Center the typing word/cursor within its reserved-width wrap on mobile */
            #hero .hd-title .hd-typing-wrap {
                text-align: center;
            }
            #hero .hd-sub, .hero-text .hd-sub {
                font-size: 16px !important;
                line-height: 1.6 !important;
                margin-bottom: 25px !important;
                color: #333333 !important;
                max-width: 380px;
                margin-left: auto !important;
                margin-right: auto !important;
            }
            /* 5. Remove desktop overlay on mobile */
            #hero::before, .hero-container::before {
                display: none !important;
            }
            .hero-text .hd-brand {
                align-self: center;
                margin-bottom: 16px;
                gap: 10px;
            }
            .hero-text .hd-eyebrow {
                margin-bottom: 0;
                padding: 6px 14px;
            }
            .hero-text .hd-eyebrow span {
                font-size: 0.6rem !important;
                letter-spacing: 1.2px !important;
            }
            .hero-text .hd-mini-logo { height: 124px !important; }
            /* Floating medallion: half on photos, half on white — straddles the boundary */
            .hero-mobile-medallion {
                display: flex !important;
                align-items: center;
                justify-content: center;
                align-self: center;
                width: 150px;
                height: 150px;
                flex-shrink: 0;
                margin: -75px auto 14px;
                border-radius: 50%;
                background: #fff;
                border: 6px solid #fff;
                box-shadow: 0 10px 28px rgba(0,0,0,0.18);
                position: relative;
                z-index: 5;
                overflow: hidden;
            }
            .hero-mobile-medallion img {
                width: 100%;
                height: 100%;
                object-fit: contain;
                display: block;
            }
            /* Hide the in-eyebrow logo on mobile since the medallion replaces it */
            .hero-text .hd-brand .hd-mini-logo { display: none !important; }
            .hero-text .hd-brand { gap: 0 !important; }
            .hero-text .hd-actions {
                justify-content: center !important;
                gap: 10px;
                margin-bottom: 24px;
            }
            .hero-text .hd-actions .btn-primary,
            .hero-text .hd-phone {
                padding: 11px 18px !important;
                font-size: 0.85rem !important;
            }
            .hero-text .hd-stats {
                grid-template-columns: repeat(4, 1fr) !important;
                gap: 12px !important;
                padding-top: 22px !important;
                max-width: 100%;
            }
            .hero-text .hd-stats > div { padding-left: 10px !important; }
            .hero-text .hd-stats strong { font-size: 1.25rem !important; }
            .hero-text .hd-stats span { font-size: 0.6rem !important; letter-spacing: 0.8px !important; }
        }
        .hero-diag::before {
            content:''; position: absolute;
            top: 8%; left: 4%;
            width: 360px; height: 360px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0,180,216,0.10), transparent 70%);
            pointer-events: none; z-index: 0;
            animation: hdBlob1 18s ease-in-out infinite;
        }
        .hero-diag::after {
            content:''; position: absolute;
            bottom: 10%; left: 26%;
            width: 280px; height: 280px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,107,53,0.08), transparent 70%);
            pointer-events: none; z-index: 0;
            animation: hdBlob2 22s ease-in-out infinite;
        }
        @keyframes hdBlob1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(40px, -30px); } }
        @keyframes hdBlob2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-30px, 40px); } }

        .hd-text {
            padding: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            z-index: 3;
            max-width: 560px;
            color: var(--hero-text-color);
            animation: hdTextIn 0.9s ease 0.2s both;
        }
        .hd-text .hd-eyebrow {
            background: rgba(0,180,216,0.08) !important;
            border: 1px solid rgba(0,180,216,0.2) !important;
        }
        .hd-text .hd-eyebrow span { color: var(--primary) !important; }
        .hd-text .hd-mini-logo { padding: 0; }
        .hd-text .hd-title { color: var(--hero-text-color) !important; }
        .hd-text .hd-school { color: var(--primary) !important; }
        .hd-text .hd-typing-wrap { color: var(--accent) !important; }
        .hd-text .hd-typing-wrap .typing-cursor { color: var(--primary) !important; }
        .hd-text .hd-sub { color: var(--text-light) !important; }
        .hd-text .hd-sub strong { color: var(--hero-text-color) !important; }
        @keyframes hdTextIn { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }
        .hd-brand {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            margin-bottom: 28px;
            align-self: flex-start;
        }
        .hd-eyebrow {
            display: inline-flex;
            align-items: center;
            padding: 8px 18px;
            background: rgba(0,180,216,0.06);
            border: 1px solid rgba(0,180,216,0.2);
            border-radius: 50px;
        }
        .hd-mini-logo { height: 168px; width: auto; display: block; }
        .hero-mobile-medallion { display: none; }
        .hd-eyebrow span {
            font-family: 'Manrope', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 1.8px;
        }
        .hd-title {
            font-family: 'Quicksand', sans-serif;
            font-size: clamp(2rem, 4vw, 3.4rem);
            font-weight: 700;
            color: var(--dark);
            line-height: 1.1;
            letter-spacing: -1px;
            margin-bottom: 20px;
        }
        .hd-title .hd-school {
            color: var(--primary);
            font-weight: 800;
            white-space: nowrap;
        }
        .hd-title .hd-typing-wrap {
            color: var(--accent);
            font-style: italic;
            font-size: 1.15em; /* a touch bigger than rest of the title */
            display: inline-block;
            min-height: 1.1em;
            min-width: 10ch; /* reserve room for longest word so the line doesn't jitter while typing */
            text-align: left;
            vertical-align: baseline;
            white-space: nowrap;
        }
        .hd-title .hd-typing-wrap #heroTyping { color: inherit; }
        .hd-title .hd-typing-wrap .typing-cursor {
            color: var(--accent);
            font-weight: 400;
            display: inline-block;
            margin-left: 1px;
        }
        .hd-sub {
            font-family: 'Quicksand', sans-serif;
            font-size: 1.1rem;
            color: var(--text-light, #5b6478);
            line-height: 1.6;
            margin-bottom: 36px;
            max-width: 520px;
        }
        .hd-sub strong { color: var(--dark); font-weight: 700; }
        .hd-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 50px; }
        .hd-phone {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 14px 28px; border: 2px solid var(--primary);
            border-radius: 50px;
            color: var(--primary);
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s;
        }
        .hd-phone:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
        .hd-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            padding-top: 32px;
            border-top: 1px solid rgba(0,0,0,0.08);
            max-width: 560px;
        }
        .hd-stats > div { display: flex; flex-direction: column; gap: 4px; position: relative; padding-left: 14px; }
        .hd-stats > div::before {
            content:''; position: absolute; left: 0; top: 4px; bottom: 8px;
            width: 3px; border-radius: 2px;
        }
        .hd-stats > div:nth-child(1)::before { background: linear-gradient(180deg, #00B4D8, #0077B6); }
        .hd-stats > div:nth-child(2)::before { background: linear-gradient(180deg, #FF6B35, #E65100); }
        .hd-stats > div:nth-child(3)::before { background: linear-gradient(180deg, #2E7D32, #1b5e20); }
        .hd-stats > div:nth-child(4)::before { background: linear-gradient(180deg, #FFB800, #F57C00); }
        .hd-stats strong {
            font-family: 'Quicksand', sans-serif;
            font-size: clamp(1.5rem, 2.6vw, 2rem);
            font-weight: 800;
            color: var(--dark);
            line-height: 1;
        }
        .hd-stats span {
            font-family: 'Manrope', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--text-light, #5b6478);
            text-transform: uppercase;
            letter-spacing: 1.2px;
        }

        /* Trust strip — accreditations */
        .hd-trust {
            margin-top: 36px;
            max-width: 560px;
        }
        .hd-trust-label {
            display: inline-block;
            font-family: 'Manrope', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--text-light, #5b6478);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 12px;
            position: relative;
            padding-left: 28px;
        }
        .hd-trust-label::before {
            content:''; position: absolute; left: 0; top: 50%;
            transform: translateY(-50%);
            width: 20px; height: 1px;
            background: var(--primary);
        }
        .hd-trust-badges {
            display: flex; gap: 8px; flex-wrap: wrap;
        }
        .hd-trust-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 7px 14px;
            background: rgba(0,180,216,0.06);
            border: 1px solid rgba(0,180,216,0.2);
            border-radius: 50px;
            font-family: 'Manrope', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--dark);
            transition: all 0.25s ease;
        }
        .hd-trust-badge:hover {
            background: var(--primary);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0,180,216,0.25);
        }
        .hd-trust-badge:hover i { color: #fff !important; }
        .hd-trust-badge i { color: var(--primary); font-size: 0.75rem; }
        .hd-trust-voucher {
            background: rgba(255,184,0,0.1);
            border-color: rgba(255,184,0,0.35);
        }
        .hd-trust-voucher i { color: #F57C00; }
        .hd-trust-voucher:hover { background: #F57C00; box-shadow: 0 6px 16px rgba(245,124,0,0.3); }

        /* Giant background watermark */
        .hd-watermark {
            position: absolute;
            bottom: 4%;
            left: -2%;
            font-family: 'Quicksand', sans-serif;
            font-size: 18rem;
            font-weight: 800;
            letter-spacing: -10px;
            color: rgba(0,180,216,0.05);
            line-height: 0.9;
            pointer-events: none;
            user-select: none;
            z-index: 0;
        }
        @media (max-width: 1200px) {
            .hd-watermark { font-size: 14rem; bottom: 2%; }
        }
        @media (max-width: 900px) {
            .hd-watermark { display: none; }
            .hd-trust { margin-top: 24px; }
            .hd-trust-label { font-size: 0.62rem; padding-left: 20px; margin-bottom: 8px; }
            .hd-trust-badges { justify-content: center; gap: 6px; }
            .hd-trust-badge { padding: 6px 11px; font-size: 0.68rem; }
        }

        /* Photo side with diagonal cut */
        .hd-photos {
            position: relative;
            overflow: hidden;
            clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
            -webkit-clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
            background: #0a1929;
            animation: hdPhotosIn 1s cubic-bezier(0.34,1.56,0.64,1) 0.4s both;
            width: 100%;
            height: 100%;
        }
        @keyframes hdPhotosIn { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
        .hd-img {
            position: absolute;
            inset: 0;
            width: 100%; height: 100%;
            object-fit: cover;
            opacity: 0;
            transform: scale(1.05);
            transition: opacity 1.4s ease, transform 7s ease-out;
        }
        .hd-img.active {
            opacity: 1;
            transform: scale(1.18);
        }
        /* YouTube video background — scaled to cover the container, hides black bars */
        .hd-video-wrap {
            position: absolute; inset: 0;
            overflow: hidden;
            z-index: 5;
        }
        .hd-video-wrap iframe {
            position: absolute;
            top: 50%; left: 50%;
            width: 100%;
            height: 100%;
            min-width: 100%;
            min-height: 100%;
            transform: translate(-50%, -50%) scale(1.7);
            border: 0;
            pointer-events: none;
        }
        .hd-img-fallback {
            position: absolute; inset: 0;
            width: 100%; height: 100%;
            object-fit: cover;
            z-index: 1;
            opacity: 1;
            pointer-events: none;
        }

        /* Mobile: gradient overlay flips to bottom-up (photo top, color bottom) */
        @media (max-width: 900px) {
            .hero-overlay-fade {
                background: linear-gradient(
                    to top,
                    var(--hero-overlay-color) 0%,
                    var(--hero-overlay-color) 45%,
                    transparent 100%
                );
            }
            .hero-content-wrap {
                padding: 60px 22px 40px;
                align-items: flex-end;
                min-height: 92vh;
            }
            .hd-text { max-width: 100%; }
            .hero-diag {
                grid-template-columns: 1fr;
                grid-template-rows: auto auto;
                min-height: auto;
                background: #fff;
            }
            .hd-photos {
                grid-row: 1;
                clip-path: none;
                -webkit-clip-path: none;
                width: 100% !important;
                height: 60vh !important;
                max-height: 500px;
                min-height: 320px;
                animation: none;
                transform: none !important;
                opacity: 1 !important;
                border-radius: 0 0 28px 28px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .hd-img {
                opacity: 0;
                transform: scale(1.05);
                object-position: center center;
            }
            .hd-img.active {
                opacity: 1;
                transform: scale(1.1);
            }
            .hd-text {
                grid-row: 2;
                padding: 32px 24px 30px;
                max-width: 100%;
                text-align: center;
                align-items: center;
                animation: none;
            }
            .hd-eyebrow {
                margin-bottom: 18px;
                padding: 6px 14px 6px 6px;
            }
            .hd-mini-logo { height: 26px; }
            .hd-eyebrow span { font-size: 0.62rem; letter-spacing: 1.2px; }
            .hd-title {
                font-size: clamp(2.4rem, 11vw, 3.5rem);
                letter-spacing: -1px;
                margin-bottom: 16px;
                line-height: 0.95;
            }
            .hd-sub {
                font-size: 0.95rem;
                margin-bottom: 24px;
                max-width: 100%;
            }
            .hd-sub br { display: none; }
            .hd-actions {
                margin-bottom: 28px;
                justify-content: center;
                gap: 10px;
            }
            .hd-actions .btn-primary, .hd-phone {
                padding: 12px 20px;
                font-size: 0.88rem;
            }
            .hd-stats {
                padding-top: 22px;
                grid-template-columns: repeat(4, 1fr);
                gap: 10px;
                max-width: 100%;
                width: 100%;
            }
            .hd-stats > div { align-items: center; text-align: center; }
            .hd-stats strong { font-size: 1.3rem; }
            .hd-stats span { font-size: 0.62rem; letter-spacing: 0.6px; }
        }
        @media (max-width: 480px) {
            .hd-photos { aspect-ratio: 1/1; max-height: 420px; border-radius: 0 0 24px 24px; }
            .hd-stats > div { gap: 0; }
            .hd-stats strong { font-size: 1.15rem; }
        }

        /* HERO — Modern Tilted Collage with overlapping photos + parallax */
        section.hero {
            position: relative !important;
            height: auto !important;
            min-height: 92vh !important;
            max-height: none !important;
            padding: 0 !important;
            margin-top: 122px !important;
            display: block !important;
            overflow: hidden !important;
            background: linear-gradient(135deg, #f7fafc 0%, #fff 50%, #fff8f0 100%) !important;
        }
        section.hero::before {
            content:''; position: absolute; top: -150px; right: -150px;
            width: 500px; height: 500px; border-radius: 50%;
            background: radial-gradient(circle, rgba(0,180,216,0.12), transparent 70%);
            pointer-events: none; z-index: 0;
        }
        section.hero::after {
            content:''; position: absolute; bottom: -120px; left: -120px;
            width: 420px; height: 420px; border-radius: 50%;
            background: radial-gradient(circle, rgba(255,107,53,0.10), transparent 70%);
            pointer-events: none; z-index: 0;
        }
        .hero-mosaic {
            position: absolute;
            inset: 0;
            z-index: 1;
            perspective: 1200px;
        }
        .hm-cell {
            position: absolute;
            border-radius: 18px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 18px 50px rgba(10,25,41,0.18), 0 0 0 1px rgba(255,255,255,0.6) inset;
            transition: transform 0.6s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease;
            will-change: transform;
        }
        .hm-cell::after {
            content:''; position:absolute; inset:0;
            border-radius:18px;
            box-shadow: inset 0 0 0 4px rgba(255,255,255,0.85);
            pointer-events: none;
        }
        .hm-cell img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.8s ease;
        }
        .hm-cell:hover {
            transform: scale(1.04) rotate(0deg) !important;
            z-index: 100 !important;
            box-shadow: 0 30px 80px rgba(10,25,41,0.3), 0 0 0 1px rgba(255,255,255,0.6) inset;
        }
        .hm-cell:hover img { transform: scale(1.08); }

        /* Tilted overlapping layout — uses CSS vars for rotate + parallax translate (set by JS) */
        .hm-cell {
            --rot: 0deg; --px: 0px; --py: 0px;
            transform: translate(var(--px), var(--py)) rotate(var(--rot));
        }
        /* Photos frame the card on the edges — center stays clear */
        .hm-cell-1 { top: 4%;  left: 2%;   width: 24%; height: 36%; --rot: -4deg; z-index: 4; animation: hmEnter 0.8s cubic-bezier(0.34,1.56,0.64,1) 0.1s both; }
        .hm-cell-2 { top: 3%;  right: 4%;  width: 22%; height: 32%; --rot: 3deg;  z-index: 3; animation: hmEnter 0.8s cubic-bezier(0.34,1.56,0.64,1) 0.2s both; }
        .hm-cell-3 { top: 38%; left: 0%;   width: 21%; height: 30%; --rot: 3deg;  z-index: 2; animation: hmEnter 0.8s cubic-bezier(0.34,1.56,0.64,1) 0.3s both; }
        .hm-cell-4 { top: 32%; right: -2%; width: 23%; height: 36%; --rot: -3deg; z-index: 3; animation: hmEnter 0.8s cubic-bezier(0.34,1.56,0.64,1) 0.4s both; }
        .hm-cell-5 { bottom: 3%; left: 4%; width: 25%; height: 34%; --rot: 2deg;  z-index: 5; animation: hmEnter 0.8s cubic-bezier(0.34,1.56,0.64,1) 0.5s both; }
        .hm-cell-6 { bottom: 5%; right: 2%; width: 24%; height: 36%; --rot: -3deg; z-index: 4; animation: hmEnter 0.8s cubic-bezier(0.34,1.56,0.64,1) 0.6s both; }
        @keyframes hmEnter {
            from { opacity: 0; transform: translate(0, 40px) rotate(var(--rot)) scale(0.85); }
            to   { opacity: 1; transform: translate(var(--px), var(--py)) rotate(var(--rot)) scale(1); }
        }
        .hm-cell:hover { transform: translate(var(--px), var(--py)) rotate(0deg) scale(1.06) !important; }
        @media (prefers-reduced-motion: reduce) {
            .hm-cell { animation: none !important; }
        }

        /* Decorative shapes */
        .hm-decor {
            position: absolute;
            pointer-events: none;
            z-index: 2;
        }
        .hm-decor-1 {
            top: 15%; left: 32%;
            width: 22px; height: 22px;
            border-radius: 50%;
            background: linear-gradient(135deg, #FF6B35, #FFB800);
            box-shadow: 0 6px 18px rgba(255,107,53,0.4);
            animation: hmDot 4s ease-in-out infinite;
        }
        .hm-decor-2 {
            bottom: 24%; right: 30%;
            width: 30px; height: 30px;
            border-radius: 9px;
            background: linear-gradient(135deg, #00B4D8, #0077B6);
            transform: rotate(15deg);
            box-shadow: 0 6px 18px rgba(0,180,216,0.4);
            animation: hmSquare 5s ease-in-out infinite;
        }
        @keyframes hmDot { 0%,100% { transform: scale(1); } 50% { transform: scale(1.3); } }
        @keyframes hmSquare { 0%,100% { transform: rotate(15deg); } 50% { transform: rotate(-25deg); } }

        /* Organic blob shapes — colorful 2026 mesh accents */
        .hm-blob {
            position: absolute;
            pointer-events: none;
            filter: blur(40px);
            opacity: 0.55;
            z-index: 0;
        }
        .hm-blob-1 {
            top: 18%; left: 28%;
            width: 280px; height: 280px;
            background: radial-gradient(circle, #00B4D8 0%, transparent 70%);
            animation: hmBlobDrift1 14s ease-in-out infinite;
        }
        .hm-blob-2 {
            bottom: 12%; right: 24%;
            width: 320px; height: 320px;
            background: radial-gradient(circle, #FF6B35 0%, transparent 70%);
            animation: hmBlobDrift2 18s ease-in-out infinite;
        }
        @keyframes hmBlobDrift1 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33%      { transform: translate(40px, -30px) scale(1.1); }
            66%      { transform: translate(-30px, 20px) scale(0.95); }
        }
        @keyframes hmBlobDrift2 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33%      { transform: translate(-40px, 30px) scale(0.9); }
            66%      { transform: translate(30px, -20px) scale(1.15); }
        }

        /* Floating glass card with title */
        .hero-card-wrap {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            z-index: 10;
            pointer-events: none;
        }
        .hero-card {
            background: rgba(255,255,255,0.78);
            backdrop-filter: blur(28px) saturate(180%);
            -webkit-backdrop-filter: blur(28px) saturate(180%);
            border: 1px solid rgba(255,255,255,0.6);
            border-radius: 28px;
            padding: 38px 42px 34px;
            max-width: 500px;
            width: 100%;
            text-align: center;
            box-shadow:
                0 30px 80px rgba(10,25,41,0.18),
                0 0 0 1px rgba(255,255,255,0.4) inset,
                0 -1px 0 rgba(255,255,255,0.5) inset;
            pointer-events: auto;
            animation: heroCardIn 1s cubic-bezier(0.34,1.56,0.64,1) 0.4s both;
            position: relative;
        }
        .hero-card::before {
            content:''; position: absolute; inset: 0;
            border-radius: 32px;
            background: linear-gradient(135deg, rgba(255,255,255,0.5), transparent 50%);
            pointer-events: none;
        }
        .hero-card > * { position: relative; z-index: 1; }
        @keyframes heroCardIn {
            from { opacity: 0; transform: translateY(30px) scale(0.95); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }
        .hero-card .hero-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(0,180,216,0.08);
            border: 1px solid rgba(0,180,216,0.25);
            color: var(--primary);
            padding: 7px 18px;
            backdrop-filter: none;
            margin-bottom: 20px;
            font-family: 'Manrope', sans-serif;
            font-size: 0.7rem;
            letter-spacing: 1.8px;
            font-weight: 700;
            text-transform: uppercase;
            border-radius: 50px;
        }
        /* Hero brand mark — logo + school name + tagline */
        .hero-brand {
            display: inline-flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 22px;
            padding: 10px 18px 10px 14px;
            background: linear-gradient(135deg, rgba(0,180,216,0.06), rgba(0,119,182,0.04));
            border: 1px solid rgba(0,180,216,0.18);
            border-radius: 60px;
            text-align: left;
        }
        .hero-brand-logo {
            height: 52px;
            width: auto;
            flex-shrink: 0;
            filter: drop-shadow(0 4px 8px rgba(0,100,216,0.15));
        }
        .hero-brand-text { display: flex; flex-direction: column; gap: 2px; }
        .hero-brand-name {
            font-family: 'Quicksand', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark);
            line-height: 1.1;
            letter-spacing: -0.3px;
        }
        .hero-brand-tagline {
            font-family: 'Manrope', sans-serif;
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--primary);
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        @media (max-width: 768px) {
            .hero-brand { padding: 8px 14px 8px 10px; gap: 12px; margin-bottom: 16px; border-radius: 50px; }
            .hero-brand-logo { height: 40px; }
            .hero-brand-name { font-size: 1.05rem; }
            .hero-brand-tagline { font-size: 0.6rem; letter-spacing: 0.6px; }
        }
        .hero-card h1 {
            font-family: 'Quicksand', sans-serif !important;
            color: var(--dark) !important;
            text-shadow: none !important;
            font-size: clamp(1.8rem, 3.8vw, 2.8rem) !important;
            line-height: 1.15 !important;
            margin: 0 0 14px !important;
            letter-spacing: -0.3px !important;
            font-weight: 700 !important;
            text-align: center !important;
        }
        .hero-card h1 strong, .hero-card h1 span { color: var(--accent) !important; }
        .hero-card p {
            color: var(--text-light) !important;
            text-shadow: none !important;
            font-size: 1rem !important;
            line-height: 1.55 !important;
            max-width: 460px !important;
            margin: 0 auto 26px !important;
            text-align: center !important;
            font-family: 'Quicksand', sans-serif !important;
        }
        .hero-card .hero-buttons {
            justify-content: center !important;
            display: flex !important;
            gap: 12px !important;
            flex-wrap: wrap !important;
        }
        /* Light-context phone button — hero card has white bg, so override the dark-context btn-white */
        .hero-card .btn-white {
            background: #fff !important;
            color: var(--primary) !important;
            border: 2px solid var(--primary) !important;
            backdrop-filter: none !important;
            font-weight: 700 !important;
        }
        .hero-card .btn-white:hover {
            background: var(--primary) !important;
            color: #fff !important;
            border-color: var(--primary) !important;
        }
        .hero-card .btn-white i { color: inherit !important; }
        @media (max-width: 768px) {
            section.hero { min-height: 85vh !important; margin-top: 60px !important; }
            .hero-mosaic {
                grid-template-columns: repeat(4, 1fr);
                grid-template-rows: repeat(6, 1fr);
                gap: 4px; padding: 4px;
            }
            .hm-cell-1 { grid-column: 1 / 3; grid-row: 1 / 3; }
            .hm-cell-2 { grid-column: 3 / 5; grid-row: 1 / 2; }
            .hm-cell-3 { grid-column: 3 / 5; grid-row: 2 / 3; }
            .hm-cell-4 { grid-column: 1 / 3; grid-row: 3 / 4; }
            .hm-cell-5 { grid-column: 3 / 5; grid-row: 3 / 4; }
            .hm-cell-6 { grid-column: 1 / 5; grid-row: 4 / 7; }
            .hero-card { padding: 28px 24px 24px; max-width: calc(100% - 30px); }
            .hero-card h1 { font-size: 1.4rem !important; }
            .hero-card p { font-size: 0.88rem !important; margin-bottom: 18px !important; }
            .hero-card .hero-badge { font-size: 0.6rem; padding: 5px 12px; margin-bottom: 14px; }
        }

        .sound-toggle {
            position: absolute;
            bottom: 30px;
            right: 30px;
            z-index: 10;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.25);
            color: var(--white);
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .sound-toggle:hover {
            background: rgba(255,255,255,0.3);
        }

        .sound-toggle.muted i::before {
            content: "\f6a9";
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: var(--white);
            max-width: 700px;
            padding: 0 30px;
            text-align: center;
            margin: 0 auto;
        }

        @media (prefers-reduced-motion: reduce) {
            .reveal, .reveal-left, .reveal-right { opacity:1; transform:none; transition:none; }
            .hero-badge, .hero-content h1, .hero-content p, .hero-buttons { animation:none; }
        }

        /* Image reveal curtain */
        .img-reveal {
            position: relative;
            overflow: hidden;
        }
        .img-reveal::after {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--primary);
            transform: scaleX(1);
            transform-origin: right;
            transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
            z-index: 2;
        }
        .img-reveal.revealed::after {
            transform: scaleX(0);
        }
        .img-reveal img {
            transform: scale(1.15);
            transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
        }
        .img-reveal.revealed img {
            transform: scale(1);
        }

        /* Alternate curtain colors */
        .img-reveal-gold::after { background: var(--gold); }
        .img-reveal-dark::after { background: var(--dark); }

        /* Typing cursor */
        .typing-cursor {
            color: var(--gold);
            animation: blink 0.7s infinite;
            font-weight: 300;
        }
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        /* Parallax images */
        .parallax-img {
            will-change: transform;
            transition: transform 0.1s linear;
        }

        @keyframes heroFadeUp {
            from { opacity:0; transform:translateY(30px); }
            to { opacity:1; transform:translateY(0); }
        }
        .hero-badge { animation: heroFadeUp 0.8s ease 0.2s both; }
        .hero-content h1 { animation: heroFadeUp 0.8s ease 0.4s both; }
        .hero-content p { animation: heroFadeUp 0.8s ease 0.6s both; }
        .hero-buttons { animation: heroFadeUp 0.8s ease 0.8s both; }

        .hero-badge {
            display: inline-block;
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255,255,255,0.2);
            padding: 8px 22px;
            border-radius: 50px;
            font-family: 'Quicksand', sans-serif;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-bottom: 25px;
            color: #fff;
        }

        .hero-content h1 {
            font-family: 'Quicksand', sans-serif;
            font-size: clamp(2.2rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            letter-spacing: -0.02em;
            text-shadow: 0 2px 8px rgba(0,0,0,0.4), 0 0 30px rgba(0,0,0,0.15);
        }

        .hero-content h1 strong {
            font-weight: 700;
        }

        .hero-content h1 span {
            color: var(--accent);
            font-style: normal;
            font-weight: 700;
        }

        .hero-content p {
            font-family: 'Quicksand', sans-serif;
            font-size: 1.1rem;
            font-weight: 400;
            margin-bottom: 35px;
            color: rgba(255,255,255,0.9);
            line-height: 1.6;
            max-width: 550px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 0 1px 6px rgba(0,0,0,0.25);
        }

        /* Hero text balance — only paragraph */
        #hero > .hero-content > p {
            font-size: 1.1rem !important;
            line-height: 1.6 !important;
            font-weight: 400 !important;
        }

        .hero-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 36px;
            border-radius: 50px;
            min-height: 52px;
            font-family: 'Manrope', sans-serif;
            font-weight: 600;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s;
            border: 2px solid transparent;
            cursor: pointer;
        }

        .btn-primary {
            background: var(--primary);
            color: #fff;
            border-color: transparent;
            box-shadow: 0 4px 20px rgba(121,147,128,0.3);
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            border-color: transparent;
            transform: scale(1.03);
            box-shadow: 0 8px 25px rgba(121,147,128,0.4);
        }

        .btn-primary:active, .btn-blue:active, .btn-white:active {
            transform: scale(0.97);
            transition: transform 0.1s ease;
        }

        .btn-white {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            color: var(--white);
            border-color: rgba(255,255,255,0.3);
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
        }

        .btn-white:hover {
            background: rgba(255,255,255,0.95);
            color: var(--eco-dark);
            border-color: var(--white);
        }

        .btn-blue {
            background: var(--accent);
            color: #fff;
            border-color: transparent;
            box-shadow: 0 4px 15px rgba(217,138,108,0.3);
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
        }

        .btn-blue:hover {
            background: var(--accent-dark);
            border-color: transparent;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(217,138,108,0.4);
        }


        /* ========== SECTION DEFAULTS ========== */
        section { padding: 100px 0; }



        /* Alternating section backgrounds for visual rhythm */
        section.sec-warm { background: #ffffff; }
        section.sec-cool { background: var(--eco-pale); }

        /* ========== WAVY SECTION DIVIDERS ========== */
        .wave-divider {
            position: relative;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            margin: 0;
            padding: 0;
        }
        .wave-divider svg {
            display: block;
            width: 100%;
            height: 40px;
        }
        .wave-divider.wave-flip svg {
            transform: scaleY(-1);
        }
        @media (max-width: 480px) {
            .wave-divider svg { height: 25px; }
        }

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

        .section-header.center { text-align: center; }

        .section-badge {
            display: inline-block;
            font-family: 'Quicksand', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 18px;
            background: var(--eco-pale);
            padding: 7px 18px;
            border-radius: 50px;
        }

        .section-header h2 {
            font-family: 'Quicksand', sans-serif;
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 16px;
            letter-spacing: -0.01em;
            line-height: 1.2;
        }

        .section-header p {
            font-family: 'Quicksand', sans-serif;
            font-size: 1.05rem;
            color: var(--text-light);
            max-width: 580px;
            line-height: 1.7;
            font-weight: 500;
        }

        .section-header.center p {
            margin: 0 auto;
        }

        .section-divider {
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 3px;
            margin: 18px 0;
        }

        .section-header.center .section-divider {
            margin: 20px auto;
        }

        /* ========== ABOUT (BENTO) ========== */
        .about { background: var(--white); }

        /* Brand mark — absolute, sits inside the image's bottom-right corner */
        .about-logo-mark {
            position: absolute;
            bottom: 20px;
            right: 20px;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 12px 34px rgba(0,100,216,0.22), 0 0 0 6px rgba(0,180,216,0.10);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: aboutLogoFloat 4.5s ease-in-out infinite;
            overflow: hidden;
            z-index: 3;
        }
        .about-logo-mark::before {
            /* soft outer glow pulse */
            content: '';
            position: absolute;
            inset: -6px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0,180,216,0.35) 0%, rgba(0,180,216,0) 70%);
            animation: aboutLogoPulse 3s ease-in-out infinite;
            z-index: 0;
        }
        .about-logo-mark::after {
            /* shine sweep */
            content: '';
            position: absolute;
            top: -120%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.55) 50%, transparent 60%);
            transform: translateX(-100%);
            animation: aboutLogoShine 5s ease-in-out infinite;
            pointer-events: none;
            z-index: 2;
        }
        .about-logo-mark img {
            position: relative;
            z-index: 1;
            width: 70%;
            height: 70%;
            object-fit: contain;
        }
        @keyframes aboutLogoFloat {
            0%, 100% { transform: translateY(0); }
            50%      { transform: translateY(-8px); }
        }
        @keyframes aboutLogoPulse {
            0%, 100% { opacity: 0.55; transform: scale(1); }
            50%      { opacity: 0.95; transform: scale(1.08); }
        }
        @keyframes aboutLogoShine {
            0%, 70%, 100% { transform: translateX(-100%); }
            85%           { transform: translateX(100%); }
        }
        .about-years-card {
            position: absolute;
            bottom: -14px;
            left: -14px;
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 0;
            background: var(--primary);
            color: #fff;
            padding: 8px 8px;
            border-radius: 14px;
            box-shadow: 0 6px 20px rgba(45,90,39,0.3);
            cursor: pointer;
            transition: transform 0.3s;
            line-height: 1;
            text-align: center;
        }
        .about-years-card:hover { transform: scale(1.05); }
        .about-years-card .ay-num {
            font-family: 'Quicksand', sans-serif;
            font-size: 1.3rem;
            font-weight: 800;
            line-height: 1;
        }
        .about-years-card .ay-lbl {
            font-family: 'Manrope', sans-serif;
            font-size: 0.6rem;
            font-weight: 700;
            opacity: 0.95;
            margin-top: 4px;
            letter-spacing: 0.8px;
            text-transform: uppercase;
        }
        @media (max-width: 768px) {
            .about-logo-mark {
                width: 110px;
                height: 110px;
                bottom: -125px;
                right: 12px;
            }
            .about-years-card {
                bottom: -14px;
                left: 12px;
                right: auto;
                padding: 14px 20px;
            }
            .about-years-card .ay-num { font-size: 1.7rem; }
        }
        @media (prefers-reduced-motion: reduce) {
            .about-logo-mark, .about-logo-mark::before, .about-logo-mark::after { animation: none; }
        }


        .bento-about {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: auto auto;
            gap: 16px;
        }

        .bento-cell {
            border-radius: 20px;
            overflow: hidden;
            padding: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .bento-cell:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.08);
        }

        .bento-about-main {
            grid-column: 1 / 3;
            grid-row: 1 / 3;
            background: var(--dark);
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            position: relative;
            min-height: 420px;
            padding: 0;
        }

        .bento-about-main img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.45;
        }

        .bento-about-main-content {
            position: relative;
            z-index: 2;
            padding: 40px;
        }

        .about .section-header h2 { color: var(--dark); }
        .about .section-header p { color: var(--text-light); }
        .about .section-badge { background: rgba(0,180,216,0.1); color: var(--primary); }
        @media (max-width:768px) {
            .about-split { grid-template-columns: 1fr !important; gap: 30px !important; }
            /* Keep both floating badges anchored to the image even on mobile */
            .about-split + div { grid-template-columns: repeat(2,1fr) !important; gap: 12px !important; }
            #philosophyPanel .phi-letter { padding: 24px 20px !important; }
            .docs-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
            .docs-grid > div { display: flex !important; flex-direction: row !important; border-radius: 14px !important; }
            .docs-grid .doc-preview {
                height: 150px !important; width: 110px !important;
                flex-shrink: 0 !important; overflow: hidden !important; position: relative !important;
                border-bottom: none !important; border-right: 1px solid rgba(0,0,0,0.06) !important;
            }
            .docs-grid .doc-iframe {
                position: absolute !important; top: 0 !important; left: 0 !important;
                width: 800px !important; height: 1100px !important;
                transform: scale(0.1375) !important; transform-origin: top left !important;
                pointer-events: none !important; border: none !important;
            }
            .docs-grid > div > div:last-child { padding: 14px 16px !important; flex: 1; }
            .docs-grid h3 { font-size: 0.95rem !important; }
            .docs-grid p { font-size: 0.78rem !important; margin-bottom: 10px !important; }
            .docs-grid a { padding: 7px 14px !important; font-size: 0.72rem !important; }
            .phi-warm-grid { grid-template-columns: 1fr !important; }
            .espa-grid { grid-template-columns: 1fr !important; text-align:center; }
            .espa-grid p { max-width:100% !important; }
            .espa-details-grid { grid-template-columns: 1fr !important; }
        }

        .bento-about-main .section-badge {
            color: var(--accent);
        }

        .bento-about-main h2 {
            font-family: 'Quicksand', sans-serif;
            font-size: 2.6rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 15px;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .bento-about-main p {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            color: rgba(255,255,255,0.85);
            line-height: 1.9;
            margin-bottom: 12px;
            font-weight: 400;
        }

        .bento-stat {
            background: var(--white);
            border: 1px solid var(--border);
            box-shadow: 0 2px 12px rgba(0,0,0,0.04);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .bento-stat-number {
            font-family: 'Quicksand', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent);
            line-height: 1;
        }

        .bento-stat-label {
            font-family: 'Quicksand', sans-serif;
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 8px;
        }

        .bento-text {
            background: var(--primary);
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .bento-text p {
            font-size: 0.95rem;
            line-height: 1.8;
            color: rgba(255,255,255,0.9);
        }

        .bento-cta {
            background: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .bento-cta span {
            font-family: 'Manrope', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: var(--dark);
        }

        .bento-cta i {
            margin-left: 10px;
            color: var(--dark);
        }

        @media (max-width: 768px) {
            .bento-about {
                grid-template-columns: 1fr 1fr;
            }
            .bento-about-main {
                grid-column: 1 / -1;
                min-height: 300px;
            }
            .bento-about-main h2 { font-size: 1.7rem; }
        }

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

        /* ========== GARDEN / CAMPUS ========== */
        .campus {
            background: #FFF8F0;
            overflow: hidden;
        }

        .campus-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

        .campus-image {
            position: relative;
            min-height: 500px;
        }

        .campus-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            inset: 0;
        }

        .campus-content {
            background: var(--white);
            padding: 60px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .campus-content .campus-badge {
            display: inline-block;
            font-family: 'Manrope', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #2e7d32;
            background: rgba(46,125,50,0.08);
            padding: 5px 14px;
            border-radius: 50px;
            margin-bottom: 18px;
            width: fit-content;
        }

        .campus-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: var(--dark);
            margin-bottom: 10px;
            line-height: 1.15;
            letter-spacing: -0.02em;
        }

        .campus-content h2 span {
            color: #2e7d32;
        }

        .campus-divider {
            width: 50px;
            height: 3px;
            background: #2e7d32;
            margin: 15px 0 20px;
        }

        .campus-content p {
            font-size: 1rem;
            color: var(--text);
            margin-bottom: 15px;
            line-height: 1.8;
        }

        .campus-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-top: 20px;
        }

        .campus-feat {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Manrope', sans-serif;
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--dark);
        }

        .campus-feat i {
            color: #2e7d32;
            font-size: 0.85rem;
        }

        @media (max-width: 768px) {
            .campus-grid { grid-template-columns: 1fr; }
            .campus-image { min-height: 300px; }
            .campus-content { padding: 35px 25px; }
            .campus-content h2 { font-size: 1.7rem; }
            .campus-features { grid-template-columns: 1fr; }
        }

        @media (max-width: 480px) {
            .campus-image { min-height: 220px; }
            .campus-content { padding: 25px 20px; }
        }

        /* ========== FACILITIES — Tabbed Masonry Gallery ========== */
        .facilities {
            background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
            padding: 90px 0 60px;
            overflow: hidden;
        }
        .facilities .container { max-width: 1680px; padding: 0 24px; }
        .facilities .section-header { max-width: 800px; margin: 0 auto 40px; }

        /* Stats strip — quick overview pills */
        .fac-stats {
            display: flex; flex-wrap: wrap; justify-content: center;
            gap: 12px; max-width: 900px; margin: 0 auto 40px;
        }
        .fac-stat {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 9px 18px; border-radius: 50px;
            background: rgba(0,0,0,0.04); color: var(--dark);
            font-family: 'Quicksand', sans-serif; font-size: 0.85rem; font-weight: 600;
            border: 1px solid rgba(0,0,0,0.06);
        }
        .fac-stat i { color: var(--primary); font-size: 0.78rem; }

        /* Sticky tabs */
        .fac-tabs {
            position: sticky; top: 0; z-index: 10;
            display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
            padding: 16px 0; margin-bottom: 30px;
            background: rgba(255,255,255,0.85);
            backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        .fac-tab {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 10px 20px; border-radius: 50px;
            background: transparent; color: var(--text);
            font-family: 'Quicksand', sans-serif; font-size: 0.88rem; font-weight: 600;
            border: 1.5px solid rgba(0,0,0,0.08); cursor: pointer;
            transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
            white-space: nowrap;
        }
        .fac-tab i { font-size: 0.82rem; opacity: 0.7; transition: opacity 0.3s; }
        .fac-tab:hover {
            border-color: var(--cat, var(--primary));
            color: var(--cat, var(--primary));
            transform: translateY(-1px);
        }
        .fac-tab:hover i { opacity: 1; color: var(--cat, var(--primary)); }
        .fac-tab.active {
            background: var(--cat, var(--dark));
            color: #fff; border-color: var(--cat, var(--dark));
            box-shadow: 0 6px 20px rgba(0,0,0,0.12);
        }
        .fac-tab.active i { opacity: 1; color: #fff; }

        /* Masonry grid */
        .fac-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 220px;
            grid-auto-flow: row dense;
            gap: 14px;
        }
        .fac-tile, .fac-mini-item {
            position: relative;
            border-radius: 18px;
            overflow: hidden;
            cursor: pointer;
            background: #f0f2f5;
            box-shadow: 0 4px 18px rgba(10,25,41,0.08);
            transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease, opacity 0.35s ease;
            isolation: isolate;
        }
        .fac-tile:hover, .fac-mini-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 44px rgba(10,25,41,0.18);
        }
        .fac-tile img, .fac-mini-item img {
            position: absolute; inset: 0;
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
        }
        .fac-tile:hover img, .fac-mini-item:hover img { transform: scale(1.06); }

        /* Always-visible info strip at bottom */
        .fac-tile-info {
            position: absolute; left: 0; right: 0; bottom: 0;
            padding: 16px 18px 14px;
            background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
            color: #fff; z-index: 2;
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
        }
        .fac-tile:hover .fac-tile-info { transform: translateY(0); }
        .fac-tile-cat {
            display: inline-block;
            font-family: 'Manrope', sans-serif; font-size: 0.66rem; font-weight: 700;
            letter-spacing: 1.2px; text-transform: uppercase;
            color: var(--cat, var(--accent));
            background: rgba(255,255,255,0.95);
            padding: 3px 10px; border-radius: 50px;
            margin-bottom: 8px;
        }
        .fac-tile-info h4 {
            font-family: 'Quicksand', sans-serif; font-size: 1rem; font-weight: 700;
            color: #fff; line-height: 1.2; letter-spacing: -0.2px;
            text-shadow: 0 2px 8px rgba(0,0,0,0.4);
        }
        /* Permanent corner badge — color dot per category */
        .fac-tile::before {
            content: ''; position: absolute; top: 14px; left: 14px;
            width: 10px; height: 10px; border-radius: 50%;
            background: var(--cat, var(--accent));
            box-shadow: 0 0 0 3px rgba(255,255,255,0.85), 0 4px 10px rgba(0,0,0,0.2);
            z-index: 2;
            transition: transform 0.4s ease;
        }
        .fac-tile:hover::before { transform: scale(1.3); }

        /* Filter-out animation */
        .fac-tile.filtered-out, .fac-mini-item.filtered-out {
            opacity: 0; transform: scale(0.92); pointer-events: none;
            transition: opacity 0.25s ease, transform 0.25s ease;
        }
        .fac-tile.filtered-hidden, .fac-mini-item.filtered-hidden { display: none; }

        /* Tile size variants for masonry rhythm */
        .fac-tile.t-md { grid-column: span 1; grid-row: span 1; }
        .fac-tile.t-tall { grid-column: span 1; grid-row: span 2; }
        .fac-tile.t-wide { grid-column: span 2; grid-row: span 1; }
        .fac-tile.t-big { grid-column: span 2; grid-row: span 2; }

        /* Album-count badge (existing JS adds this, restyle for new look) */
        .fac-tile [data-has-album="true"]::after,
        .fac-tile .album-badge {
            position: absolute; top: 12px; right: 12px;
            background: rgba(0,0,0,0.7); color: #fff;
            padding: 4px 10px; border-radius: 50px;
            font-family: 'Manrope', sans-serif; font-size: 0.7rem; font-weight: 700;
            backdrop-filter: blur(8px); z-index: 2;
            display: inline-flex; align-items: center; gap: 5px;
        }

        /* Quote — keep modern */
        .fac-quote-fw {
            position: relative; overflow: hidden;
            margin-top: 60px;
            border-radius: 28px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .fac-grid { grid-template-columns: repeat(3, 1fr); }
            .fac-tile.t-big { grid-column: span 2; grid-row: span 2; }
            .fac-tile.t-wide { grid-column: span 2; }
        }
        @media (max-width: 768px) {
            .facilities { padding: 60px 0 40px; }
            .facilities .container { padding: 0 14px; }
            .fac-stats { gap: 8px; margin-bottom: 28px; }
            .fac-stat { padding: 7px 14px; font-size: 0.78rem; }
            .fac-tabs { gap: 6px; padding: 12px 0; margin-bottom: 22px; overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; padding-left: 14px; padding-right: 14px; }
            .fac-tabs::-webkit-scrollbar { display: none; }
            .fac-tab { padding: 8px 16px; font-size: 0.82rem; flex-shrink: 0; }
            .fac-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; gap: 10px; }
            .fac-tile.t-big { grid-column: span 2; grid-row: span 2; }
            .fac-tile.t-wide { grid-column: span 2; }
            .fac-tile.t-tall { grid-row: span 2; }
            .fac-tile-info { display: none; }
            .fac-tile .album-badge,
            .fac-tile [data-has-album="true"]::after,
            .fac-mini-item .album-badge { display: none !important; }
            .fac-quote-fw { margin-top: 40px; border-radius: 20px; }
        }



        /* ========== PAROXES — Modern 2026 Mixed Bento ========== */
        .paroxes {
            background: linear-gradient(180deg, #f7f8fc 0%, #fff 100%);
            overflow: hidden;
            padding: 90px 0 100px;
        }
        .paroxes .container { max-width: 1680px; padding: 0 24px; }
        .paroxes .section-header { max-width: 800px; margin: 0 auto 50px; }

        .paroxes-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-auto-rows: 230px;
            grid-auto-flow: row dense;
            gap: 16px;
        }

        /* ---------- Sizes ---------- */
        .px-card.s-std    { grid-column: span 4; grid-row: span 1; }
        .px-card.s-wide   { grid-column: span 6; grid-row: span 1; }
        .px-card.s-tall   { grid-column: span 4; grid-row: span 2; }
        .px-card.s-feat   { grid-column: span 8; grid-row: span 2; }
        .px-card.s-banner { grid-column: span 12; grid-row: span 1; }

        /* ---------- Base ---------- */
        .px-card {
            position: relative;
            border-radius: 22px;
            overflow: hidden;
            text-decoration: none;
            color: #fff;
            background: var(--card-bg, #f0f2f5);
            box-shadow: 0 8px 28px rgba(10,25,41,0.08);
            transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease;
            isolation: isolate;
            display: flex; flex-direction: column;
        }
        .px-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(10,25,41,0.18); }
        .px-card::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
            background: var(--cat, var(--accent));
            z-index: 4; opacity: 0; transform: translateY(-4px);
            transition: opacity 0.3s ease, transform 0.4s ease;
        }
        .px-card:hover::before { opacity: 1; transform: translateY(0); }

        /* ---------- Photo card ---------- */
        .px-card.t-photo { color: #fff; cursor: pointer; }
        .px-card.t-photo .px-img { position: absolute; inset: 0; z-index: 0; }
        /* Let clicks pass through overlay and body to .px-img (which has the lightbox click handler) */
        .px-card.t-photo .px-overlay,
        .px-card.t-photo .px-body { pointer-events: none; }
        .px-card.t-photo .px-body a,
        .px-card.t-photo .px-body button { pointer-events: auto; }
        .px-card.t-photo .px-img img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.9s cubic-bezier(0.22,1,0.36,1);
        }
        .px-card.t-photo:hover .px-img img { transform: scale(1.06); }
        .px-card.t-photo .px-overlay {
            position: absolute; inset: 0; z-index: 1;
            background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 50%, transparent 100%);
            transition: background 0.4s ease;
        }
        .px-card.t-photo:hover .px-overlay {
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0.1) 100%);
        }
        .px-card.t-photo .px-body {
            position: relative; z-index: 2; margin-top: auto;
            padding: 22px 24px;
        }

        /* ---------- Color-block (stat / banner) ---------- */
        .px-card.t-block {
            background: linear-gradient(135deg, var(--cat, var(--dark)) 0%, color-mix(in srgb, var(--cat, var(--dark)) 65%, #000) 100%);
            color: #fff;
        }
        .px-card.t-block .px-body { padding: 26px 28px; flex: 1; display: flex; flex-direction: column; }
        .px-stat-num {
            font-family: 'Quicksand', sans-serif; font-size: 4.4rem; font-weight: 800;
            line-height: 1; margin: auto 0 14px; letter-spacing: -2.5px;
        }
        .px-stat-label {
            font-family: 'Quicksand', sans-serif; font-size: 1rem; font-weight: 700;
            letter-spacing: -0.2px;
        }
        .px-stat-icon { font-size: 1.4rem; opacity: 0.4; align-self: flex-start; }

        /* ---------- Icon-only card ---------- */
        .px-card.t-icon {
            background: #fff;
            color: var(--dark);
            border: 1px solid rgba(0,0,0,0.05);
            box-shadow: 0 4px 18px rgba(10,25,41,0.05);
        }
        .px-card.t-icon .px-body { padding: 28px 26px; flex: 1; display: flex; flex-direction: column; }
        .px-icon-big {
            width: 56px; height: 56px; border-radius: 16px;
            background: var(--cat-soft, rgba(0,180,216,0.1));
            color: var(--cat, var(--primary));
            display: flex; align-items: center; justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 16px;
        }

        /* ---------- Common typography ---------- */
        .px-cat {
            display: inline-block;
            font-family: 'Manrope', sans-serif; font-size: 0.66rem; font-weight: 700;
            letter-spacing: 1.5px; text-transform: uppercase;
            background: rgba(255,255,255,0.95);
            color: var(--cat, var(--accent));
            padding: 4px 12px; border-radius: 50px;
            margin-bottom: 10px;
            box-shadow: 0 4px 14px rgba(0,0,0,0.18);
        }
        .px-card.t-photo h3 {
            font-family: 'Quicksand', sans-serif; font-size: 1.55rem; font-weight: 700;
            color: #fff; line-height: 1.15; margin-bottom: 6px;
            letter-spacing: -0.4px; text-shadow: 0 2px 12px rgba(0,0,0,0.4);
        }
        .px-card.s-feat.t-photo h3 { font-size: 2.3rem; letter-spacing: -0.8px; }
        .px-card.t-photo p {
            font-family: 'Quicksand', sans-serif; font-size: 0.9rem; font-weight: 500;
            color: rgba(255,255,255,0.92); line-height: 1.5;
            margin-top: 4px;
        }
        .px-card.t-icon h3 {
            font-family: 'Quicksand', sans-serif; font-size: 1.2rem; font-weight: 700;
            color: var(--dark); margin-bottom: 6px; letter-spacing: -0.2px;
        }
        .px-card.t-icon p {
            font-family: 'Quicksand', sans-serif; font-size: 0.88rem;
            color: var(--text-light); line-height: 1.5; font-weight: 500;
        }
        .px-card.t-block p {
            font-family: 'Quicksand', sans-serif; font-size: 0.88rem;
            color: rgba(255,255,255,0.85); line-height: 1.5; font-weight: 500;
            margin-top: 8px;
        }

        /* Inline arrow */
        .px-arrow {
            display: inline-flex; align-items: center; gap: 6px;
            font-family: 'Manrope', sans-serif; font-size: 0.78rem; font-weight: 700;
            color: #fff; margin-top: 12px;
            text-decoration: none;
            opacity: 0.85; transition: opacity 0.3s, gap 0.3s;
        }
        .px-card:hover .px-arrow { opacity: 1; gap: 10px; }
        .px-arrow i { font-size: 0.72rem; }
        .px-card.t-icon .px-arrow { color: var(--cat, var(--primary)); }

        /* CTA banner */
        .px-card.s-banner.t-cta {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 70%, #1a1a2e 100%);
            color: #fff;
        }
        .px-card.s-banner.t-cta::after {
            content: ''; position: absolute; top: 0; right: -50px; width: 300px; height: 100%;
            background: radial-gradient(circle at center, rgba(123,31,162,0.4), transparent 70%);
            pointer-events: none;
        }
        .px-card.s-banner .px-body {
            display: flex; align-items: center; justify-content: space-between;
            padding: 28px 36px; gap: 30px; flex-wrap: wrap;
            position: relative; z-index: 2;
        }
        .px-card.s-banner h3 {
            font-family: 'Quicksand', sans-serif; font-size: 1.7rem; font-weight: 700;
            color: #fff; letter-spacing: -0.4px; line-height: 1.15;
        }
        .px-card.s-banner .px-cta-text { flex: 1; min-width: 280px; }
        .px-card.s-banner .px-cta-text p {
            font-family: 'Quicksand', sans-serif; font-size: 0.95rem; font-weight: 500;
            color: rgba(255,255,255,0.75); line-height: 1.5; margin-top: 6px;
        }
        .px-card.s-banner .px-cta-btn {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 14px 28px; border-radius: 50px;
            background: var(--accent); color: #fff;
            font-family: 'Quicksand', sans-serif; font-size: 0.92rem; font-weight: 700;
            text-decoration: none;
            box-shadow: 0 8px 24px rgba(226,114,91,0.4);
            transition: transform 0.3s, box-shadow 0.3s;
            white-space: nowrap;
        }
        .px-card.s-banner:hover .px-cta-btn {
            transform: translateX(4px);
            box-shadow: 0 12px 32px rgba(226,114,91,0.55);
        }

        /* Hide legacy YT player container if present */
        #yt-paroxi-player { display: none; }

        /* ---------- Responsive ---------- */
        @media (max-width: 1100px) {
            .paroxes-grid { grid-template-columns: repeat(8, 1fr); grid-auto-rows: 210px; }
            .px-card.s-std    { grid-column: span 4; }
            .px-card.s-wide   { grid-column: span 8; }
            .px-card.s-tall   { grid-column: span 4; grid-row: span 2; }
            .px-card.s-feat   { grid-column: span 8; grid-row: span 2; }
            .px-card.s-banner { grid-column: span 8; }
        }
        @media (max-width: 768px) {
            .paroxes { padding: 60px 0 70px; }
            .paroxes .container { padding: 0 14px; }
            .paroxes-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; gap: 12px; }
            .px-card.s-std,
            .px-card.s-wide,
            .px-card.s-tall,
            .px-card.s-feat,
            .px-card.s-banner { grid-column: span 2; grid-row: span 1; }
            .px-card.s-feat,
            .px-card.s-tall { grid-row: span 2; }
            .px-card.t-photo .px-body { padding: 16px 16px 14px; }
            .px-card.t-photo h3 { font-size: 1.15rem; }
            .px-card.s-feat.t-photo h3 { font-size: 1.5rem; }
            .px-card.t-photo p { font-size: 0.82rem; }
            .px-stat-num { font-size: 3.2rem; }
            .px-card.t-icon .px-body { padding: 20px 18px; }
            .px-icon-big { width: 48px; height: 48px; font-size: 1.25rem; margin-bottom: 12px; }
            .px-card.s-banner .px-body { padding: 22px 22px; gap: 16px; }
            .px-card.s-banner h3 { font-size: 1.25rem; }
            .px-card.s-banner .px-cta-btn { padding: 11px 22px; font-size: 0.85rem; width: 100%; justify-content: center; }
        }

        /* ========== TIMELINE ========== */
        .timeline { background: var(--light); }

        .timeline-grid {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 0;
        }

        .timeline-center {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }

        .timeline-line {
            width: 3px;
            flex: 1;
            background: var(--border);
        }

        .timeline-dot {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--primary);
            border: 4px solid var(--white);
            box-shadow: 0 0 0 3px var(--primary);
            z-index: 1;
            flex-shrink: 0;
        }

        .timeline-dot.gold {
            background: var(--gold);
            box-shadow: 0 0 0 3px var(--gold);
        }

        .timeline-row {
            display: contents;
        }

        .timeline-left,
        .timeline-right {
            padding: 15px 30px;
        }

        .timeline-left {
            text-align: right;
        }

        .timeline-right {
            text-align: left;
        }

        .timeline-empty {
            padding: 15px 30px;
        }

        .timeline-year {
            font-family: 'Manrope', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 8px;
        }

        .timeline-text {
            font-size: 0.95rem;
            color: var(--text);
            line-height: 1.7;
            max-width: 380px;
        }

        .timeline-left .timeline-text {
            margin-left: auto;
        }

        .timeline-right .timeline-text {
            margin-right: auto;
        }

        /* ========== PHILOSOPHY — Modern ========== */
        .philosophy {
            background: var(--dark);
            position: relative;
            overflow: hidden;
        }
        .philosophy::before {
            content: '';
            position: absolute;
            top: -200px; right: -200px;
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(0,180,216,0.08), transparent 70%);
            border-radius: 50%;
        }
        .philosophy::after {
            content: '';
            position: absolute;
            bottom: -150px; left: -150px;
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(255,183,3,0.06), transparent 70%);
            border-radius: 50%;
        }
        .philosophy .section-header h2 { color: #fff; }
        .philosophy .section-header p { color: rgba(255,255,255,0.6); }
        .philosophy .section-badge { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); }
        .philosophy .section-divider { background: linear-gradient(90deg, var(--primary), var(--accent)); }

        .philosophy-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            position: relative;
            z-index: 1;
        }

        .philosophy-card {
            background: rgba(255,255,255,0.04);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px 25px;
            border: 1px solid rgba(255,255,255,0.08);
            transition: all 0.4s;
        }

        .philosophy-card:hover {
            background: rgba(255,255,255,0.08);
            border-color: var(--primary);
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(0,180,216,0.1);
        }

        .philosophy-card .phi-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.2rem;
            margin-bottom: 18px;
        }

        .philosophy-card h4 {
            font-family: 'Quicksand', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
        }

        .philosophy-card p {
            font-family: 'Quicksand', sans-serif;
            font-size: 0.88rem;
            font-weight: 500;
            color: rgba(255,255,255,0.55);
            line-height: 1.7;
        }

        /* ========== STATS ========== */
        .stats-bar {
            background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
            padding: 60px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .stat-item {
            text-align: center;
            color: var(--white);
            position: relative;
        }

        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 10%;
            height: 80%;
            width: 1px;
            background: rgba(255,255,255,0.2);
        }

        .stat-number {
            font-family: 'Manrope', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label {
            font-family: 'Manrope', sans-serif;
            font-size: 0.85rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255,255,255,0.75);
        }

        /* ========== CLASSES — MODERN FULL-WIDTH BENTO ========== */
        .classes {
            background: linear-gradient(180deg, #fafbfc 0%, #f3f5f8 100%);
            padding: 90px 0 100px;
            position: relative;
        }
        .classes::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0,0,0,0.06), transparent);
        }
        .classes .container { max-width: 100%; padding: 0 24px; }
        .classes .section-header { max-width: 800px; margin: 0 auto 50px; }
        .classes .bento-classes-wrap { max-width: 1680px; margin: 0 auto; }
        /* About slideshow — photo crossfade replaces the logo card */
        .about-slideshow {
            position: relative;
            width: 100%;
            max-width: 980px;
            aspect-ratio: 16/9;
            border-radius: 28px;
            overflow: visible;
            margin: 0 auto 60px;
        }
        .about-slideshow > .abs-slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border-radius: 28px;
            opacity: 0;
            transition: opacity 1.2s ease;
            box-shadow: 0 20px 60px rgba(0,0,0,0.12);
        }
        .about-slideshow > .abs-slide.active { opacity: 1; }
        .about-slideshow .abs-years {
            position: absolute !important;
            bottom: -20px !important;
            left: -20px !important;
            z-index: 5;
        }
        @media (max-width: 768px) {
            .about-slideshow { max-width: 100%; aspect-ratio: 4/3; border-radius: 18px; margin-bottom: 40px; }
            .about-slideshow > .abs-slide { border-radius: 18px; }
            .about-slideshow .abs-years { bottom: -16px !important; left: 12px !important; }
        }

        /* About — Logo card (replaces school photo) */
        .about-logo-card {
            position: relative;
            aspect-ratio: 1/1;
            border-radius: 28px;
            overflow: hidden;
            background: linear-gradient(135deg, var(--secondary-pale) 0%, var(--primary-pale) 100%);
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .about-logo-card::before {
            content:''; position: absolute; inset: -40px;
            background:
                radial-gradient(circle at 30% 30%, rgba(0,119,182,0.18), transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(45,90,39,0.15), transparent 50%);
            animation: logoCardGlow 12s ease-in-out infinite;
        }
        @keyframes logoCardGlow {
            0%,100% { transform: rotate(0deg); }
            50%     { transform: rotate(8deg); }
        }
        .about-logo-inner {
            position: relative;
            z-index: 1;
            width: 70%;
            aspect-ratio: 1/1;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 16px 40px rgba(0,100,216,0.15), 0 0 0 1px rgba(255,255,255,0.6) inset;
            animation: logoCardFloat 5s ease-in-out infinite;
        }
        .about-logo-inner img {
            width: 75%;
            height: auto;
            display: block;
        }
        /* Mobile: replace logo with a real school photo to add life */
        @media (max-width: 768px) {
            .about-logo-card {
                aspect-ratio: 4/3 !important;
                background: url('/images/nautilos.jpg') center / cover no-repeat !important;
                box-shadow: 0 16px 40px rgba(0,0,0,0.12);
            }
            .about-logo-card::before { display: none !important; }
            .about-logo-inner { display: none !important; }
        }
        @keyframes logoCardFloat {
            0%,100% { transform: translateY(0); }
            50%     { transform: translateY(-10px); }
        }

        /* BENTO GRID — Τάξεις (full-width modern asymmetric) */
        .bento-classes {
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            grid-auto-rows: 280px;
            grid-auto-flow: row dense;
            gap: 18px;
        }
        .bc-card {
            position: relative;
            border-radius: 22px;
            overflow: hidden;
            text-decoration: none;
            color: #fff;
            box-shadow: 0 10px 32px rgba(10,25,41,0.10);
            transition: transform 0.55s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease;
            background: var(--dark);
            isolation: isolate;
        }
        .bc-card::after {
            content: ''; position: absolute; inset: 0;
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 22px; pointer-events: none; z-index: 3;
        }
        .bc-card:hover { transform: translateY(-10px); box-shadow: 0 30px 70px rgba(10,25,41,0.28); }
        .bc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s cubic-bezier(0.22,1,0.36,1); z-index: 0; }
        .bc-card:hover img { transform: scale(1.08); }
        .bc-overlay {
            position: absolute; inset: 0; z-index: 2;
            background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0.05) 100%);
            padding: 22px 24px;
            display: flex; flex-direction: column; justify-content: flex-end; gap: 10px;
            transition: background 0.4s ease;
        }
        .bc-card::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
            background: var(--bc-color, var(--accent));
            z-index: 2; opacity: 0; transform: translateY(-4px);
            transition: opacity 0.3s ease, transform 0.4s ease;
        }
        .bc-card:hover::before { opacity: 1; transform: translateY(0); }
        .bc-card:hover .bc-overlay { background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.1) 100%); }
        .bc-age {
            display: inline-flex; align-self: flex-start; align-items: center;
            padding: 5px 13px; border-radius: 50px;
            background: var(--bc-color, var(--accent)); color: #fff;
            font-family: 'Manrope', sans-serif; font-size: 0.7rem; font-weight: 700;
            letter-spacing: 0.6px; text-transform: uppercase;
            box-shadow: 0 6px 18px rgba(0,0,0,0.25);
        }
        .bc-card h3 {
            font-family: 'Quicksand', sans-serif; font-size: 1.55rem; font-weight: 700;
            color: #fff; line-height: 1.1; letter-spacing: -0.4px;
            text-shadow: 0 2px 12px rgba(0,0,0,0.4);
        }
        .bc-card p {
            font-family: 'Quicksand', sans-serif; font-size: 0.88rem; color: rgba(255,255,255,0.88);
            line-height: 1.5; margin: 0;
            max-height: 0; opacity: 0; overflow: hidden;
            transition: max-height 0.5s ease, opacity 0.35s ease;
        }
        .bc-card:hover p { max-height: 80px; opacity: 1; }
        .bc-link {
            font-family: 'Manrope', sans-serif; font-size: 0.82rem; font-weight: 700;
            color: #fff; display: inline-flex; align-items: center; gap: 8px; opacity: 0;
            transform: translateY(8px);
            transition: opacity 0.4s ease, transform 0.4s ease;
            padding: 6px 14px; border-radius: 50px;
            background: rgba(255,255,255,0.14); backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.2); align-self: flex-start;
        }
        .bc-card:hover .bc-link { opacity: 1; transform: translateY(0); }
        .bc-link i { transition: transform 0.3s ease; font-size: 0.75rem; }
        .bc-card:hover .bc-link i { transform: translateX(4px); }
        /* Asymmetric tile sizes on 8-col grid */
        .bc-sm      { grid-column: span 2; grid-row: span 1; }
        .bc-md      { grid-column: span 3; grid-row: span 1; }
        .bc-wide    { grid-column: span 4; grid-row: span 1; }
        .bc-tall    { grid-column: span 2; grid-row: span 2; }
        .bc-lg      { grid-column: span 4; grid-row: span 2; }
        .bc-feature { grid-column: span 4; grid-row: span 2; }
        .bc-feature h3 { font-size: 2.4rem; }
        .bc-lg h3 { font-size: 1.9rem; }
        @media (max-width: 1200px) {
            .bento-classes { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 260px; gap: 16px; }
            .bc-sm      { grid-column: span 2; grid-row: span 1; }
            .bc-md      { grid-column: span 3; grid-row: span 1; }
            .bc-wide    { grid-column: span 6; grid-row: span 1; }
            .bc-tall    { grid-column: span 3; grid-row: span 2; }
            .bc-lg      { grid-column: span 3; grid-row: span 2; }
            .bc-feature { grid-column: span 6; grid-row: span 2; }
        }
        @media (max-width: 768px) {
            .classes { padding: 60px 0 70px; }
            .classes .section-header { margin-bottom: 32px; }
            .classes .container { padding: 0 14px; }
            .bento-classes { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; gap: 12px; }
            .bc-sm, .bc-md, .bc-wide, .bc-tall, .bc-lg, .bc-feature { grid-column: span 2; grid-row: span 1; }
            .bc-feature, .bc-tall { grid-row: span 2; }
            .bc-card h3, .bc-feature h3, .bc-lg h3 { font-size: 1.3rem; }
            .bc-card p { font-size: 0.8rem; max-height: 60px; opacity: 1; }
            .bc-link { opacity: 1; transform: none; padding: 5px 12px; font-size: 0.75rem; }
        }

        .classes-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            padding: 0 10px;
        }

        .flip-card {
            perspective: 1200px;
            cursor: pointer;
        }
        .flip-card-inner {
            position: relative;
            width: 100%;
            aspect-ratio: 3/4;
            transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
            transform-style: preserve-3d;
        }
        .flip-card.flipped .flip-card-inner { transform: rotateY(180deg); }
        @media (hover: hover) and (pointer: fine) {
            .flip-card:hover .flip-card-inner { transform: rotateY(180deg); }
            .flip-card:hover .flip-card-front { pointer-events: none; }
            .flip-card:hover .flip-card-back { pointer-events: auto; }
        }

        .flip-card-front, .flip-card-back {
            position: absolute;
            inset: 0;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            border-radius: 20px;
            overflow: hidden;
        }
        .flip-card-front { pointer-events: auto; }
        .flip-card-back { pointer-events: none; }
        .flip-card.flipped .flip-card-front { pointer-events: none; }
        .flip-card.flipped .flip-card-back { pointer-events: auto; }

        /* FRONT */
        .flip-card-front {
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }
        .flip-card-front img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
        }
        @media (hover: hover) and (pointer: fine) {
            .flip-card:hover .flip-card-front img { transform: scale(1.06); }
        }
        .flip-card-front::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
            z-index: 1;
        }
        .flip-card-front-body {
            position: relative;
            z-index: 2;
            padding: 24px 20px;
            color: #fff;
        }
        .flip-card-front-body .age {
            display: inline-block;
            font-family: 'Manrope', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(8px);
            padding: 5px 14px;
            border-radius: 50px;
            margin-bottom: 8px;
        }
        .flip-card-front-body h3 {
            font-family: 'Manrope', sans-serif;
            font-size: 1.3rem;
            font-weight: 800;
            line-height: 1.2;
        }
        .flip-card-hint {
            position: absolute;
            top: 14px;
            right: 14px;
            z-index: 2;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 0.75rem;
            transition: all 0.3s;
        }
        @media (hover: hover) and (pointer: fine) {
            .flip-card:hover .flip-card-hint {
                background: var(--primary);
                transform: rotate(180deg);
            }
        }

        /* BACK */
        .flip-card-back {
            transform: rotateY(180deg);
            background: linear-gradient(135deg, #f8faff 0%, #eef4ff 100%);
            padding: 28px 22px;
            display: flex;
            flex-direction: column;
            box-shadow: 0 8px 30px rgba(0,50,120,0.08);
            text-align: left;
            align-items: flex-start;
        }
        .flip-card-back h3 {
            font-family: 'Manrope', sans-serif;
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 4px;
        }
        .flip-card-back .back-age {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-family: 'Manrope', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            color: #fff;
            background: linear-gradient(135deg, var(--primary), #48CAE4);
            padding: 4px 14px;
            border-radius: 50px;
            margin-bottom: 12px;
            width: fit-content;
        }
        .flip-card-back .back-motto {
            font-family: 'Manrope', sans-serif;
            font-size: 0.82rem;
            font-weight: 500;
            color: var(--primary);
            margin-bottom: 12px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(0,180,216,0.1);
            line-height: 1.5;
        }
        .flip-card-back .back-desc {
            font-size: 0.8rem;
            color: var(--text-light);
            line-height: 1.65;
            margin-bottom: 14px;
        }
        .flip-card-back .back-features {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-bottom: 18px;
        }
        .flip-card-back .back-feat {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'Manrope', sans-serif;
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--dark);
            text-align: left;
        }
        .flip-card-back .back-feat i {
            color: #fff;
            font-size: 0.55rem;
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), #48CAE4);
            flex-shrink: 0;
        }
        .flip-card-back .back-cta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 15px 0;
            width: 100%;
            border-radius: 14px;
            background: linear-gradient(135deg, #E65100, #FF8F00);
            color: #fff;
            font-family: 'Manrope', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 4px 18px rgba(230,81,0,0.3);
            position: relative;
            z-index: 10;
            cursor: pointer;
            margin-top: auto;
        }
        .flip-card-back .back-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(230,81,0,0.4);
            background: linear-gradient(135deg, #D84315, #EF6C00);
        }
        .flip-card-back .back-close {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: rgba(0,0,0,0.06);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            color: var(--text-light);
            transition: all 0.3s;
        }
        .flip-card-back .back-close:hover {
            background: var(--primary);
            color: #fff;
        }

        .class-card { display: none; }


        .class-card-image {
            position: absolute;
            inset: 0;
        }

        .class-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
        }

        .class-card:hover .class-card-image img {
            transform: scale(1.08);
        }

        /* Gradient overlay */
        .class-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
            z-index: 1;
            transition: background 0.3s;
        }
        .class-card:hover::after {
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
        }

        .class-card-body {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            z-index: 2;
            padding: 22px;
            text-align: left;
        }

        .class-card-body .age {
            display: inline-block;
            background: #fff;
            color: var(--dark);
            font-family: 'Quicksand', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            padding: 8px 20px;
            border-radius: 50px;
            margin-bottom: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .class-card-body h3 {
            font-family: 'Quicksand', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: #fff;
            text-shadow: 0 1px 6px rgba(0,0,0,0.3);
        }

        .class-card-expand {
            position: absolute;
            top: 14px; right: 14px;
            z-index: 2;
            width: 36px; height: 36px;
            border-radius: 50%;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0;
        }

        .class-card-expand i {
            font-size: 0.85rem;
            color: #fff;
            transition: transform 0.3s;
        }

        .class-card-expand span {
            display: none;
        }

        .class-card.active .class-card-expand i {
            transform: rotate(180deg);
        }

        .class-card.active .class-card-expand {
            background: var(--primary);
        }

        /* Expanded program detail panel — modern */
        .class-program-detail {
            grid-column: 1 / -1;
            background: linear-gradient(135deg, #f8faff 0%, #eef4ff 100%);
            border-radius: 24px;
            border: none;
            overflow: hidden;
            animation: panelSlideDown 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 20px 60px rgba(0,50,120,0.1), 0 1px 3px rgba(0,0,0,0.04);
        }

        @keyframes panelSlideDown {
            from { opacity: 0; transform: translateY(-20px) scale(0.98); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        .class-program-detail .program-layout {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 0;
            min-height: 420px;
        }

        .class-program-detail .program-image {
            position: relative;
            overflow: hidden;
        }
        .class-program-detail .program-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0,119,182,0.15) 0%, transparent 60%);
            pointer-events: none;
        }

        .class-program-detail .program-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 420px;
            transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .class-program-detail:hover .program-image img {
            transform: scale(1.04);
        }

        .class-program-detail .program-info {
            padding: 44px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .class-program-detail .program-info h3 {
            font-family: 'Manrope', sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 8px;
            letter-spacing: -0.02em;
        }

        .class-program-detail .program-age {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: linear-gradient(135deg, var(--primary), #48CAE4);
            color: #fff;
            font-family: 'Manrope', sans-serif;
            font-size: 0.78rem;
            font-weight: 700;
            padding: 6px 18px;
            border-radius: 50px;
            margin-bottom: 18px;
            width: fit-content;
            letter-spacing: 0.5px;
        }

        .class-program-detail .program-motto {
            font-family: 'Manrope', sans-serif;
            font-style: normal;
            font-size: 1rem;
            font-weight: 500;
            color: var(--primary);
            margin-bottom: 14px;
            padding-bottom: 14px;
            border-bottom: 2px solid rgba(0,180,216,0.12);
        }

        .class-program-detail .program-info > p {
            font-size: 0.92rem;
            color: var(--text-light);
            line-height: 1.75;
            margin-bottom: 10px;
        }

        .class-program-detail .program-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-top: 22px;
        }

        .class-program-detail .program-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Manrope', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--dark);
            padding: 10px 14px;
            background: rgba(255,255,255,0.8);
            border-radius: 12px;
            border: 1px solid rgba(0,180,216,0.08);
            transition: all 0.3s;
        }
        .class-program-detail .program-feature:hover {
            background: #fff;
            border-color: rgba(0,180,216,0.2);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,180,216,0.08);
        }

        .class-program-detail .program-feature i {
            color: #fff;
            font-size: 0.65rem;
            width: 22px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), #48CAE4);
            flex-shrink: 0;
        }

        .class-program-detail .program-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            border-radius: 50px;
            background: linear-gradient(135deg, var(--primary), #48CAE4);
            color: #fff;
            font-family: 'Manrope', sans-serif;
            font-size: 0.88rem;
            font-weight: 700;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(0,180,216,0.25);
            transition: all 0.3s;
        }
        .class-program-detail .program-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 32px rgba(0,180,216,0.35);
        }
        .class-program-detail .program-cta i {
            background: none;
            width: auto;
            height: auto;
            font-size: 0.85rem;
        }

        .class-program-detail .panel-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: var(--dark);
            transition: all 0.3s;
            z-index: 2;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .class-program-detail .panel-close:hover {
            background: var(--primary);
            color: white;
            transform: rotate(90deg);
        }

        @media (max-width: 768px) {
            .class-program-detail .program-layout {
                grid-template-columns: 1fr;
            }
            .class-program-detail .program-image img {
                min-height: 200px;
                max-height: 240px;
            }
            .class-program-detail .program-info {
                padding: 18px;
            }
            .class-program-detail .program-info h3 {
                font-size: 1.3rem;
            }
            .class-program-detail .program-features {
                grid-template-columns: 1fr;
            }
            #classDetailWrap {
                padding: 16px 8px 0 !important;
            }
            .class-program-detail .program-features {
                grid-template-columns: 1fr;
            }
            .class-program-detail .program-info h3 {
                font-size: 1.3rem;
            }
        }

        /* ========== SERVICES ========== */
        .services { background: var(--white); }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .service-card {
            background: var(--white);
            border-radius: 14px;
            overflow: hidden;
            transition: all 0.4s;
            box-shadow: 0 2px 15px rgba(0,0,0,0.04);
            border: 1px solid var(--border);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            border-color: var(--primary);
        }

        .service-card-image {
            width: 100%;
            height: 180px;
            overflow: hidden;
        }

        .service-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .service-card:hover .service-card-image img {
            transform: scale(1.06);
        }

        .service-card-body {
            padding: 22px;
            text-align: center;
        }

        .service-card h4 {
            font-size: 1.1rem;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .service-card p {
            font-size: 0.88rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* ========== NEWS — Magazine-style 2026 Bento ========== */
        .news {
            background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
            padding: 90px 0 100px;
        }
        .news .container { max-width: 1480px; }

        /* Hero/featured + side stack */
        .news-magazine {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 22px;
            margin-bottom: 22px;
        }
        .news-featured { grid-column: span 8; grid-row: span 2; }
        .news-side { grid-column: span 4; grid-row: span 1; }

        /* Below grid for older items */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        /* Base card */
        .news-card {
            background: #fff;
            border-radius: 22px;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.05);
            transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
            display: flex;
            flex-direction: column;
            position: relative;
        }
        .news-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 50px rgba(0,0,0,0.1);
        }

        /* Image area */
        .news-card-image {
            height: 220px;
            overflow: hidden;
            position: relative;
            background: #0a1929;
        }
        .news-card-image img {
            width: 100%; height: 100%;
            object-fit: cover;
            object-position: center top;
            transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
        }
        .news-card:hover .news-card-image img { transform: scale(1.07); }

        /* "ΝΕΟ" ribbon (recent items) */
        .news-new-badge {
            position: absolute;
            top: 14px; left: 14px;
            background: linear-gradient(135deg, #E2725B, #d65a3f);
            color: #fff;
            font-family: 'Manrope', sans-serif;
            font-size: 0.66rem;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 5px 11px;
            border-radius: 50px;
            box-shadow: 0 4px 14px rgba(226,114,91,0.4);
            z-index: 3;
            animation: newPulse 2.5s ease-in-out infinite;
        }
        @keyframes newPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Date + reading time pill (overlay on image) */
        .news-meta-overlay {
            position: absolute;
            bottom: 14px; left: 14px;
            display: flex; gap: 8px; flex-wrap: wrap;
            z-index: 2;
        }
        .news-meta-pill {
            display: inline-flex; align-items: center; gap: 6px;
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 6px 12px;
            border-radius: 50px;
            font-family: 'Manrope', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            color: var(--dark);
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .news-meta-pill i { color: var(--primary); font-size: 0.72rem; }

        /* Card body */
        .news-card-body {
            padding: 22px 22px 24px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .news-card-body h4 {
            font-family: 'Playfair Display', 'Quicksand', serif;
            font-size: 1.18rem;
            font-weight: 700;
            color: var(--dark);
            line-height: 1.32;
            letter-spacing: -0.015em;
            margin-bottom: 10px;
        }
        .news-card-body p {
            font-family: 'Quicksand', sans-serif;
            font-size: 0.9rem;
            color: #666;
            line-height: 1.65;
            margin-top: 0;
        }
        .news-card-date {
            font-family: 'Manrope', sans-serif;
            font-size: 0.74rem;
            font-weight: 700;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1.4px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .news-read-more {
            margin-top: auto;
            padding-top: 14px;
            display: inline-flex; align-items: center; gap: 6px;
            font-family: 'Manrope', sans-serif;
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--primary);
        }
        .news-read-more i { transition: transform 0.3s ease; font-size: 0.7rem; }
        .news-card:hover .news-read-more i { transform: translateX(4px); }

        /* === FEATURED card — image fills, title overlays === */
        .news-card.news-featured .news-card-image {
            height: 100%;
            min-height: 460px;
        }
        .news-card.news-featured .news-card-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top,
                rgba(0,0,0,0.85) 0%,
                rgba(0,0,0,0.5) 35%,
                rgba(0,0,0,0.05) 70%,
                transparent 100%);
            z-index: 1;
        }
        .news-card.news-featured .news-card-body {
            position: absolute;
            left: 0; right: 0; bottom: 0;
            padding: 30px 36px 32px;
            color: #fff;
            z-index: 2;
            background: transparent;
        }
        .news-card.news-featured .news-card-date {
            color: #FFB703;
        }
        .news-card.news-featured .news-card-body h4 {
            font-size: 2rem;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 12px;
            text-shadow: 0 2px 12px rgba(0,0,0,0.4);
        }
        .news-card.news-featured .news-card-body p {
            color: rgba(255,255,255,0.88);
            font-size: 0.96rem;
        }
        .news-card.news-featured .news-read-more {
            color: #fff;
        }

        /* === SIDE card — horizontal split layout === */
        .news-card.news-side {
            flex-direction: row;
        }
        .news-card.news-side .news-card-image {
            width: 42%;
            height: auto;
            min-height: 100%;
            flex-shrink: 0;
        }
        .news-card.news-side .news-card-body {
            width: 58%;
            padding: 20px 22px;
        }
        .news-card.news-side .news-card-body h4 {
            font-size: 1.05rem;
            margin-bottom: 8px;
        }
        .news-card.news-side .news-meta-overlay { display: none; }

        /* Toggle button */
        .news-toggle-wrap { text-align: center; margin-top: 36px; }
        .news-toggle-btn {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 13px 32px;
            border-radius: 50px;
            border: 2px solid var(--primary);
            background: transparent;
            color: var(--primary);
            font-family: 'Manrope', sans-serif;
            font-size: 0.86rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .news-toggle-btn:hover {
            background: var(--primary);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(0,119,182,0.25);
        }

        /* ========== SOCIAL FEED ========== */
        .social-feed {
            background: var(--light);
            overflow: hidden;
        }

        .social-feed-page {
            max-width: 500px;
            margin: 0 auto 40px;
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 30px rgba(0,0,0,0.08);
            padding: 5px;
        }

        .social-feed-reels {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
        }

        .social-feed-reel {
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            background: var(--white);
        }

        .social-feed-reel iframe {
            display: block;
        }

        .social-feed-bottom {
            text-align: center;
        }

        .social-feed-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Manrope', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            color: #fff;
            background: #1877F2;
            padding: 14px 28px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-feed-cta:hover {
            background: #0d65d9;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(24,119,242,0.3);
        }

        /* ========== GALLERY — Modern Full-Width ========== */
        .gallery {
            background: var(--dark);
            padding-bottom: 0 !important;
            overflow: hidden;
        }
        .gallery .section-header h2 { color: #fff; }
        .gallery .section-header p { color: rgba(255,255,255,0.6); }
        .gallery .section-badge { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
        .gallery .section-divider { background: linear-gradient(90deg, var(--primary), var(--accent)); }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 1fr;
            gap: 4px;
            padding: 0;
        }
        .gallery .container { max-width: none; padding: 0; }
        .gallery .section-header { padding: 0 30px; }

        .gallery-item {
            overflow: hidden;
            aspect-ratio: 1;
            position: relative;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
        }

        .gallery-item::after {
            content: '';
            position: absolute; inset: 0;
            background: transparent;
            transition: background 0.3s;
        }

        .gallery-item:hover::after {
            background: rgba(0,180,216,0.15);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* First item larger */
        .gallery-item:first-child {
            grid-column: span 2;
            grid-row: span 2;
        }

        /* ========== LIGHTBOX ========== */
        #lightbox-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 99999;
            background: rgba(0,0,0,0.93);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }

        #lightbox-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        #lightbox-overlay > img {
            position: absolute;
            top: 45%;
            left: 50%;
            transform: translate(-50%, -55%);
            max-width: 88vw;
            max-height: 70vh;
            border-radius: 8px;
            box-shadow: 0 10px 60px rgba(0,0,0,0.6);
            object-fit: contain;
            transition: opacity 0.2s;
        }

        .lb-btn {
            position: absolute;
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
            z-index: 100000;
            transition: all 0.3s;
        }

        .lb-close {
            top: 20px;
            right: 25px;
            font-size: 2.5rem;
            opacity: 0.7;
        }

        .lb-close:hover { opacity: 1; }

        .lb-arrow {
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            font-size: 1.6rem;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.8;
        }

        .lb-arrow:hover {
            opacity: 1;
            background: rgba(255,255,255,0.25);
        }

        .lb-prev { left: 20px; }
        .lb-next { right: 20px; }

        /* Lightbox bottom bar with info + thumbs */
        .lb-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.85));
            padding: 30px 20px 20px;
            display: none;
        }

        .lb-info {
            text-align: center;
            margin-bottom: 12px;
        }

        .lb-info h4 {
            color: #fff;
            font-family: 'Quicksand', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            margin: 0 0 6px;
            text-shadow: 0 1px 4px rgba(0,0,0,0.3);
        }

        .lb-info p {
            color: rgba(255,255,255,0.75);
            font-family: 'Quicksand', sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            margin: 0;
            line-height: 1.5;
            max-width: 600px;
            margin: 0 auto;
        }

        .lb-thumbs {
            display: flex;
            gap: 6px;
            justify-content: center;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 4px 0;
        }

        .lb-thumbs::-webkit-scrollbar { display: none; }

        .lb-thumbs img {
            width: 52px;
            height: 52px;
            object-fit: cover;
            border-radius: 8px;
            cursor: pointer;
            opacity: 0.45;
            transition: all 0.25s;
            border: 2px solid transparent;
            flex-shrink: 0;
        }

        .lb-thumbs img.active {
            opacity: 1;
            border-color: #fff;
            transform: scale(1.08);
        }

        .lb-thumbs img:hover { opacity: 0.85; }

        .lb-counter {
            position: absolute;
            top: 20px;
            right: 70px;
            color: #fff;
            font-family: 'Manrope', sans-serif;
            font-size: 0.8rem;
            letter-spacing: 1px;
            background: rgba(0,0,0,0.5);
            padding: 5px 12px;
            border-radius: 20px;
            backdrop-filter: blur(8px);
        }

        /* Album badge on images */
        .paroxi-block-img[data-has-album],
        .bento-fac-img[data-has-album] { cursor: pointer; }

        .album-badge {
            position: absolute;
            bottom: 12px;
            right: 12px;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(8px);
            color: #fff;
            font-family: 'Manrope', sans-serif;
            font-size: 0.72rem;
            font-weight: 600;
            padding: 5px 10px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 5px;
            z-index: 2;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }

        .fac-item:hover .album-badge,
        .paroxi-card-img:hover .album-badge,
        .album-badge.always-show {
            opacity: 1;
        }

        /* Mobile: always show badge + bigger thumbs */
        @media (max-width: 768px) {
            .album-badge { opacity: 1; }
            .lb-thumbs img {
                width: 56px;
                height: 56px;
                border-radius: 10px;
            }
            .lb-bottom { padding: 20px 12px 14px; }
            .lb-info h4 { font-size: 1rem; }
            .lb-arrow { width: 44px; height: 44px; }
        }

        /* ========== PROGRAM INFO (used in class detail templates) ========== */
        .program-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .program-image {
            border-radius: 12px;
            overflow: hidden;
            position: sticky;
            top: 100px;
        }

        .program-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }

        .program-info h3 {
            font-size: 1.8rem;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .program-info .program-age {
            display: inline-block;
            background: rgba(0,100,216,0.08);
            color: var(--primary);
            font-family: 'Manrope', sans-serif;
            font-size: 0.82rem;
            font-weight: 600;
            padding: 5px 16px;
            border-radius: 50px;
            margin-bottom: 20px;
        }

        .program-info .program-motto {
            font-family: 'Manrope', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--gold);
            font-style: italic;
            margin-bottom: 20px;
            padding-left: 15px;
            border-left: 3px solid var(--gold);
        }

        .program-info p {
            font-size: 1rem;
            color: var(--text);
            margin-bottom: 15px;
            line-height: 1.8;
        }

        .program-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-top: 25px;
        }

        .program-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Manrope', sans-serif;
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--dark);
        }

        .program-feature i {
            color: var(--primary);
            font-size: 0.8rem;
            width: 24px;
            height: 24px;
            background: rgba(0,100,216,0.08);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 24px;
        }

        /* ========== QUOTE ========== */
        .quote-section {
            background: url('/images/top-banner.jpg') center/cover fixed;
            position: relative;
            padding: 120px 0;
        }

        .quote-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(0,30,80,0.88) 0%, rgba(24,72,129,0.75) 100%);
        }

        .quote-inner {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 20px;
        }

        .quote-icon {
            font-size: 6rem;
            color: var(--gold);
            opacity: 0.5;
            font-family: Georgia, serif;
            line-height: 1;
            min-width: 80px;
        }

        .quote-text {
            color: var(--white);
        }

        .quote-text blockquote {
            font-family: 'Quicksand', sans-serif;
            font-size: 1.7rem;
            font-weight: 400;
            font-style: italic;
            line-height: 1.7;
            margin-bottom: 15px;
            letter-spacing: -0.01em;
        }

        .quote-text cite {
            font-style: normal;
            color: var(--gold);
            font-family: 'Manrope', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* ========== CONTACT ========== */
        .contact { background: var(--white); }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
        }

        .contact-info {
            background: var(--white);
            border-radius: 20px;
            padding: 45px 40px;
            box-shadow: 0 10px 40px rgba(0,100,216,0.10), 0 2px 10px rgba(0,0,0,0.04);
            position: relative;
            overflow: hidden;
        }
        .contact-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold), var(--primary));
        }

        .contact-info h3 {
            font-family: 'Manrope', sans-serif;
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 25px;
        }

        .contact-item {
            display: flex;
            gap: 18px;
            margin-bottom: 28px;
            align-items: flex-start;
        }

        .contact-item .ci-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            background: rgba(0,100,216,0.08);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1rem;
            transition: all 0.3s;
        }

        .contact-item:hover .ci-icon {
            background: var(--primary);
            color: var(--white);
        }

        .contact-item h4 {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--text-light);
            margin-bottom: 4px;
            font-weight: 600;
        }

        .contact-item p,
        .contact-item a {
            color: var(--dark);
            text-decoration: none;
            font-family: 'Manrope', sans-serif;
            font-weight: 500;
            font-size: 0.95rem;
        }

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

        .social-links {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }

        .social-links a {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: rgba(0,100,216,0.08);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-3px);
        }

        /* Form */
        .contact-form-wrap {
            background: var(--white);
            border-radius: 20px;
            padding: 45px 40px;
            border: none;
            box-shadow: 0 10px 40px rgba(0,100,216,0.10), 0 2px 10px rgba(0,0,0,0.04);
            position: relative;
            overflow: hidden;
        }
        .contact-form-wrap::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--gold));
        }

        .contact-form-wrap h3 {
            font-family: 'Manrope', sans-serif;
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 8px;
        }
        .contact-form-wrap .form-subtitle {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 25px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 15px 18px;
            border: 2px solid #e8eaf0;
            border-radius: 12px;
            font-family: 'Roboto', sans-serif;
            font-size: 0.95rem;
            margin-bottom: 15px;
            transition: all 0.3s;
            outline: none;
            background: var(--light);
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: var(--primary);
            background: var(--white);
            box-shadow: 0 0 0 4px rgba(0,100,216,0.08);
        }

        .contact-form textarea {
            height: 130px;
            resize: vertical;
        }

        .captcha-box {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #f0f4ff, #fef9ee);
            padding: 14px 18px;
            border-radius: 12px;
            border: 2px dashed #d0d8e8;
        }
        .captcha-box label {
            font-family: 'Manrope', sans-serif;
            font-size: 0.9rem;
            color: var(--dark);
            font-weight: 600;
            white-space: nowrap;
        }
        .captcha-box input {
            width: 70px !important;
            text-align: center;
            margin-bottom: 0 !important;
            background: var(--white) !important;
        }

        .form-message {
            padding: 14px 20px;
            border-radius: 8px;
            margin-bottom: 15px;
            font-family: 'Manrope', sans-serif;
            font-weight: 500;
            font-size: 0.9rem;
            display: none;
        }

        .form-message.success {
            background: #d1fae5;
            color: #065f46;
            border: 1px solid #6ee7b7;
            display: block;
        }

        .form-message.error {
            background: #fee2e2;
            color: #991b1b;
            border: 1px solid #fca5a5;
            display: block;
        }

        /* ========== MAP ========== */
        .map-section { height: 400px; }
        .map-section iframe { width: 100%; height: 100%; border: 0; }

        /* ========== FOOTER ========== */
        footer {
            background: var(--dark);
            color: rgba(255,255,255,0.6);
            padding: 50px 0 25px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h4 {
            color: var(--white);
            font-size: 1rem;
            margin-bottom: 20px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .footer-col p,
        .footer-col a {
            color: rgba(255,255,255,0.55);
            text-decoration: none;
            font-size: 0.9rem;
            line-height: 2;
            display: block;
            transition: color 0.3s;
        }

        .footer-col a:hover { color: var(--gold); }

        .footer-col .footer-logo img {
            height: 50px;
            margin-bottom: 15px;
            background: #fff;
            padding: 5px 8px;
            border-radius: 10px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.82rem;
        }

        .footer-bottom-social {
            display: flex;
            gap: 10px;
        }

        .footer-bottom-social a {
            color: rgba(255,255,255,0.4);
            font-size: 1rem;
            transition: color 0.3s;
        }

        .footer-bottom-social a:hover { color: var(--gold); }

        /* ========== FLOATING SOCIAL ========== */
        .floating-social {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 900;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .floating-social a {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .floating-social a:hover {
            transform: scale(1.15);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        .floating-social .fs-facebook { background: #1877F2; }
        .floating-social .fs-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
        .floating-social .fs-youtube { background: #FF0000; }
        .floating-social .fs-phone { background: #25D366; }

        @media (max-width: 768px) {
            .floating-social { display: none; }
        }

        /* Floating hamburger menu button — top-right (mobile only) */
        .floating-menu-btn {
            display: none;
            position: fixed;
            top: calc(14px + env(safe-area-inset-top, 0px));
            right: 14px;
            z-index: 1002;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255,255,255,0.96);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(0,0,0,0.06);
            box-shadow: 0 6px 20px rgba(0,0,0,0.12);
            cursor: pointer;
            padding: 0;
            transition: transform 0.2s ease;
        }
        .floating-menu-btn:active { transform: scale(0.94); }
        .floating-menu-btn span {
            display: block;
            width: 18px;
            height: 2px;
            background: var(--dark);
            margin: 4px auto;
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        @media (max-width: 768px) {
            .floating-menu-btn { display: block; }
        }

        /* ========== MOBILE BOTTOM DOCK — modern app-style ========== */
        .mobile-dock {
            display: none;
            position: fixed;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1001;
            background: rgba(255,255,255,0.96);
            backdrop-filter: blur(24px) saturate(180%);
            -webkit-backdrop-filter: blur(24px) saturate(180%);
            border: 1px solid rgba(0,0,0,0.05);
            border-radius: 28px;
            padding: 6px 8px;
            margin-bottom: env(safe-area-inset-bottom, 0px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
            align-items: center;
            gap: 0;
            width: calc(100% - 16px);
            max-width: 460px;
            justify-content: space-around;
        }
        .md-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2px;
            text-decoration: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px 3px;
            border-radius: 14px;
            min-width: 0;
            flex: 1;
            transition: background 0.2s ease;
            -webkit-tap-highlight-color: transparent;
            font-family: inherit;
        }
        .md-item i {
            font-size: 1.05rem;
            color: var(--text-light, #5b6478);
            transition: color 0.2s, transform 0.2s;
        }
        .md-item span {
            font-family: 'Manrope', sans-serif;
            font-size: 0.55rem;
            font-weight: 600;
            color: var(--text-light, #5b6478);
            letter-spacing: 0.2px;
            white-space: nowrap;
        }
        .md-item.active i, .md-item:active i { color: var(--primary); transform: translateY(-2px); }
        .md-item.active span, .md-item:active span { color: var(--primary); }

        .md-fab {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2px;
            background: linear-gradient(135deg, var(--accent), #c25543);
            border: 4px solid #fff;
            color: #fff;
            border-radius: 50%;
            width: 64px;
            height: 64px;
            margin-top: -28px;
            cursor: pointer;
            box-shadow: 0 10px 24px rgba(226,114,91,0.5), 0 0 0 0 rgba(226,114,91,0.6);
            transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
            font-family: inherit;
            animation: mdFabPulse 2.4s ease-out infinite;
        }
        @keyframes mdFabPulse {
            0%, 100% { box-shadow: 0 10px 24px rgba(226,114,91,0.5), 0 0 0 0 rgba(226,114,91,0.6); }
            50%      { box-shadow: 0 10px 24px rgba(226,114,91,0.5), 0 0 0 14px rgba(226,114,91,0); }
        }
        .md-fab:active { transform: scale(0.94); }
        .md-fab i { font-size: 1.35rem; }
        .md-fab span {
            font-family: 'Manrope', sans-serif;
            font-size: 0.5rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            display: none;
        }

        /* ========== MOBILE HERO CTA ========== */
        .mobile-hero-cta {
            display: none;
            justify-content: center;
            gap: 12px;
            padding: 8px 20px 4px;
            background: var(--white);
        }

        .mobile-hero-cta .btn {
            padding: 12px 24px;
            font-size: 14px;
            min-width: 140px;
            justify-content: center;
        }

        /* ========== MOBILE LOGO BAR ========== */
        .mobile-logo-bar {
            display: none;
        }

        .mobile-logo-bar img {
            height: 32px;
            width: auto;
        }

        .mobile-logo-bar a {
            display: block;
        }

        /* ========== APP-LIKE TOUCH STYLES ========== */
        @media (max-width: 768px) {
            /* Show bottom nav */
            .mobile-bottom-nav { display: flex !important; }
            /* Top navbar logo/links hidden on mobile — bottom dock is the primary nav */
            .navbar { display: none !important; }
            /* Sticky CTA hidden on mobile — center FAB in dock takes its place */
            .sticky-cta { display: none !important; }
            /* Push body content above the floating dock */
            body { padding-bottom: 100px !important; }
            /* Mobile hero logo removed — it covered the hero video.
               The brand mark now lives next to the "Χρόνια Εμπειρίας" card in the About section. */
            .mobile-logo-bar { display: none !important; }

            /* Safe area for bottom nav */
            body { padding-bottom: 72px; }
            footer { padding-bottom: 80px; }

            /* Fixed navbar on mobile */
            .navbar {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                height: 56px;
                transition: transform 0.3s ease, background 0.3s;
            }

            .navbar.nav-hidden {
                transform: translateY(-100%);
            }

            .navbar-logo img { height: 38px; }

            /* Offset for fixed navbar */
            .hero { margin-top: 0; }

            /* Touch-friendly tap targets (min 44px) */
            .btn, .btn-blue, .btn-primary, .btn-white,
            .footer-col a,
            .facilities-level, .program-tab {
                min-height: 44px;
                display: inline-flex;
                align-items: center;
            }

            /* Mobile bottom nav items - larger touch area */
            .mob-nav-item {
                padding: 8px 6px;
                min-height: 48px;
            }

            /* Smooth momentum scroll */
            html {
                -webkit-overflow-scrolling: touch;
                scroll-behavior: smooth;
            }

            /* Rounded card corners - more app-like */
            .bento-cell,
            .bento-fac,
            .news-card,
            .philosophy-card,
            .paroxi-block {
                border-radius: 16px;
            }

            /* Full-width sections on mobile - edge to edge */
            section { padding: 70px 0; }

            /* Classes — flip cards mobile */
            .classes .container { padding: 0 16px; }
            .classes .section-header { padding: 0; }
            .classes-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 14px !important;
                padding: 0 !important;
            }
            .flip-card-inner {
                aspect-ratio: 2/3;
                /* Hard-disable all 3D flipping on mobile — some touch browsers (Opera Mobile, Samsung Internet)
                   honor :hover after a tap, and backface-visibility is unreliable, producing mirrored text. */
                transform: none !important;
                transform-style: flat !important;
                transition: none !important;
            }
            .flip-card-back { display: none !important; }
            .flip-card-hint { display: none !important; }
            .flip-card-front-body { padding: 16px 14px; }
            .flip-card-front-body h3 { font-size: 1rem; }
            .flip-card-front-body .age { font-size: 0.62rem; padding: 4px 10px; }
            .flip-card-back h3 { font-size: 1rem; }
            .flip-card-back .back-desc { font-size: 0.75rem; margin-bottom: 10px; }
            .flip-card-back .back-feat { font-size: 0.72rem; }
            .flip-card-back .back-cta { font-size: 0.75rem; padding: 9px 16px; }

            /* Horizontal scroll for facilities levels */
            .facilities-levels {
                justify-content: flex-start;
                overflow-x: auto;
                flex-wrap: nowrap;
                padding-bottom: 8px;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }

            .facilities-levels::-webkit-scrollbar { display: none; }

            .facilities-level {
                white-space: nowrap;
                flex-shrink: 0;
            }

            /* Pull-down indicator feel on hero */
            .hero::after {
                content: '';
                position: absolute;
                bottom: 30px;
                left: 50%;
                transform: translateX(-50%);
                width: 30px;
                height: 4px;
                background: rgba(255,255,255,0.4);
                border-radius: 2px;
                z-index: 10;
                animation: pulseBar 2s ease-in-out infinite;
            }

            @keyframes pulseBar {
                0%, 100% { opacity: 0.4; width: 30px; }
                50% { opacity: 0.8; width: 50px; }
            }

            /* Haptic-style active states */
            .bento-cell:active,
            .bento-fac:active,
            .news-card:active,
            .paroxi-block:active,
            .philosophy-card:active {
                transform: scale(0.98) !important;
                transition: transform 0.1s ease;
            }

            /* Gallery grid on mobile */
            .gallery-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .gallery-item {
                min-width: auto;
            }

            /* News - mobile: stack everything */
            .news { padding: 60px 0 70px; }
            .news-magazine {
                grid-template-columns: 1fr;
                gap: 14px;
                margin-bottom: 14px;
            }
            .news-featured, .news-side {
                grid-column: span 1;
                grid-row: auto;
            }
            .news-card.news-featured .news-card-image { min-height: 280px; }
            .news-card.news-featured .news-card-body { padding: 20px; }
            .news-card.news-featured .news-card-body h4 { font-size: 1.3rem; }
            .news-card.news-featured .news-card-body p { font-size: 0.88rem; }

            .news-card.news-side {
                flex-direction: column;
            }
            .news-card.news-side .news-card-image,
            .news-card.news-side .news-card-body {
                width: 100%;
            }
            .news-card.news-side .news-card-image { height: 180px; }
            .news-card.news-side .news-meta-overlay { display: flex; }

            .news-grid {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }
            .news-card { min-width: auto; }
            .news-card-image { height: 150px; }
            .news-card-body { padding: 14px; }
            .news-card-body h4 { font-size: 0.95rem; line-height: 1.3; }
            .news-card-body p { display: none; }
            .news-card-date { font-size: 0.68rem; margin-bottom: 5px; }
            .news-meta-overlay { bottom: 10px; left: 10px; }
            .news-meta-pill { font-size: 0.66rem; padding: 4px 9px; }

            /* Intro reel: stack on mobile */
            .intro-reel-grid {
                grid-template-columns: 1fr !important;
                gap: 30px !important;
                text-align: center;
            }
            .intro-reel-grid > div:first-child { max-width: 320px; margin: 0 auto; }
            .container > div[style*="grid-template-columns:1fr 340px 1fr"] {
                display: flex !important;
                flex-direction: column;
                gap: 30px;
                text-align: center !important;
            }

            .container > div[style*="grid-template-columns:1fr 340px 1fr"] > div[style*="text-align:right"] {
                text-align: center !important;
                order: -1;
            }

            .container > div[style*="grid-template-columns:1fr 340px 1fr"] > div[style*="text-align:right"] .section-divider,
            .container > div[style*="grid-template-columns:1fr 340px 1fr"] > div[style*="text-align:right"] div[style*="margin-left:auto"] {
                margin: 0 auto 20px !important;
            }

            .container > div[style*="grid-template-columns:1fr 340px 1fr"] > div[style*="text-align:left"] > div {
                flex-direction: row !important;
                flex-wrap: wrap;
                justify-content: center;
            }

            .container > div[style*="grid-template-columns:1fr 340px 1fr"] > div[style*="text-align:left"] > div > div {
                flex: 1;
                min-width: 140px;
            }

            /* Disable 3D tilt on mobile - causes overlap issues */
            .bento-cell, .bento-fac, .philosophy-card, .news-card {
                transform: none !important;
            }

            .bento-cell:hover, .bento-fac:hover, .philosophy-card:hover, .news-card:hover {
                transform: none !important;
            }

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

        @media (max-width: 480px) {
            .mobile-bottom-nav-grid { padding: 0 10px; }

            /* Even tighter app feel */
            section { padding: 50px 0; }
            .container { padding: 0 16px; }

            .section-header h2 { font-size: 1.7rem; font-weight: 700; letter-spacing: -0.02em; }

            .bento-about-main h2 { font-size: 1.7rem; font-weight: 700; }

            /* Better mobile body text breathing */
            body { line-height: 1.75; }

            .paroxi-block-content { padding: 28px 20px; }
            .paroxi-block-content h3 { font-size: 1.4rem; }

            /* Status bar safe area */
            /* Safe area handled by main mobile navbar rule below */
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1100px) {
            .classes-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
            .news-grid { grid-template-columns: repeat(2, 1fr); }
            .news-magazine { grid-template-columns: repeat(8, 1fr); }
            .news-featured { grid-column: span 8; grid-row: span 1; }
            .news-side { grid-column: span 4; }
            .news-card.news-featured .news-card-image { min-height: 360px; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        /* ========== PORTAL ========== */
        .nautilos-portal-section {
            background: linear-gradient(135deg, #f8f9fc 0%, #eef1f8 100%);
            padding: 80px 0;
        }

        .portal-title {
            font-family: 'Playfair Display', serif;
            color: var(--dark);
        }

        .portal-grid {
            display: grid;
            grid-template-columns: 340px 1fr;
            gap: 30px;
            align-items: start;
        }

        .portal-login-card {
            background: var(--white);
            border: 1px solid #eef2f6;
            padding: 35px 30px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        }

        .portal-login-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin: 0 auto 20px;
        }

        .portal-login-card h4 {
            color: var(--dark);
            font-family: 'Manrope', sans-serif;
            font-weight: 700;
            font-size: 1.2rem;
            margin: 0 0 8px;
        }

        .portal-login-card p {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .portal-login-form input {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #dde2e8;
            border-radius: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            margin-bottom: 10px;
            transition: border-color 0.3s;
            box-sizing: border-box;
        }

        .portal-login-form input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0,100,216,0.1);
        }

        .portal-admin-link {
            display: inline-block;
            margin-top: 15px;
            font-size: 0.8rem;
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s;
        }

        .portal-admin-link:hover { color: var(--primary); }

        .portal-link-button {
            background-color: #001E50;
            color: #ffffff;
            font-family: 'Manrope', sans-serif;
            font-weight: 700;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,30,80,0.2);
            font-size: 0.95rem;
        }

        .portal-link-button:hover {
            background-color: #e67e22;
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(230,126,34,0.3);
        }

        .portal-quick-access {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .portal-quick-access .portal-feature-card {
            background: var(--white);
            border: 1px solid #eef2f6;
            padding: 30px 25px;
            border-radius: 16px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        }

        .portal-quick-access .portal-feature-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 10px 30px rgba(0,100,216,0.1);
        }

        .portal-card-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(0,100,216,0.08);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .portal-quick-access h4 {
            color: var(--dark);
            font-family: 'Manrope', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            margin: 0 0 6px;
        }

        .portal-quick-access p {
            color: var(--text-light);
            font-size: 0.85rem;
            margin: 0;
            line-height: 1.4;
        }

        @media (max-width: 768px) {
            .portal-grid {
                grid-template-columns: 1fr;
            }
            .portal-quick-access {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .portal-quick-access .portal-feature-card { padding: 20px 15px; }
            .portal-login-card { padding: 25px 20px; }
        }

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

        /* ========== BACK TO TOP ========== */
        .back-to-top {
            position: fixed;
            bottom: 95px;
            right: 25px;
            z-index: 900;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--primary);
            color: var(--white);
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        /* FORCE GREEK FONTS EVERYWHERE ON MOBILE */
        @media (max-width: 1024px) {
            h1, h2, h3, h4, h5, h6,
            .hero-content h1,
            .section-header h2,
            .paroxi-block-content h3,
            .program-info h3,
            .contact-info h3 {
                font-family: 'Playfair Display', serif !important;
                font-weight: 700 !important;
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
            }

            body, p, a, li, span, div, button, input, textarea, select,
            .btn, .mob-nav-item span,
            .hero-content p,
            .paroxi-block-content p,
            .paroxi-block-content li,
            .contact-item p,
            .footer-col p, .footer-col a {
                font-family: 'Inter', sans-serif !important;
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
            }

            .navbar-menu a, .hero-badge, .paroxi-label, .section-badge,
            .mobile-logo-bar, .mob-nav-item span {
                font-family: 'Manrope', sans-serif !important;
                -webkit-font-smoothing: antialiased;
            }
        }

        @media (max-width: 768px) {
            /* Mobile Specific Fixes */
            body {
                font-size: 16px;
                line-height: 1.6;
                -webkit-text-size-adjust: 100%;
            }

            .container, .content-area {
                padding-left: 20px !important;
                padding-right: 20px !important;
            }

            h1, h2, h3 {
                word-wrap: break-word;
                margin-bottom: 15px;
            }

            .top-bar { display: none; }

            /* Modern mobile navbar — compact bar with hamburger.
               iOS safe-area: push the visible bar below the status bar/notch so it can be tapped.
               No backdrop-filter on mobile — it creates a stacking context that traps the slide-in menu. */
            .navbar {
                top: 0 !important;
                height: calc(60px + env(safe-area-inset-top, 0px)) !important;
                padding: env(safe-area-inset-top, 0px) 0 0 0 !important;
                background: #ffffff !important;
                backdrop-filter: none !important;
                -webkit-backdrop-filter: none !important;
                box-shadow: 0 2px 16px rgba(0,0,0,0.08) !important;
                z-index: 1010 !important;
                /* On mobile we use the floating-menu-btn + bottom dock — hide the top navbar entirely */
                display: none !important;
            }
            .navbar .container { height: 60px; }
            .navbar-logo { display: flex !important; align-items: center; }
            .navbar-logo img { height: 42px !important; display: block; }
            .menu-toggle {
                display: block !important;
                visibility: visible !important;
                width: 44px !important; height: 44px !important;
            }
            /* ============================================================
               MOBILE HAMBURGER MENU — clean, modern, accordion-style
               Site palette: forest green, ocean blue, gold accent
               ============================================================ */

            /* Backdrop overlay */
            .nav-overlay-backdrop {
                position: fixed;
                inset: 0;
                background: rgba(15, 30, 55, 0.5);
                backdrop-filter: blur(3px);
                -webkit-backdrop-filter: blur(3px);
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.25s ease, visibility 0.25s ease;
                z-index: 99998;
            }
            .nav-overlay-backdrop.show { opacity: 1; visibility: visible; }

            /* Off-canvas drawer — slides in from right */
            #navMenu.navbar-menu {
                position: fixed !important;
                top: 0 !important;
                right: 0 !important;
                bottom: auto !important;
                left: auto !important;
                width: min(380px, 100%) !important;
                max-width: 100% !important;
                height: 100vh !important;
                height: 100dvh !important;
                margin: 0 !important;
                padding: 0 !important;
                background: #ffffff !important;
                color: var(--text) !important;
                z-index: 99999 !important;
                list-style: none !important;
                overflow-y: auto !important;
                overflow-x: hidden !important;
                -webkit-overflow-scrolling: touch !important;
                box-shadow: -20px 0 60px rgba(0,0,0,0.18) !important;
                transform: translateX(105%) !important;
                transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1) !important;
                display: flex !important;
                flex-direction: column !important;
                align-items: stretch !important;
                justify-content: flex-start !important;
                gap: 0 !important;
                box-sizing: border-box !important;
                padding-top: env(safe-area-inset-top, 0px) !important;
                padding-bottom: env(safe-area-inset-bottom, 0px) !important;
            }
            #navMenu.navbar-menu.open { transform: translateX(0) !important; }

            /* Drawer header strip */
            #navMenu.navbar-menu::before {
                content: 'ΜΙΚΡΟΣ ΝΑΥΤΙΛΟΣ';
                flex: none;
                display: block;
                background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
                color: #ffffff;
                padding: 22px 22px 18px;
                font-family: 'Quicksand', sans-serif;
                font-size: 14px;
                font-weight: 700;
                letter-spacing: 1.4px;
                text-align: left;
                border-bottom: 3px solid var(--gold);
                text-transform: uppercase;
            }

            /* Each top-level <li> */
            #navMenu.navbar-menu > li {
                display: block !important;
                width: 100% !important;
                max-width: 100% !important;
                margin: 0 !important;
                padding: 0 !important;
                list-style: none !important;
                border: 0 !important;
                border-bottom: 1px solid #f0f1f5 !important;
                background: transparent !important;
                height: auto !important;
                min-height: 0 !important;
                position: static !important;
                float: none !important;
                box-sizing: border-box !important;
                flex: none !important;
            }

            /* Top-level link */
            #navMenu.navbar-menu > li > a {
                display: flex !important;
                align-items: center !important;
                justify-content: flex-start !important;
                gap: 12px !important;
                width: 100% !important;
                padding: 16px 22px !important;
                margin: 0 !important;
                color: var(--text) !important;
                background: transparent !important;
                text-decoration: none !important;
                font-family: 'Quicksand', sans-serif !important;
                font-size: 16.5px !important;
                font-weight: 600 !important;
                line-height: 1.3 !important;
                letter-spacing: 0.1px !important;
                border: 0 !important;
                border-radius: 0 !important;
                box-shadow: none !important;
                text-align: left !important;
                white-space: nowrap !important;
                overflow: hidden !important;
                text-overflow: ellipsis !important;
                box-sizing: border-box !important;
                transition: background 0.2s, color 0.2s !important;
                height: auto !important;
                min-height: 0 !important;
            }
            #navMenu.navbar-menu > li > a:hover,
            #navMenu.navbar-menu > li > a:active,
            #navMenu.navbar-menu > li.has-dropdown.open > a {
                background: var(--primary-pale) !important;
                color: var(--primary-dark) !important;
            }

            /* Kill any pseudo decorations */
            #navMenu.navbar-menu > li > a::before,
            #navMenu.navbar-menu > li > a::after {
                display: none !important;
                content: none !important;
            }

            /* Chevron arrow */
            #navMenu.navbar-menu > li.has-dropdown > a > .nav-arrow {
                display: inline-block !important;
                margin-left: auto !important;
                font-size: 11px !important;
                color: var(--text-light) !important;
                transition: transform 0.25s ease, color 0.25s ease !important;
                flex: none !important;
            }
            #navMenu.navbar-menu > li.has-dropdown.open > a > .nav-arrow {
                transform: rotate(180deg) !important;
                color: var(--primary) !important;
            }

            /* has-dropdown row: flex column-reverse so submenu unfolds ABOVE the trigger */
            #navMenu.navbar-menu > li.has-dropdown {
                display: flex !important;
                flex-direction: column-reverse !important;
                align-items: stretch !important;
            }

            /* Sub-menus = accordion (collapsed by default) */
            #navMenu.navbar-menu .nav-dropdown {
                display: block !important;
                width: 100% !important;
                max-width: 100% !important;
                margin: 0 !important;
                padding: 0 !important;
                background: #fafbf9 !important;
                border: 0 !important;
                box-shadow: none !important;
                border-radius: 0 !important;
                grid-template-columns: none !important;
                gap: 0 !important;
                /* CRITICAL: reset desktop min-height: 500px which keeps an empty white gap */
                min-height: 0 !important;
                height: auto !important;
                max-height: 0 !important;
                overflow: hidden !important;
                opacity: 0 !important;
                visibility: visible !important;
                transform: none !important;
                list-style: none !important;
                position: static !important;
                transition: max-height 0.4s ease, opacity 0.25s ease 0.05s !important;
                box-sizing: border-box !important;
                top: auto !important;
                left: auto !important;
                right: auto !important;
                backdrop-filter: none !important;
                -webkit-backdrop-filter: none !important;
            }
            #navMenu.navbar-menu > li.has-dropdown.open > .nav-dropdown {
                max-height: 1500px !important;
                opacity: 1 !important;
            }

            /* mega-content reset for mobile */
            #navMenu.navbar-menu .mega-content,
            #navMenu.navbar-menu .mega-cols-3 {
                display: block !important;
                grid-template-columns: none !important;
                gap: 0 !important;
                padding: 4px 0 8px !important;
                width: 100% !important;
                max-width: 100% !important;
                margin: 0 !important;
            }

            /* Hide mega-feature image card on mobile (higher specificity than .nav-dropdown a) */
            #navMenu.navbar-menu .nav-dropdown a.mega-feature,
            #navMenu.navbar-menu a.mega-feature,
            #navMenu.navbar-menu .mega-feature {
                display: none !important;
            }

            /* Mega columns stacked */
            #navMenu.navbar-menu .mega-col {
                display: block !important;
                width: 100% !important;
                padding: 0 !important;
                margin: 0 !important;
            }
            #navMenu.navbar-menu .mega-col h5 {
                display: block !important;
                padding: 12px 22px 4px 22px !important;
                margin: 0 !important;
                font-family: 'Manrope', sans-serif !important;
                font-size: 10.5px !important;
                font-weight: 700 !important;
                letter-spacing: 1px !important;
                text-transform: uppercase !important;
                color: var(--primary) !important;
                border: 0 !important;
                background: transparent !important;
            }

            /* Sub-menu items (icon + strong + span) */
            #navMenu.navbar-menu .nav-dropdown a {
                display: flex !important;
                align-items: center !important;
                gap: 12px !important;
                width: 100% !important;
                padding: 11px 22px 11px 22px !important;
                margin: 0 !important;
                font-family: 'Manrope', sans-serif !important;
                font-size: 14.5px !important;
                font-weight: 500 !important;
                line-height: 1.35 !important;
                color: var(--text) !important;
                background: transparent !important;
                text-decoration: none !important;
                border: 0 !important;
                border-radius: 0 !important;
                box-shadow: none !important;
                box-sizing: border-box !important;
                aspect-ratio: auto !important;
                height: auto !important;
                min-height: 0 !important;
                white-space: normal !important;
                overflow: hidden !important;
                transition: background 0.18s, color 0.18s !important;
            }
            #navMenu.navbar-menu .nav-dropdown a:hover,
            #navMenu.navbar-menu .nav-dropdown a:active {
                background: rgba(45,90,39,0.08) !important;
                color: var(--primary-dark) !important;
            }

            /* Sub-menu icon */
            #navMenu.navbar-menu .nav-dropdown a > i:first-child {
                display: inline-flex !important;
                align-items: center !important;
                justify-content: center !important;
                width: 32px !important;
                height: 32px !important;
                border-radius: 8px !important;
                background: var(--secondary-pale) !important;
                color: var(--secondary-dark) !important;
                font-size: 13px !important;
                flex: none !important;
                margin: 0 !important;
            }

            /* Sub-menu text container */
            #navMenu.navbar-menu .nav-dropdown a > div {
                display: flex !important;
                flex-direction: column !important;
                flex: 1 !important;
                min-width: 0 !important;
                gap: 1px !important;
                align-items: flex-start !important;
            }
            #navMenu.navbar-menu .nav-dropdown a strong {
                display: block !important;
                font-family: 'Manrope', sans-serif !important;
                font-size: 14px !important;
                font-weight: 600 !important;
                color: var(--text) !important;
                line-height: 1.3 !important;
                margin: 0 !important;
                padding: 0 !important;
                text-transform: none !important;
                letter-spacing: 0 !important;
                white-space: nowrap !important;
                overflow: hidden !important;
                text-overflow: ellipsis !important;
                max-width: 100% !important;
            }
            #navMenu.navbar-menu .nav-dropdown a span {
                display: block !important;
                font-family: 'Manrope', sans-serif !important;
                font-size: 11.5px !important;
                font-weight: 400 !important;
                color: var(--text-light) !important;
                line-height: 1.25 !important;
                margin: 0 !important;
                padding: 0 !important;
                white-space: nowrap !important;
                overflow: hidden !important;
                text-overflow: ellipsis !important;
                max-width: 100% !important;
            }

            /* Τάξεις mega cards — 2-col compact grid with photos */
            #navMenu.navbar-menu .nav-mega .mega-content {
                display: grid !important;
                grid-template-columns: 1fr 1fr !important;
                gap: 8px !important;
                padding: 10px 14px 14px !important;
            }
            #navMenu.navbar-menu .nav-mega-card {
                display: flex !important;
                flex-direction: column !important;
                align-items: stretch !important;
                padding: 0 !important;
                background: #fff !important;
                border: 1px solid var(--border) !important;
                border-radius: 12px !important;
                overflow: hidden !important;
                aspect-ratio: auto !important;
                width: auto !important;
                margin: 0 !important;
                box-shadow: 0 2px 6px rgba(0,0,0,0.04) !important;
                transition: transform 0.2s, box-shadow 0.2s !important;
                font-size: inherit !important;
            }
            #navMenu.navbar-menu .nav-mega-card:active {
                transform: scale(0.97) !important;
                box-shadow: 0 4px 14px rgba(45,90,39,0.18) !important;
            }
            #navMenu.navbar-menu .nav-mega-card .nmc-img {
                display: block !important;
                width: 100% !important;
                aspect-ratio: 4/3 !important;
                overflow: hidden !important;
                background: var(--primary-pale) !important;
                margin: 0 !important;
                padding: 0 !important;
                border: 0 !important;
                border-radius: 0 !important;
                flex: none !important;
            }
            #navMenu.navbar-menu .nav-mega-card .nmc-img img {
                width: 100% !important;
                height: 100% !important;
                object-fit: cover !important;
                display: block !important;
                transform: none !important;
            }
            #navMenu.navbar-menu .nav-mega-card .nmc-body {
                display: flex !important;
                flex-direction: column !important;
                align-items: flex-start !important;
                gap: 4px !important;
                padding: 8px 10px 10px !important;
                margin: 0 !important;
                width: 100% !important;
                flex: 1 1 auto !important;
            }
            #navMenu.navbar-menu .nav-mega-card .age-pill {
                display: inline-block !important;
                align-self: flex-start !important;
                padding: 2px 7px !important;
                font-family: 'Manrope', sans-serif !important;
                font-size: 9.5px !important;
                font-weight: 700 !important;
                color: var(--primary-dark) !important;
                background: var(--primary-pale) !important;
                border-radius: 50px !important;
                line-height: 1.4 !important;
                letter-spacing: 0.2px !important;
                text-transform: none !important;
                margin: 0 !important;
                width: auto !important;
            }
            #navMenu.navbar-menu .nav-mega-card strong {
                display: block !important;
                font-family: 'Quicksand', sans-serif !important;
                font-size: 13px !important;
                font-weight: 700 !important;
                color: var(--primary-dark) !important;
                line-height: 1.25 !important;
                margin: 0 !important;
                padding: 0 !important;
                text-transform: none !important;
                letter-spacing: 0 !important;
                white-space: nowrap !important;
                overflow: hidden !important;
                text-overflow: ellipsis !important;
                width: 100% !important;
            }

            /* "Όλες οι παροχές" CTA at end of mega-col */
            #navMenu.navbar-menu .nav-dropdown-all {
                display: flex !important;
                justify-content: center !important;
                align-items: center !important;
                gap: 6px !important;
                margin: 8px 22px 12px !important;
                padding: 10px 16px !important;
                background: var(--primary) !important;
                color: #fff !important;
                border-radius: 10px !important;
                font-family: 'Manrope', sans-serif !important;
                font-size: 13px !important;
                font-weight: 600 !important;
                width: auto !important;
                box-shadow: 0 4px 12px rgba(45,90,39,0.25) !important;
                white-space: nowrap !important;
            }
            #navMenu.navbar-menu .nav-dropdown-all > i:first-child {
                display: none !important;
            }
            #navMenu.navbar-menu .nav-dropdown-all i {
                color: #fff !important;
                background: transparent !important;
                font-size: 11px !important;
                width: auto !important;
                height: auto !important;
                margin: 0 0 0 4px !important;
                border-radius: 0 !important;
                padding: 0 !important;
            }
            #navMenu.navbar-menu .nav-dropdown-all > div { display: none !important; }

            /* Summer School pill */
            #navMenu.navbar-menu > li:has(> a.nav-summer) {
                border-bottom: 0 !important;
            }
            #navMenu.navbar-menu > li > a.nav-summer {
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                gap: 8px !important;
                margin: 18px 22px 10px !important;
                padding: 14px 22px !important;
                background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%) !important;
                color: #ffffff !important;
                border-radius: 50px !important;
                text-align: center !important;
                font-family: 'Quicksand', sans-serif !important;
                font-size: 15px !important;
                font-weight: 700 !important;
                letter-spacing: 0.5px !important;
                box-shadow: 0 8px 22px rgba(255,107,53,0.32) !important;
                width: auto !important;
                white-space: nowrap !important;
                height: auto !important;
                min-height: 0 !important;
            }
            #navMenu.navbar-menu > li > a.nav-summer:hover,
            #navMenu.navbar-menu > li > a.nav-summer:active {
                background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%) !important;
                color: #fff !important;
                transform: scale(0.98) !important;
            }

            /* Drawer footer (injected by JS) */
            #navMenu.navbar-menu > li.nav-drawer-footer {
                margin-top: auto !important;
                padding: 14px 22px 22px !important;
                background: linear-gradient(180deg, transparent 0%, var(--primary-pale) 60%) !important;
                border-top: 1px solid var(--border) !important;
                border-bottom: 0 !important;
            }
            .nav-drawer-footer .ndf-call {
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                gap: 8px !important;
                padding: 12px 14px !important;
                background: var(--primary) !important;
                color: #fff !important;
                border-radius: 12px !important;
                font-family: 'Manrope', sans-serif !important;
                font-size: 14px !important;
                font-weight: 700 !important;
                text-decoration: none !important;
                box-shadow: 0 4px 14px rgba(45,90,39,0.25) !important;
                margin-bottom: 10px !important;
                white-space: nowrap !important;
                width: auto !important;
            }
            .nav-drawer-footer .ndf-call i {
                font-size: 14px !important;
                color: #fff !important;
                background: transparent !important;
                width: auto !important;
                height: auto !important;
                border-radius: 0 !important;
            }
            .nav-drawer-footer .ndf-socials {
                display: flex !important;
                gap: 10px !important;
                justify-content: center !important;
            }
            .nav-drawer-footer .ndf-socials a {
                width: 40px !important;
                height: 40px !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                background: #fff !important;
                color: var(--primary) !important;
                border-radius: 50% !important;
                font-size: 15px !important;
                text-decoration: none !important;
                box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
                border: 1px solid var(--border) !important;
                padding: 0 !important;
                margin: 0 !important;
                transition: transform 0.2s, background 0.2s, color 0.2s !important;
            }
            .nav-drawer-footer .ndf-socials a:active {
                transform: scale(0.92) !important;
                background: var(--primary) !important;
                color: #fff !important;
            }
            .nav-drawer-footer .ndf-socials a i {
                color: inherit !important;
                background: transparent !important;
                width: auto !important;
                height: auto !important;
                border-radius: 0 !important;
            }

            /* Hamburger button cross when open */
            .floating-menu-btn.open {
                background: rgba(255,255,255,0.96) !important;
            }
            .floating-menu-btn.open span {
                background: var(--primary) !important;
            }
            .floating-menu-btn.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
            .floating-menu-btn.open span:nth-child(2) { opacity: 0; }
            .floating-menu-btn.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
            /* Hero: starts right below the navbar (incl. iOS safe area) */
            .hero {
                height: auto !important;
                max-height: none !important;
                min-height: auto !important;
                margin-top: calc(60px + env(safe-area-inset-top, 0px)) !important;
                align-items: center !important;
                padding: 30px 0 40px !important;
                display: flex !important;
            }
            .hero-content {
                padding: 0 20px;
                margin-bottom: 0 !important;
            }
            .hero-content h1 { font-size: 2rem; line-height: 1.15; }
            .hero-content p { display: none !important; }

            /* Hero buttons — κρύβονται μέσα στο hero στο mobile */
            .hero-buttons {
                display: none !important;
            }

            /* Mobile CTA buttons κάτω από τον hero */
            .mobile-hero-cta {
                display: flex !important;
            }

            /* Video full bleed mobile */
            .hero-video-wrap .hero-vid {
                inset: 0 !important;
                width: 100% !important;
                height: 100% !important;
                object-fit: cover !important;
            }
            .hero-video-wrap .hero-vid iframe {
                width: 100% !important;
                height: 100% !important;
            }
            .hero-video-wrap {
                background: #000 !important;
            }
            /* Mobile poster fallback */
            .hero-poster-static {
                display: block !important;
            }
            .hero-overlay {
                background: linear-gradient(180deg, rgba(0,30,80,0.65) 0%, rgba(0,30,80,0.4) 100%);
            }

            .about-grid,
            .contact-grid { grid-template-columns: 1fr; }

            .about-image::after { display: none; }

            .services-grid { grid-template-columns: 1fr; }
            .program-layout { grid-template-columns: 1fr; }
            .program-image { position: static; }
            .program-features { grid-template-columns: 1fr; }
            .philosophy-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

            /* Timeline — playful zigzag cards on mobile */
            .timeline-grid {
                display: flex;
                flex-direction: column;
                gap: 16px;
                padding: 0 16px;
                position: relative;
            }
            /* Κεντρική κάθετη γραμμή */
            .timeline-grid::before {
                content: '';
                position: absolute;
                top: 0; bottom: 0;
                left: 50%;
                width: 3px;
                background: linear-gradient(to bottom, var(--accent), var(--primary));
                border-radius: 3px;
                transform: translateX(-50%);
            }
            .timeline-empty { display: none; }
            .timeline-center { display: none; }
            .timeline-left,
            .timeline-right {
                position: relative;
                width: 70%;
                padding: 16px 18px;
                background: var(--white);
                border-radius: 16px;
                border: 2px solid var(--border);
                box-shadow: 0 3px 12px rgba(0,0,0,0.05);
                text-align: left;
            }
            /* Zigzag — αριστερά/δεξιά εναλλαγή */
            .timeline-left { align-self: flex-start; margin-left: 5%; }
            .timeline-right { align-self: flex-end; margin-right: 5%; }
            /* Χρωματιστή κουκκίδα στη γραμμή */
            .timeline-left::before,
            .timeline-right::before {
                content: '';
                position: absolute;
                top: 20px;
                width: 14px; height: 14px;
                border-radius: 50%;
                background: var(--accent);
                border: 3px solid var(--white);
                box-shadow: 0 0 0 2px var(--accent);
                z-index: 2;
            }
            .timeline-left::before { right: -26px; }
            .timeline-right::before { left: -26px; }
            /* Βελάκι που δείχνει τη γραμμή */
            .timeline-left::after {
                content: '';
                position: absolute; top: 18px; right: -10px;
                width: 0; height: 0;
                border-top: 8px solid transparent;
                border-bottom: 8px solid transparent;
                border-left: 10px solid var(--white);
            }
            .timeline-right::after {
                content: '';
                position: absolute; top: 18px; left: -10px;
                width: 0; height: 0;
                border-top: 8px solid transparent;
                border-bottom: 8px solid transparent;
                border-right: 10px solid var(--white);
            }
            .timeline-left .timeline-text,
            .timeline-right .timeline-text {
                margin: 0; max-width: 100%;
            }
            .timeline-year {
                font-size: 1.5rem;
                background: linear-gradient(135deg, var(--accent), var(--primary));
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }
            .timeline-text { font-size: 0.82rem; line-height: 1.55; }
            .news-grid { grid-template-columns: 1fr 1fr; }
            .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 3px; }
            .gallery .section-header { padding: 0 16px; }
            .gallery-item:first-child { grid-column: span 2; grid-row: span 1; aspect-ratio: 21/9; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .about-stats-row { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }

            .stat-item:not(:last-child)::after { display: none; }
            .stat-number { font-size: 2.5rem; }

            .section-header h2 { font-size: 1.7rem; }
            section { padding: 60px 0; }

            .quote-inner { flex-direction: column; gap: 20px; text-align: center; }
            .quote-text blockquote { font-size: 1.2rem; }

            .form-row { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
        }

        @media (max-width: 480px) {
            .hero { height: auto !important; max-height: none !important; min-height: auto !important; padding: 30px 0 40px !important; align-items: center !important; }
            .hero-content h1 { font-size: 1.8rem !important; }
            .hero-badge { font-size: 0.6rem !important; padding: 4px 10px !important; }
            .hero-content h1 { font-size: 1.8rem; letter-spacing: 0; line-height: 1.15; }
            .hero-content p { font-size: 0.9rem; }
            .hero-badge { font-size: 0.7rem; padding: 5px 12px; letter-spacing: 1px; }
            .classes-grid { gap: 12px; }
            .hero-buttons { flex-direction: column; }
            .hero-buttons .btn { justify-content: center; }
            .section-header h2 { font-size: 1.7rem; }
            section { padding: 45px 0; }
            .container { padding: 0 15px; }
            .stats-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
            .stat-number { font-size: 2rem; }
            .stats-bar { padding: 40px 0; }
            .about-grid { gap: 30px; }
            .about-text h3 { font-size: 1.3rem; }
            .about-image img { height: 250px; }
            .about-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
            .stat .number { font-size: 1.8rem; }
            .timeline-year { font-size: 1.6rem; }
            .timeline-text { font-size: 0.85rem; }
            .timeline-left, .timeline-right { padding: 12px 12px 12px 48px; }
            .philosophy-card { padding: 20px 16px; }
            .philosophy-card .phi-icon { width: 40px; height: 40px; font-size: 1rem; border-radius: 12px; margin-bottom: 12px; }
            .philosophy-card h4 { font-size: 0.92rem; }
            .philosophy-card p { font-size: 0.8rem; }
            .class-card-image { height: 180px; }
            .program-tabs { gap: 5px; }
            .program-tab { padding: 8px 14px; font-size: 0.75rem; }
            .program-info h3 { font-size: 1.3rem; }
            .program-image img { height: 250px; }
            .program-layout { gap: 30px; }
            .service-card-image { height: 140px; }
            .services-grid { gap: 15px; }
            .news-card-image { height: 120px; }
            .news-card-body { padding: 12px; }
            .news-card-body h4 { font-size: 0.88rem; }
            .news-card .news-read-more { font-size: 0.75rem; }
            .gallery-grid { gap: 3px; }
            .quote-section { padding: 60px 0; }
            .quote-text blockquote { font-size: 1rem; }
            .quote-icon { font-size: 4rem; }
            .contact-grid { gap: 30px; }
            .contact-form-wrap { padding: 25px 20px; }
            .contact-info { padding: 25px 20px; }
            .captcha-box { flex-direction: column; align-items: stretch; gap: 8px; }
            .captcha-box input { width: 100% !important; }
            .map-section { height: 280px; }
            .sound-toggle { bottom: 15px; right: 15px; width: 40px; height: 40px; font-size: 0.9rem; }
            .back-to-top { bottom: calc(100px + env(safe-area-inset-bottom, 0px)) !important; right: 15px; left: auto; width: 40px; height: 40px; font-size: 1rem; }
        }

        @media (max-width: 360px) {
            .hero-content h1 { font-size: 1.4rem; }
            .navbar-logo img { height: 45px; }
            .program-tabs { flex-direction: column; align-items: stretch; }
            .program-tab { text-align: center; }
        }

        /* ========== 3D & SPATIAL DESIGN ========== */

        /* 3D Tilt on Bento cards */
        .tilt-3d {
            transform-style: preserve-3d;
            perspective: 1000px;
            transition: transform 0.15s ease-out;
        }

        .tilt-3d .tilt-inner {
            transform: translateZ(30px);
            transition: transform 0.3s ease;
        }

        /* Glassmorphism */
        .glass {
            background: rgba(255,255,255,0.65) !important;
            backdrop-filter: blur(16px) saturate(180%);
            -webkit-backdrop-filter: blur(16px) saturate(180%);
            border: 1px solid rgba(255,255,255,0.3);
        }

        .glass-dark {
            background: rgba(26,26,46,0.65) !important;
            backdrop-filter: blur(16px) saturate(180%);
            -webkit-backdrop-filter: blur(16px) saturate(180%);
            border: 1px solid rgba(255,255,255,0.1);
        }

        /* Floating elements */
        .float-element {
            animation: floatY 4s ease-in-out infinite;
        }

        .float-element-delay { animation-delay: -2s; }

        @keyframes floatY {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }

        /* Parallax depth layers */
        .parallax-section {
            position: relative;
            overflow: hidden;
        }

        .parallax-bg {
            position: absolute;
            inset: -50px;
            z-index: 0;
            will-change: transform;
        }

        .parallax-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .parallax-content {
            position: relative;
            z-index: 2;
        }

        /* 3D Card flip */
        .flip-card {
            perspective: 1000px;
            height: 100%;
        }

        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            transform-style: preserve-3d;
        }

        .flip-card:hover .flip-card-inner {
            transform: rotateY(180deg);
        }

        .flip-card-front, .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 20px;
            overflow: hidden;
        }

        .flip-card-back {
            transform: rotateY(180deg);
            background: var(--primary);
            color: #fff;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 25px;
        }

        .flip-card-back h4 {
            font-family: 'Manrope', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .flip-card-back p {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.85);
            line-height: 1.5;
        }

        /* Depth shadow on hover */
        .depth-shadow {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .depth-shadow:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow:
                0 14px 28px rgba(0,0,0,0.12),
                0 10px 10px rgba(0,0,0,0.08);
        }

        /* Spatial gradient orbs (background decoration) */
        .spatial-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.12;
            pointer-events: none;
            z-index: 0;
        }

        .spatial-orb-blue {
            background: var(--primary);
            width: 400px;
            height: 400px;
        }

        .spatial-orb-gold {
            background: var(--gold);
            width: 300px;
            height: 300px;
        }

        /* Glassmorphism for bento stat cards */
        .bento-stat {
            background: rgba(247,248,252,0.7);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255,255,255,0.6);
        }

        /* 3D perspective on bento facilities */
        .bento-fac-img:hover img {
            transform: scale(1.08);
            transition: transform 0.5s ease;
        }

        .bento-fac-img img {
            transition: transform 0.5s ease;
        }

        /* Elevated navbar with glass */
        .navbar.scrolled {
            background: rgba(255,255,255,0.85);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
        }

        /* Philosophy cards - 3D depth */
        .philosophy-card {
            transform-style: preserve-3d;
            perspective: 800px;
        }

        .philosophy-card:hover {
            transform: translateY(-8px) rotateX(2deg);
        }

        .philosophy-card .phi-icon {
            transform: translateZ(20px);
        }

        /* Class cards - depth effect */
        .class-card:hover .class-card-image img {
            transform: scale(1.1) translateZ(10px);
        }

        /* Paroxi blocks - subtle parallax on image */
        .paroxi-block-img img {
            transition: transform 0.6s ease;
        }

        .paroxi-block:hover .paroxi-block-img img {
            transform: scale(1.05);
        }

        /* News cards - spatial lift (desktop only) */
        @media (min-width: 769px) {
            .news-card {
                transform-style: preserve-3d;
            }

            .news-card:hover {
                transform: translateY(-10px) rotateX(1deg);
                box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            }
        }

        /* Contact form & info - glass effect */
        .contact-form-wrap,
        .contact-info {
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(12px);
        }

        /* Gallery items - 3D pop */
        .gallery-item:hover img {
            transform: scale(1.08) translateZ(20px);
        }

        /* ========== ANIMATIONS ========== */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.5s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-40px);
            transition: opacity 0.5s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
        }

        .reveal-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* Intro reel section — directly under Hero, white bg */
        .intro-reel-section {
            background: #ffffff;
            padding: 80px 0;
            margin-top: 80px;
            position: relative;
        }
        .intro-reel-section .container {
            max-width: none;
            padding-left: 80px;
            padding-right: 80px;
            margin: 0;
        }
        .intro-reel-section .intro-reel-grid {
            display: grid;
            grid-template-columns: 1fr 1.6fr 1fr;
            align-items: center;
            gap: 60px;
            max-width: none;
        }
        .intro-video-wrap {
            border-radius: 24px;
            overflow: hidden;
            background: #0a1929;
            box-shadow: 0 20px 50px rgba(0,0,0,0.18);
            aspect-ratio: 9/16;
            width: 100%;
            margin: 0;
        }
        .intro-reel-section .intro-reel-text {
            text-align: left;
            padding: 20px 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-self: stretch;
            max-width: 560px;
            margin: 0 auto;
            gap: 14px;
            position: relative;
        }
        .intro-reel-section .intro-reel-text > * { margin: 0; }
        .intro-reel-section .intro-reel-text .ir-title { margin: 0 0 4px; }
        /* Fade column content while philosophy letter is open */
        .intro-reel-section .intro-reel-text > *:not(#philosophyPanel) {
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        .intro-reel-section .intro-reel-text.phi-active > *:not(#philosophyPanel) {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }
        /* Philosophy CTA button — attractive single CTA in intro reel */
        .phi-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            font-family: 'Quicksand', sans-serif;
            padding: 14px 24px 14px 18px;
            border-radius: 60px;
            background: linear-gradient(135deg, #1a3c5e 0%, #2c5984 50%, #0077B6 100%);
            color: #fff;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 28px rgba(0,119,182,0.32), 0 2px 8px rgba(26,60,94,0.2);
            transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
            text-align: left;
        }
        .phi-cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 60%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
            transition: left 0.7s ease;
        }
        .phi-cta-btn:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 14px 40px rgba(0,119,182,0.45), 0 4px 12px rgba(26,60,94,0.25);
        }
        .phi-cta-btn:hover::before { left: 130%; }
        .phi-cta-btn:active { transform: translateY(-1px) scale(1.0); }
        .phi-cta-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(255,255,255,0.15);
            color: #FFB703;
            font-size: 1.1rem;
            flex-shrink: 0;
            animation: phiCompass 4s ease-in-out infinite;
        }
        @keyframes phiCompass {
            0%, 100% { transform: rotate(-8deg); }
            50% { transform: rotate(8deg); }
        }
        .phi-cta-text { display: flex; flex-direction: column; line-height: 1.15; }
        .phi-cta-label {
            font-size: 0.66rem;
            font-weight: 600;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.7);
            margin-bottom: 3px;
        }
        .phi-cta-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.2px;
        }
        .phi-cta-arrow {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: rgba(255,255,255,0.12);
            color: #fff;
            font-size: 0.78rem;
            margin-left: 4px;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .phi-cta-btn:hover .phi-cta-arrow {
            transform: translateX(4px);
            background: rgba(255,255,255,0.22);
        }
        /* Subtle pulsing ring for attention */
        .phi-cta-btn::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 60px;
            border: 2px solid rgba(0,119,182,0.4);
            opacity: 0;
            animation: phiPulseRing 2.6s ease-out infinite;
            pointer-events: none;
        }
        @keyframes phiPulseRing {
            0% { opacity: 0.6; transform: scale(0.96); }
            70% { opacity: 0; transform: scale(1.08); }
            100% { opacity: 0; transform: scale(1.08); }
        }
        @media (max-width: 480px) {
            .phi-cta-btn { padding: 12px 20px 12px 14px; gap: 10px; }
            .phi-cta-icon { width: 38px; height: 38px; font-size: 1rem; }
            .phi-cta-title { font-size: 0.95rem; }
            .phi-cta-label { font-size: 0.62rem; letter-spacing: 2px; }
            .phi-cta-arrow { width: 26px; height: 26px; }
        }
        @media (prefers-reduced-motion: reduce) {
            .phi-cta-icon, .phi-cta-btn::after { animation: none; }
        }

        /* Philosophy panel — overlay over the text column when open */
        .intro-reel-section #philosophyPanel {
            position: absolute;
            top: -10px;
            left: -16px;
            right: -16px;
            z-index: 9999;
            margin-top: 0 !important;
            pointer-events: none;
        }
        /* Lift the section + text column ABOVE the next section while panel is open */
        .intro-reel-section:has(.phi-active) { z-index: 100; }
        .intro-reel-section .intro-reel-text.phi-active { z-index: 100; }
        .intro-reel-section #philosophyPanel.phi-open { pointer-events: auto; }
        .intro-reel-section #philosophyPanel .phi-letter {
            transform-origin: top center;
            box-shadow: 0 30px 80px rgba(0,0,0,0.18), 0 10px 30px rgba(0,180,216,0.08) !important;
        }
        /* Close X — sits at top-right of the letter itself */
        .intro-reel-section #philosophyPanel .phi-close-x {
            top: 12px !important;
            right: 12px !important;
            width: 38px !important;
            height: 38px !important;
            background: var(--dark) !important;
            color: #fff !important;
            font-size: 0.95rem !important;
            box-shadow: 0 4px 14px rgba(0,0,0,0.18) !important;
            z-index: 5;
        }
        .intro-reel-section #philosophyPanel .phi-close-x:hover {
            background: var(--primary) !important;
            transform: rotate(90deg) !important;
        }
        @media (max-width: 968px) {
            .intro-reel-section #philosophyPanel { left: -8px; right: -8px; top: -6px; }
        }
        /* Minimal social row — thin divider, label, icons */
        .ir-social-row {
            display: flex;
            align-items: center;
            gap: 14px;
            padding-top: 18px;
            margin-top: 8px;
            border-top: 1px solid rgba(0,0,0,0.08);
            flex-wrap: wrap;
        }
        .ir-social-label {
            font-family: 'Manrope', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--text-light);
            letter-spacing: 1.2px;
            text-transform: uppercase;
            margin-right: 4px;
        }
        .ir-soc-min {
            width: 32px; height: 32px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            background: rgba(0,0,0,0.04);
            text-decoration: none;
            transition: all 0.25s ease;
            font-size: 0.85rem;
        }
        .ir-soc-min:hover { transform: translateY(-2px); color: #fff; }
        .ir-soc-ig-min:hover { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
        .ir-soc-fb-min:hover { background: #1877f2; }
        .ir-soc-yt-min:hover { background: #ff0000; }
        .ir-handle {
            font-family: 'Manrope', sans-serif;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--primary);
            text-decoration: none;
            margin-left: auto;
            transition: color 0.2s;
        }
        .ir-handle:hover { color: var(--primary-dark); }
        /* Right column — photo slideshow with arrows + dots */
        .about-reel-slideshow {
            position: relative;
            width: 100%;
            aspect-ratio: 9/16;
            border-radius: 24px;
            overflow: visible;
            background: #0a1929;
            box-shadow: 0 20px 50px rgba(0,0,0,0.18);
        }
        .about-reel-slideshow > .abr-slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border-radius: 24px;
            opacity: 0;
            transition: opacity 0.8s ease;
        }
        .about-reel-slideshow > .abr-slide.active { opacity: 1; }
        .abr-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px; height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.95);
            color: var(--dark);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            box-shadow: 0 4px 14px rgba(0,0,0,0.3);
            transition: transform 0.25s ease, background 0.25s ease;
            z-index: 3;
        }
        .abr-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.1); }
        .abr-prev { left: 12px; }
        .abr-next { right: 12px; }
        .abr-dots {
            position: absolute;
            bottom: 14px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 6px;
            z-index: 3;
        }
        .abr-dot {
            width: 8px; height: 8px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: background 0.2s;
        }
        .abr-dot.active { background: #fff; transform: scale(1.2); }
        .abr-years {
            position: absolute !important;
            bottom: 16px !important;
            left: -14px !important;
            top: auto !important;
            right: auto !important;
            z-index: 5;
            width: auto !important;
        }
        @media (max-width: 1024px) {
            .intro-reel-section .intro-reel-grid {
                grid-template-columns: 1fr;
            }
            .intro-video-wrap, .about-reel-slideshow {
                aspect-ratio: 4/5;
                max-width: 500px;
                margin: 0 auto;
            }
            .abr-years { right: 12px !important; }
        }
        .intro-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        @media (max-width: 900px) {
            .intro-reel-section { margin-top: 40px; padding: 50px 0; }
            .intro-reel-section .container { padding-left: 12px; padding-right: 12px; }
            .intro-reel-section .intro-reel-grid {
                display: flex !important;
                flex-direction: column !important;
                gap: 28px;
            }
            .intro-video-wrap {
                width: 100% !important;
                max-width: 100% !important;
                aspect-ratio: 9/16 !important;
                max-height: 560px;
                margin: 0;
                border-radius: 18px;
            }
            .intro-reel-section .intro-reel-text {
                max-width: 100%;
                padding: 0 12px;
                text-align: center;
            }
            .intro-reel-section .ir-actions { justify-content: center; }
        }

        /* INTRO REEL — modern Instagram showcase */
        .intro-reel-text { padding: 0 10px; }
        .ir-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 7px 16px 7px 10px;
            background: linear-gradient(135deg, rgba(131,58,180,0.10), rgba(252,176,69,0.10));
            border: 1px solid rgba(131,58,180,0.25);
            border-radius: 50px;
            font-family: 'Manrope', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            color: #833ab4;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 24px;
        }
        .ir-eyebrow i {
            background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 1rem;
        }
        .ir-title {
            font-family: 'Playfair Display', 'Quicksand', serif;
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 700;
            color: #333333 !important;
            line-height: 1.1;
            letter-spacing: -0.5px;
            margin-bottom: 18px;
            opacity: 1 !important;
            text-shadow: none !important;
        }
        .ir-title em {
            font-style: italic;
            color: var(--primary) !important;
            text-shadow: none !important;
        }
        .ir-text {
            font-family: 'Quicksand', sans-serif;
            font-size: 1.02rem;
            color: #555555 !important;
            line-height: 1.75;
            margin-bottom: 30px;
            max-width: 480px;
            opacity: 1 !important;
            text-shadow: none !important;
        }
        .ir-text strong { color: #333333 !important; font-weight: 700; }
        /* Catch-all for any text inside intro-reel-text */
        .intro-reel-text h1, .intro-reel-text h2, .intro-reel-text h3, .intro-reel-text p, .intro-reel-text strong {
            color: #333333 !important;
            text-shadow: none !important;
            opacity: 1 !important;
        }
        .intro-reel-text em { color: var(--primary) !important; }
        .ir-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
        .ir-ig-btn {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            padding: 12px 22px 12px 14px;
            background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
            color: #fff;
            border-radius: 50px;
            text-decoration: none;
            box-shadow: 0 10px 28px rgba(131,58,180,0.45);
            transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
            text-align: left;
        }
        .ir-ig-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(131,58,180,0.6); color: #fff; }
        .ir-ig-btn > i {
            width: 38px; height: 38px;
            border-radius: 50%;
            background: rgba(255,255,255,0.22);
            display: flex; align-items: center; justify-content: center;
            font-size: 1.1rem;
        }
        .ir-ig-btn span { display: flex; flex-direction: column; }
        .ir-ig-btn strong { font-family: 'Quicksand', sans-serif; font-size: 0.92rem; font-weight: 700; line-height: 1.1; }
        .ir-ig-btn small { font-family: 'Manrope', sans-serif; font-size: 0.7rem; opacity: 0.92; }
        .ir-fb-btn, .ir-yt-btn {
            width: 50px; height: 50px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            transition: transform 0.25s ease, background 0.25s ease;
        }
        .ir-fb-btn { background: #1877f2; box-shadow: 0 6px 18px rgba(24,119,242,0.4); }
        .ir-yt-btn { background: #ff0000; box-shadow: 0 6px 18px rgba(255,0,0,0.35); }
        .ir-fb-btn:hover, .ir-yt-btn:hover { transform: translateY(-3px); color: #fff; }
        @media (max-width: 768px) {
            .intro-reel-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
            .intro-reel-text { text-align: center; padding: 0; }
            .ir-text { margin-left: auto; margin-right: auto; }
            .ir-actions { justify-content: center; }
        }

        /* VIDEO SHOWCASE — split with explicit CTA */
        .vs-split {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 50px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        .vs-info { color: #fff; }
        .vs-info h2 {
            font-family: 'Playfair Display', 'Quicksand', serif;
            font-size: clamp(1.8rem, 3.6vw, 2.6rem);
            font-weight: 700;
            color: #fff;
            line-height: 1.15;
            letter-spacing: -0.5px;
            margin: 16px 0 16px;
        }
        .vs-info-text {
            font-family: 'Quicksand', sans-serif;
            font-size: 1rem;
            color: rgba(255,255,255,0.78);
            line-height: 1.65;
            margin-bottom: 28px;
            max-width: 460px;
        }
        .vs-watch-btn {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            padding: 14px 24px 14px 14px;
            background: var(--accent);
            color: #fff;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            box-shadow: 0 12px 32px rgba(226,114,91,0.45);
            transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
            text-align: left;
            font-family: inherit;
        }
        .vs-watch-btn:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(226,114,91,0.6); }
        .vs-watch-icon {
            width: 44px; height: 44px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            display: flex; align-items: center; justify-content: center;
            font-size: 1rem;
            color: #fff;
        }
        .vs-watch-text strong {
            font-family: 'Quicksand', sans-serif;
            display: block;
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            line-height: 1.1;
        }
        .vs-watch-text small {
            font-family: 'Manrope', sans-serif;
            font-size: 0.72rem;
            color: rgba(255,255,255,0.85);
            font-weight: 500;
        }

        .vs-thumb {
            position: relative;
            aspect-ratio: 16/10;
            border-radius: 24px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 30px 70px rgba(0,0,0,0.45);
            transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
        }
        .vs-thumb:hover { transform: translateY(-6px) scale(1.01); }
        .vs-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
        .vs-thumb:hover img { transform: scale(1.06); }
        .vs-thumb-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.25), rgba(0,0,0,0.5));
            transition: background 0.4s ease;
        }
        .vs-thumb:hover .vs-thumb-overlay { background: linear-gradient(135deg, rgba(0,0,0,0.15), rgba(0,0,0,0.35)); }
        .vs-thumb-play {
            position: absolute; top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 92px; height: 92px;
            border-radius: 50%;
            background: rgba(255,255,255,0.95);
            color: var(--accent);
            display: flex; align-items: center; justify-content: center;
            font-size: 1.8rem;
            padding-left: 5px;
            box-shadow: 0 12px 36px rgba(0,0,0,0.35), 0 0 0 0 rgba(226,114,91,0.6);
            animation: vsThumbPulse 2.4s ease-out infinite;
        }
        @keyframes vsThumbPulse {
            0%, 100% { box-shadow: 0 12px 36px rgba(0,0,0,0.35), 0 0 0 0 rgba(226,114,91,0.6); }
            50%      { box-shadow: 0 12px 36px rgba(0,0,0,0.35), 0 0 0 22px rgba(226,114,91,0); }
        }
        .vs-thumb:hover .vs-thumb-play { transform: translate(-50%,-50%) scale(1.08); }
        .vs-thumb-badge {
            position: absolute; top: 16px; left: 16px;
            background: rgba(0,0,0,0.7);
            color: #fff;
            padding: 5px 12px;
            border-radius: 50px;
            font-family: 'Manrope', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            text-transform: uppercase;
            letter-spacing: 1px;
            backdrop-filter: blur(8px);
        }
        @media (max-width: 900px) {
            .vs-split { grid-template-columns: 1fr; gap: 30px; }
            .vs-info { text-align: center; }
            .vs-info-text { margin-left: auto; margin-right: auto; }
            .vs-watch-btn { margin: 0 auto; }
            .vs-thumb-play { width: 70px; height: 70px; font-size: 1.4rem; }
        }

        /* VIDEO SHOWCASE */
        .video-showcase { padding: 80px 0; background: linear-gradient(135deg, #0a1929 0%, #15263d 100%); position: relative; overflow: hidden; }
        .video-showcase::before { content:''; position:absolute; inset:0; background:radial-gradient(circle at 20% 30%, rgba(0,180,216,0.18), transparent 50%), radial-gradient(circle at 80% 70%, rgba(255,107,53,0.12), transparent 50%); pointer-events:none; }
        .video-showcase .section-header h2 { color:#fff; }
        .video-showcase .section-header p { color: rgba(255,255,255,0.75); }
        .video-showcase .section-badge { background: rgba(255,255,255,0.1); color:#fff; border:1px solid rgba(255,255,255,0.2); }
        .vs-poster {
            position: relative; max-width: 1000px; margin: 40px auto 0;
            aspect-ratio: 16/9; border-radius: 24px; overflow: hidden;
            cursor: pointer; box-shadow: 0 30px 80px rgba(0,0,0,0.5);
            transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
        }
        .vs-poster:hover { transform: translateY(-6px) scale(1.01); }
        .vs-poster img { width:100%; height:100%; object-fit:cover; transition: transform 0.6s ease; }
        .vs-poster:hover img { transform: scale(1.05); }
        .vs-overlay { position:absolute; inset:0; background: linear-gradient(135deg, rgba(0,0,0,0.2), rgba(0,0,0,0.4)); transition: background 0.4s ease; }
        .vs-poster:hover .vs-overlay { background: linear-gradient(135deg, rgba(0,0,0,0.1), rgba(0,0,0,0.25)); }
        .vs-play {
            position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
            width: 90px; height: 90px; border-radius:50%;
            background: rgba(255,255,255,0.95); color: var(--primary, #00b4d8);
            display:flex; align-items:center; justify-content:center;
            font-size: 1.8rem; padding-left: 6px;
            box-shadow: 0 10px 40px rgba(0,180,216,0.5);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            z-index: 2;
        }
        .vs-poster:hover .vs-play { transform:translate(-50%,-50%) scale(1.1); box-shadow: 0 15px 50px rgba(0,180,216,0.7); }
        .vs-pulse { position:absolute; top:50%; left:50%; width: 90px; height: 90px; border-radius:50%; transform:translate(-50%,-50%); border: 3px solid rgba(255,255,255,0.6); animation: vsPulse 2s ease-out infinite; z-index:1; }
        @keyframes vsPulse {
            0% { transform:translate(-50%,-50%) scale(1); opacity:0.8; }
            100% { transform:translate(-50%,-50%) scale(1.8); opacity:0; }
        }
        @media (max-width: 768px) {
            .video-showcase { padding: 50px 0; }
            .vs-play, .vs-pulse { width:64px; height:64px; }
            .vs-play { font-size:1.3rem; padding-left:4px; }
            .vs-poster { border-radius:18px; margin-top:24px; }
        }

        /* CONTACT MAP */
        .contact-map-wrap { margin-top: 50px; background: #fff; border-radius: 20px; box-shadow: 0 8px 30px rgba(0,0,0,0.06); overflow: hidden; }
        .contact-map-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 28px; border-bottom: 1px solid #f0f2f5; flex-wrap: wrap; }
        .contact-map-info { display: flex; align-items: center; gap: 16px; }
        .contact-map-info > i { font-size: 2rem; color: var(--primary); flex-shrink: 0; }
        .contact-map-info h3 { font-family:'Quicksand',sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--dark); margin: 0 0 4px; }
        .contact-map-info p { font-family:'Quicksand',sans-serif; font-size: 0.88rem; color: var(--text-light); margin: 0; }
        .contact-map-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 50px; background: var(--primary); color: #fff; font-family:'Quicksand',sans-serif; font-weight: 700; font-size: 0.88rem; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 14px rgba(0,180,216,0.3); }
        .contact-map-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,180,216,0.4); }
        .contact-map-frame { position: relative; width: 100%; aspect-ratio: 16/9; max-height: 460px; }
        .contact-map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
        @media (max-width: 768px) {
            .contact-map-wrap { margin-top: 30px; border-radius: 16px; }
            .contact-map-head { padding: 16px 18px; }
            .contact-map-info > i { font-size: 1.5rem; }
            .contact-map-info h3 { font-size: 0.98rem; }
            .contact-map-info p { font-size: 0.8rem; }
            .contact-map-btn { padding: 10px 16px; font-size: 0.8rem; }
            .contact-map-frame { aspect-ratio: 4/3; }
        }

        /* TESTIMONIALS */
        .testimonials-section { padding: 90px 0; background: linear-gradient(135deg, #fff8f0 0%, #fff 100%); position:relative; overflow:hidden; }
        .testimonials-section::before { content:''; position:absolute; top:-100px; right:-100px; width:300px; height:300px; border-radius:50%; background: radial-gradient(circle, rgba(0,180,216,0.08), transparent); }
        .testimonials-section::after { content:''; position:absolute; bottom:-100px; left:-100px; width:400px; height:400px; border-radius:50%; background: radial-gradient(circle, rgba(255,107,53,0.06), transparent); }
        .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; margin-top: 50px; position:relative; z-index:1; }
        .testimonial-card { background:#fff; border-radius:20px; padding: 30px 28px 26px; box-shadow: 0 8px 30px rgba(0,0,0,0.06); position:relative; transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease; border-top: 4px solid var(--primary); }
        .testimonial-card:hover { transform: translateY(-8px); box-shadow: 0 18px 50px rgba(0,180,216,0.15); }
        .t-quote-mark { position:absolute; top: 18px; right: 22px; font-size: 2.2rem; color: rgba(0,180,216,0.15); }
        .t-stars { color: #FFB800; font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 14px; }
        .t-quote { font-family:'Quicksand',sans-serif; font-size: 0.98rem; color: #333; line-height: 1.75; font-style: italic; margin-bottom: 22px; min-height: 110px; }
        .t-author { display:flex; align-items:center; gap:14px; padding-top: 18px; border-top: 1px solid #f0f2f5; }
        .t-avatar { width: 48px; height: 48px; border-radius:50%; background: linear-gradient(135deg, var(--primary), var(--accent)); color:#fff; display:flex; align-items:center; justify-content:center; font-family:'Quicksand',sans-serif; font-weight:700; font-size:1.1rem; flex-shrink:0; }
        .t-name { font-family:'Quicksand',sans-serif; font-weight:700; color: var(--dark); font-size: 0.95rem; }
        .t-info { font-family:'Quicksand',sans-serif; font-size: 0.8rem; color: var(--text-light); }
        @media (max-width: 768px) {
            .testimonials-section { padding: 60px 0; }
            .testimonials-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 30px; }
            .testimonial-card { padding: 24px 22px 20px; }
            .t-quote { min-height: auto; font-size: 0.92rem; }
        }

        /* STICKY CTA */
        .sticky-cta {
            position: fixed; right: 22px; bottom: 22px; z-index: 9000;
            display: inline-flex; align-items: center; gap: 10px;
            padding: 14px 22px; border-radius: 50px;
            background: linear-gradient(135deg, var(--accent, #FF6B35), #E65100);
            color: #fff; border: none; cursor: pointer;
            font-family:'Quicksand',sans-serif; font-weight: 700; font-size: 0.95rem;
            box-shadow: 0 8px 28px rgba(255,107,53,0.45), 0 0 0 0 rgba(255,107,53,0.5);
            animation: ctaPulse 2.4s ease-out infinite;
            transition: transform 0.3s ease;
        }
        .sticky-cta:hover { transform: scale(1.05); }
        .sticky-cta i { font-size: 1.1rem; }
        @keyframes ctaPulse {
            0%, 100% { box-shadow: 0 8px 28px rgba(255,107,53,0.45), 0 0 0 0 rgba(255,107,53,0.5); }
            50% { box-shadow: 0 8px 28px rgba(255,107,53,0.45), 0 0 0 14px rgba(255,107,53,0); }
        }
        @media (max-width: 768px) {
            .sticky-cta { right: 14px; bottom: 84px; padding: 12px 16px; font-size: 0.85rem; }
            .sticky-cta-text { display: none; }
            .sticky-cta { padding: 14px; width: 54px; height: 54px; justify-content:center; border-radius: 50%; }
            .sticky-cta i { font-size: 1.3rem; }
        }

        /* VISIT MODAL */
        .visit-modal { position:fixed; inset:0; background:rgba(0,0,0,0.7); backdrop-filter:blur(8px); z-index:99999; display:none; align-items:center; justify-content:center; padding:18px; opacity:0; transition:opacity 0.3s ease; }
        .visit-modal.open { display:flex; opacity:1; }
        .vm-inner { background:#fff; border-radius:24px; max-width:520px; width:100%; padding: 36px 32px 28px; position:relative; max-height: 92vh; overflow-y:auto; }
        .vm-close { position:absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius:50%; background: #f0f2f5; color: #333; border:none; font-size: 1.4rem; cursor:pointer; display:flex; align-items:center; justify-content:center; transition: background 0.2s; }
        .vm-close:hover { background: #e0e2e8; }
        .vm-head { text-align:center; margin-bottom: 22px; }
        .vm-icon { width: 64px; height: 64px; border-radius:50%; background: linear-gradient(135deg, var(--accent, #FF6B35), #E65100); color:#fff; font-size: 1.6rem; display:inline-flex; align-items:center; justify-content:center; margin-bottom: 12px; box-shadow: 0 8px 24px rgba(255,107,53,0.35); }
        .vm-head h3 { font-family:'Quicksand',sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
        .vm-head p { font-family:'Quicksand',sans-serif; font-size: 0.9rem; color: var(--text-light); line-height: 1.5; }
        .vm-form { display: flex; flex-direction: column; gap: 12px; }
        .vm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .vm-form input, .vm-form select, .vm-form textarea { width: 100%; padding: 13px 16px; border:2px solid #e8eaf0; border-radius: 12px; font-family:'Quicksand',sans-serif; font-size: 0.92rem; outline: none; transition: border-color 0.2s; }
        .vm-form input:focus, .vm-form select:focus, .vm-form textarea:focus { border-color: var(--accent, #FF6B35); }
        .vm-submit { padding: 14px; background: linear-gradient(135deg, var(--accent, #FF6B35), #E65100); color:#fff; border:none; border-radius: 12px; font-family:'Quicksand',sans-serif; font-weight: 700; font-size: 0.95rem; cursor: pointer; display: inline-flex; align-items:center; justify-content:center; gap: 8px; box-shadow: 0 6px 18px rgba(255,107,53,0.35); transition: transform 0.2s; }
        .vm-submit:hover { transform: translateY(-2px); }
        .vm-note { font-family:'Quicksand',sans-serif; font-size: 0.78rem; color: var(--text-light); text-align: center; margin: 4px 0 0; }
        @media (max-width: 480px) {
            .vm-inner { padding: 28px 22px 22px; }
            .vm-row { grid-template-columns: 1fr; }
        }

        /* VIDEO MODAL */
        .vmodal { position: fixed; inset:0; background: rgba(0,0,0,0.92); z-index:9999; display:none; align-items:center; justify-content:center; padding: 20px; backdrop-filter: blur(8px); opacity:0; transition: opacity 0.3s ease; }
        .vmodal.open { display:flex; opacity:1; }
        .vmodal-inner { position: relative; width: 100%; max-width: 1100px; aspect-ratio: 16/9; }
        .vmodal-inner video, .vmodal-inner iframe { width:100%; height:100%; border-radius:14px; background:#000; outline:none; border:none; }
        .vmodal-close { position:absolute; top:-50px; right:0; width:40px; height:40px; border-radius:50%; background:rgba(255,255,255,0.15); color:#fff; border:none; font-size:1.6rem; cursor:pointer; display:flex; align-items:center; justify-content:center; transition: background 0.2s; }
        .vmodal-close:hover { background:rgba(255,255,255,0.3); }
        @media (max-width: 768px) {
            .vmodal-close { top:auto; bottom:-50px; right:50%; transform:translateX(50%); }
        }
    