:root {
            --pink: #ef7e82;
            --pink-light: #f4a5a8;
            --teal: #03b4bc;
            --teal-dark: #005c60;
            --blue: #2e7abe;
            --blue-dark: #095ba5;
            --navy: #183050;
            --navy-deep: #0f1f35;
            --white: #ffffff;
            --gray-50: #f8fafb;
            --gray-100: #eef2f5;
            --gray-200: #dce3e8;
            --gray-600: #5a6a7a;
            --gray-800: #2a3a4a;
            --font-display: 'Bebas Neue', sans-serif;
            --font-body: 'Nunito Sans', sans-serif;
            --section-pad: clamp(60px, 10vw, 120px);
            --container: min(1280px, 92vw);
        }

        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

        body {
            font-family: var(--font-body);
            color: var(--gray-800);
            background: var(--white);
            overflow-x: hidden;
            line-height: 1.7;
        }

        img { max-width: 100%; height: auto; display: block; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        .container { width: var(--container); margin: 0 auto; }

        /* ============ LOADING SCREEN ============ */
        .loader {
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: var(--navy-deep);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 24px;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }

        .loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-logo {
            width: 80px;
            height: 80px;
            animation: loader-pulse 1.2s ease-in-out infinite;
        }

        .loader-bar {
            width: 120px;
            height: 3px;
            background: rgba(255,255,255,0.1);
            border-radius: 3px;
            overflow: hidden;
        }

        .loader-bar::after {
            content: '';
            display: block;
            width: 40%;
            height: 100%;
            background: var(--teal);
            border-radius: 3px;
            animation: loader-slide 1s ease-in-out infinite;
        }

        @keyframes loader-pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.08); opacity: 0.7; }
        }

        @keyframes loader-slide {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(350%); }
        }

        /* ============ SECTION LABEL ============ */
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-family: var(--font-display);
            font-size: clamp(13px, 1.2vw, 15px);
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--teal);
            margin-bottom: 16px;
        }

        .section-label::before {
            content: '';
            width: 40px;
            height: 2px;
            background: var(--teal);
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(36px, 5vw, 64px);
            line-height: 1.05;
            color: var(--navy);
            letter-spacing: 1px;
        }

        /* ============ NAVBAR ============ */
        .navbar {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 0 4vw;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .navbar.scrolled {
            background: rgba(15, 31, 53, 0.92);
            backdrop-filter: blur(24px) saturate(180%);
            -webkit-backdrop-filter: blur(24px) saturate(180%);
            box-shadow: 0 4px 30px rgba(0,0,0,0.15), inset 0 -1px 0 rgba(255,255,255,0.05);
        }

        .navbar-inner {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
            transition: height 0.4s ease;
        }

        .navbar.scrolled .navbar-inner { height: 64px; }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .nav-logo img {
            width: 86px; height: 86px;
            transition: all 0.4s ease;
        }

        .navbar.scrolled .nav-logo img { width: 60px; height: 60px; }

        .nav-logo-text {
            font-family: var(--font-display);
            font-size: 22px;
            color: var(--white);
            letter-spacing: 2px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .nav-links a {
            font-size: 15px;
            font-weight: 600;
            color: rgba(255,255,255,0.8);
            padding: 10px 18px;
            border-radius: 6px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 50%; right: 50%;
            height: 2px;
            background: var(--teal);
            border-radius: 2px;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .nav-links a:hover { color: var(--white); }
        .nav-links a:hover::after { left: 16px; right: 16px; }

        .nav-links a.nav-cta {
            background: linear-gradient(135deg, var(--teal), #02a0a7);
            color: var(--white);
            padding: 10px 24px;
            margin-left: 12px;
            border-radius: 8px;
            box-shadow: 0 4px 16px rgba(3, 180, 188, 0.3);
            transition: all 0.3s ease;
        }

        .nav-links a.nav-cta::after { display: none; }

        .nav-links a.nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(3, 180, 188, 0.45);
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            background: none;
            border: none;
        }

        .mobile-toggle span {
            width: 24px; height: 2px;
            background: var(--white);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* ============ HERO ============ */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: var(--navy-deep);
        }

        .hero-canvas {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-bands {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .hero-bands .band {
            position: absolute;
            top: -20%; bottom: -20%;
            transform: skewX(-12deg);
            transform-origin: top;
            will-change: transform;
        }

        .band-1 { left: -8%; width: 22%; background: var(--pink); opacity: 0.85; }
        .band-2 { left: 12%; width: 20%; background: var(--teal); opacity: 0.9; }
        .band-3 { left: 28%; width: 16%; background: var(--teal-dark); opacity: 0.85; }
        .band-4 { left: 40%; width: 22%; background: var(--blue); opacity: 0.9; }
        .band-5 { left: 56%; width: 18%; background: var(--blue-dark); opacity: 0.85; }
        .band-6 { left: 70%; width: 40%; background: var(--navy); }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(15,31,53,0.2) 0%, rgba(15,31,53,0.65) 50%, rgba(15,31,53,0.88) 100%);
            z-index: 1;
        }

        .hero-gradient-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            z-index: 1;
            animation: orb-float 8s ease-in-out infinite;
        }

        .orb-1 {
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(3, 180, 188, 0.2), transparent 70%);
            top: 10%; right: 15%;
        }

        .orb-2 {
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(239, 126, 130, 0.15), transparent 70%);
            bottom: 10%; left: 5%;
            animation-delay: -4s;
        }

        @keyframes orb-float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -20px) scale(1.05); }
            66% { transform: translate(-20px, 15px) scale(0.95); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            width: var(--container);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 60px;
            padding-top: 80px;
        }

        .hero-text { color: var(--white); }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(3, 180, 188, 0.12);
            border: 1px solid rgba(3, 180, 188, 0.25);
            padding: 7px 18px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 600;
            color: var(--teal);
            margin-bottom: 28px;
            backdrop-filter: blur(8px);
        }

        .hero-badge::before {
            content: '';
            width: 6px; height: 6px;
            background: var(--teal);
            border-radius: 50%;
            animation: pulse-dot 2s ease-in-out infinite;
            box-shadow: 0 0 8px var(--teal);
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(1.8); }
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(56px, 7.5vw, 104px);
            line-height: 0.92;
            letter-spacing: 2px;
            margin-bottom: 24px;
        }

        .hero h1 .line {
            display: block;
            overflow: hidden;
        }

        .hero h1 .line-inner {
            display: block;
            transform: translateY(110%);
            animation: line-reveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .hero h1 .line:nth-child(2) .line-inner { animation-delay: 0.12s; }
        .hero h1 .line:nth-child(3) .line-inner { animation-delay: 0.24s; }

        @keyframes line-reveal {
            to { transform: translateY(0); }
        }

        .hero h1 .accent {
            background: linear-gradient(135deg, var(--teal), var(--blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-desc {
            font-size: clamp(16px, 1.3vw, 19px);
            color: rgba(255,255,255,0.65);
            max-width: 480px;
            margin-bottom: 40px;
            line-height: 1.8;
            animation: fade-up 0.8s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: fade-up 0.8s 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
        }

        @keyframes fade-up {
            from { opacity: 0; transform: translateY(24px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 34px;
            border-radius: 10px;
            font-family: var(--font-body);
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            border: none;
            transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
            letter-spacing: 0.3px;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--teal), #02a0a7);
            color: var(--white);
            box-shadow: 0 4px 20px rgba(3, 180, 188, 0.3);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #02a0a7, var(--teal));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .btn-primary:hover::before { opacity: 1; }
        .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(3, 180, 188, 0.45); }
        .btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

        .btn-outline {
            background: rgba(255,255,255,0.04);
            color: var(--white);
            border: 2px solid rgba(255,255,255,0.2);
            backdrop-filter: blur(8px);
        }

        .btn-outline:hover {
            border-color: rgba(255,255,255,0.5);
            background: rgba(255,255,255,0.08);
            transform: translateY(-3px);
        }

        .btn svg { width: 18px; height: 18px; }

        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            animation: fade-up 1s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
        }

        .hero-logo-wrap {
            position: relative;
            width: clamp(300px, 30vw, 440px);
            height: clamp(300px, 30vw, 440px);
        }

        .hero-logo-wrap img {
            width: 100%; height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-18px) rotate(2deg); }
        }

        .hero-ring {
            position: absolute;
            border: 1px solid rgba(3, 180, 188, 0.12);
            border-radius: 50%;
        }

        .hero-ring:nth-child(2) { inset: -30px; animation: ring-spin 20s linear infinite; }
        .hero-ring:nth-child(3) { inset: -65px; animation: ring-spin 30s linear infinite reverse; border-style: dashed; }
        .hero-ring:nth-child(4) { inset: -100px; animation: ring-spin 40s linear infinite; }

        .hero-ring::before {
            content: '';
            position: absolute;
            width: 8px; height: 8px;
            background: var(--teal);
            border-radius: 50%;
            top: 50%;
            box-shadow: 0 0 12px var(--teal);
        }

        @keyframes ring-spin { to { transform: rotate(360deg); } }

        .hero-scroll {
            position: absolute;
            bottom: 32px; left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: rgba(255,255,255,0.35);
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            z-index: 2;
        }

        .scroll-mouse {
            width: 24px; height: 38px;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 12px;
            position: relative;
        }

        .scroll-mouse::after {
            content: '';
            width: 3px; height: 8px;
            background: var(--teal);
            border-radius: 3px;
            position: absolute;
            top: 6px; left: 50%;
            transform: translateX(-50%);
            animation: scroll-wheel 2s ease-in-out infinite;
        }

        @keyframes scroll-wheel {
            0% { opacity: 1; transform: translateX(-50%) translateY(0); }
            100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
        }

        /* ============ WAVE DIVIDER ============ */
        .wave-divider {
            position: relative;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            margin-top: -1px;
        }

        .wave-divider svg {
            display: block;
            width: 100%;
            height: clamp(40px, 6vw, 80px);
        }

        .wave-divider-flip { transform: scaleY(-1); margin-bottom: -1px; margin-top: 0; }

        /* ============ ABOUT ============ */
        .about {
            padding: var(--section-pad) 0;
            background: var(--white);
            position: relative;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-visual { position: relative; }

        .about-img-main {
            width: 100%;
            aspect-ratio: 4/3;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            background: linear-gradient(145deg, var(--teal), var(--blue-dark));
            box-shadow: 0 32px 64px rgba(3, 180, 188, 0.15);
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .about-img-main:hover { transform: scale(1.02) rotate(-0.5deg); }

        .about-img-main::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent 40%, rgba(3,180,188,0.3) 100%);
            z-index: 1;
        }

        .about-img-main::after {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .about-img-main .placeholder-content {
            position: relative; z-index: 2;
            width: 100%; height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            font-family: var(--font-display);
            gap: 8px;
        }

        .placeholder-content svg { width: 64px; height: 64px; opacity: 0.5; }
        .placeholder-content span { font-size: 18px; letter-spacing: 2px; opacity: 0.5; }

        .about-text p {
            color: var(--gray-600);
            font-size: 16px;
            margin-bottom: 20px;
        }

        /* Elnök sub-section a Rólunk alatt */
        .about-president {
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 64px;
            align-items: center;
            margin-top: 96px;
            padding-top: 64px;
            border-top: 1px solid var(--gray-200);
        }

        .president-photo {
            width: 100%;
            aspect-ratio: 4/5;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 24px 48px rgba(15,31,53,0.12);
            background: var(--gray-100);
        }

        .president-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
        }

        .president-info .section-label { margin-bottom: 12px; }

        .president-name {
            font-family: var(--font-display);
            font-size: 36px;
            font-weight: 800;
            color: var(--navy-deep);
            margin: 0 0 8px;
            line-height: 1.1;
        }

        .president-role {
            color: var(--teal);
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 24px;
        }

        .president-info p:not(.president-role) {
            color: var(--gray-600);
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 16px;
        }

        /* ============ DEPARTMENTS ============ */
        .departments {
            padding: var(--section-pad) 0;
            background: var(--navy-deep);
            position: relative;
            overflow: hidden;
        }

        .departments::before {
            content: '';
            position: absolute;
            top: -200px; right: -200px;
            width: 800px; height: 800px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(3, 180, 188, 0.06) 0%, transparent 70%);
        }

        .departments::after {
            content: '';
            position: absolute;
            bottom: -200px; left: -200px;
            width: 600px; height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(239, 126, 130, 0.05) 0%, transparent 70%);
        }

        .departments .section-title { color: var(--white); }

        .dept-header { text-align: center; margin-bottom: 60px; }

        .dept-subtitle {
            color: rgba(255,255,255,0.45);
            font-size: 16px;
            max-width: 560px;
            margin: 16px auto 0;
        }

        .dept-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            position: relative;
            z-index: 1;
        }

        .dept-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 20px;
            padding: 36px 28px;
            transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            backdrop-filter: blur(8px);
        }

        .dept-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: var(--dept-color);
            transform: scaleX(0);
            transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .dept-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at top, var(--dept-color), transparent 70%);
            opacity: 0;
            transition: opacity 0.45s ease;
        }

        .dept-card:hover::before { transform: scaleX(1); }
        .dept-card:hover::after { opacity: 0.06; }
        .dept-card:hover {
            background: rgba(255,255,255,0.07);
            border-color: rgba(255,255,255,0.12);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .dept-card > * { position: relative; z-index: 1; }

        .dept-icon {
            width: 60px; height: 60px;
            border-radius: 16px;
            background: var(--dept-color);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 28px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }

        .dept-icon i { color: white; }
        .dept-card:hover .dept-icon { transform: scale(1.12) rotate(-5deg); }

        .dept-name {
            font-family: var(--font-display);
            font-size: 26px;
            color: var(--white);
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .dept-desc {
            font-size: 14px;
            color: rgba(255,255,255,0.4);
            line-height: 1.65;
            margin-bottom: 24px;
        }

        .dept-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .dept-tag {
            font-size: 12px;
            font-weight: 700;
            color: var(--dept-color);
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .dept-arrow {
            width: 36px; height: 36px;
            border-radius: 50%;
            background: rgba(255,255,255,0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.35s ease;
        }

        .dept-arrow svg,
        .dept-arrow i { width: 16px; height: 16px; color: var(--white); transition: all 0.35s ease; font-size: 16px; }

        .dept-card:hover .dept-arrow { background: var(--dept-color); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
        .dept-card:hover .dept-arrow svg,
        .dept-card:hover .dept-arrow i { color: var(--white); transform: translateX(3px); }

        /* ============ NEWS ============ */
        .news {
            padding: var(--section-pad) 0;
            background: var(--navy-deep);
            position: relative;
            overflow: hidden;
        }

        .news::before {
            content: '';
            position: absolute;
            top: -200px; right: -200px;
            width: 600px; height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(3,180,188,0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .news::after {
            content: '';
            position: absolute;
            bottom: -150px; left: -150px;
            width: 400px; height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(239,126,130,0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .news .section-label { color: var(--teal); }
        .news .section-title { color: var(--white); }

        .news-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 48px;
        }

        .news-header .btn-outline {
            color: rgba(255,255,255,0.7) !important;
            border-color: rgba(255,255,255,0.15) !important;
        }
        .news-header .btn-outline:hover {
            color: var(--white) !important;
            border-color: var(--teal) !important;
            background: rgba(3,180,188,0.1);
        }

        /* --- Featured / Hero card --- */
        .news-featured {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            margin-bottom: 32px;
            min-height: 420px;
            display: flex;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .news-featured:hover { transform: translateY(-4px); box-shadow: 0 30px 80px rgba(0,0,0,0.4); }

        .news-featured-bg {
            position: absolute;
            inset: 0;
            transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .news-featured:hover .news-featured-bg { transform: scale(1.04); }

        .news-featured-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(15,31,53,0.92) 0%, rgba(15,31,53,0.4) 50%, rgba(3,180,188,0.15) 100%);
        }

        .news-featured-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 48px 52px;
            width: 100%;
        }

        .news-featured-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--teal);
            color: var(--white);
            padding: 6px 16px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
            width: fit-content;
            box-shadow: 0 4px 20px rgba(3,180,188,0.4);
        }

        .news-featured-badge svg { width: 14px; height: 14px; }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        .news-featured-badge .pulse-dot {
            width: 6px; height: 6px;
            background: var(--white);
            border-radius: 50%;
            animation: pulse-dot 1.5s ease infinite;
        }

        .news-featured-date {
            font-size: 13px; font-weight: 700;
            color: rgba(255,255,255,0.5);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 12px;
        }

        .news-featured-title {
            font-family: var(--font-display);
            font-size: clamp(32px, 4vw, 48px);
            color: var(--white);
            letter-spacing: 1px;
            line-height: 1.1;
            margin-bottom: 16px;
            max-width: 700px;
        }

        .news-featured-excerpt {
            font-size: 16px;
            color: rgba(255,255,255,0.6);
            line-height: 1.7;
            max-width: 550px;
            margin-bottom: 28px;
        }

        .news-featured-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--teal);
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .news-featured-link svg { width: 18px; height: 18px; transition: transform 0.3s ease; }
        .news-featured:hover .news-featured-link { color: var(--white); }
        .news-featured:hover .news-featured-link svg { transform: translateX(6px); }

        .news-featured-category {
            position: absolute;
            top: 28px; right: 28px;
            padding: 8px 20px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--white);
            backdrop-filter: blur(12px);
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.15);
            z-index: 3;
        }

        /* --- Card grid --- */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .news-card {
            background: rgba(255,255,255,0.04);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
            border: 1px solid rgba(255,255,255,0.06);
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .news-card:hover {
            transform: translateY(-8px);
            background: rgba(255,255,255,0.08);
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
            border-color: rgba(3,180,188,0.3);
        }

        .news-img {
            width: 100%;
            aspect-ratio: 16/10;
            overflow: hidden;
            position: relative;
        }

        .news-img-placeholder {
            width: 100%; height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 14px;
            letter-spacing: 2px;
            color: rgba(255,255,255,0.25);
            transition: all 0.5s ease;
        }

        .news-card:hover .news-img-placeholder { transform: scale(1.08); }

        .news-category {
            position: absolute;
            top: 14px; left: 14px;
            padding: 5px 14px;
            border-radius: 100px;
            font-size: 10px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--white);
            backdrop-filter: blur(8px);
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .news-body {
            padding: 24px 24px 28px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .news-date {
            font-size: 11px; font-weight: 700;
            color: rgba(255,255,255,0.35);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .news-date svg { width: 13px; height: 13px; opacity: 0.5; }

        .news-title {
            font-family: var(--font-display);
            font-size: 22px;
            color: var(--white);
            letter-spacing: 0.5px;
            margin-bottom: 10px;
            line-height: 1.15;
            transition: color 0.3s ease;
        }

        .news-card:hover .news-title { color: var(--teal); }

        .news-excerpt {
            font-size: 14px;
            color: rgba(255,255,255,0.45);
            line-height: 1.7;
            margin-bottom: 20px;
            flex: 1;
        }

        .news-read-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--teal);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            text-decoration: none;
            opacity: 0;
            transform: translateY(8px);
            transition: all 0.35s ease;
        }

        .news-read-more svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
        .news-card:hover .news-read-more { opacity: 1; transform: translateY(0); }
        .news-card:hover .news-read-more svg { transform: translateX(4px); }

        /* ============ TAO CTA ============ */
        .tao-cta {
            padding: var(--section-pad) 0;
            background: var(--white);
        }

        .tao-inner {
            position: relative;
            border-radius: 28px;
            overflow: hidden;
            padding: 80px 60px;
            background: var(--navy-deep);
        }

        .tao-bands {
            position: absolute;
            inset: 0;
            overflow: hidden;
            opacity: 0.25;
        }

        .tao-bands .band {
            position: absolute;
            top: -40%; bottom: -40%;
            transform: skewX(-20deg);
        }

        .tao-band-1 { left: -10%; width: 30%; background: var(--pink); }
        .tao-band-2 { left: 15%; width: 25%; background: var(--teal); }
        .tao-band-3 { left: 35%; width: 20%; background: var(--blue); }

        .tao-content {
            position: relative; z-index: 1;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .tao-text h2 {
            font-family: var(--font-display);
            font-size: clamp(36px, 4vw, 56px);
            color: var(--white);
            line-height: 1.05;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .tao-text p {
            color: rgba(255,255,255,0.6);
            font-size: 17px;
            line-height: 1.8;
            margin-bottom: 32px;
            max-width: 500px;
        }

        .tao-benefits {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .tao-benefit {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 20px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 14px;
            transition: all 0.35s ease;
            backdrop-filter: blur(8px);
        }

        .tao-benefit:hover {
            background: rgba(255,255,255,0.08);
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.15);
        }

        .tao-benefit-icon {
            width: 48px; height: 48px;
            border-radius: 12px;
            background: rgba(3, 180, 188, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .tao-benefit-icon svg { width: 22px; height: 22px; color: var(--teal); }
        .tao-benefit-text { font-size: 14px; font-weight: 700; color: var(--white); }

        /* ============ GALLERY ============ */
        .gallery {
            padding: var(--section-pad) 0;
            background: var(--gray-50);
            position: relative;
        }

        .gallery-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 48px;
        }

        .gallery-header-left { text-align: left; }

        .gallery-subtitle {
            font-size: 15px;
            color: var(--gray-600);
            line-height: 1.7;
            max-width: 500px;
            margin-top: 12px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-template-rows: 280px 280px;
            gap: 16px;
        }

        .gallery-item {
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }

        .gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
        .gallery-item:nth-child(2) { grid-column: span 4; }
        .gallery-item:nth-child(3) { grid-column: span 3; }
        .gallery-item:nth-child(4) { grid-column: span 3; }
        .gallery-item:nth-child(5) { grid-column: span 4; }

        .gallery-placeholder {
            width: 100%; height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.2);
            font-family: var(--font-display);
            font-size: 14px;
            letter-spacing: 2px;
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .gallery-item:hover .gallery-placeholder { transform: scale(1.12); }

        .gallery-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(15,31,53,0.85) 0%, rgba(15,31,53,0.2) 40%, transparent 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .gallery-item:hover::after { opacity: 1; }

        .gallery-item-info {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            padding: 24px;
            z-index: 2;
            opacity: 0;
            transform: translateY(16px);
            transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .gallery-item:hover .gallery-item-info {
            opacity: 1;
            transform: translateY(0);
        }

        .gallery-item-sport {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 100px;
            font-size: 10px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--white);
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(8px);
            margin-bottom: 10px;
        }

        .gallery-item-label {
            color: var(--white);
            font-family: var(--font-display);
            font-size: 22px;
            letter-spacing: 1px;
            display: block;
            margin-bottom: 6px;
        }

        .gallery-item:nth-child(1) .gallery-item-label { font-size: 28px; }

        .gallery-item-count {
            font-size: 12px;
            color: rgba(255,255,255,0.5);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .gallery-item-count svg { width: 14px; height: 14px; }

        .gallery-view-btn {
            position: absolute;
            top: 20px; right: 20px;
            width: 44px; height: 44px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255,255,255,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3;
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .gallery-view-btn svg { width: 18px; height: 18px; color: var(--white); }

        .gallery-item:hover .gallery-view-btn {
            opacity: 1;
            transform: scale(1);
        }

        .gallery-view-btn:hover {
            background: var(--teal);
            border-color: var(--teal);
        }

        .gallery-stats {
            display: flex;
            justify-content: center;
            gap: 48px;
            margin-top: 40px;
            padding-top: 32px;
            border-top: 1px solid var(--gray-200);
        }

        .gallery-stat {
            text-align: center;
        }

        .gallery-stat-num {
            font-family: var(--font-display);
            font-size: 32px;
            color: var(--navy);
            letter-spacing: 1px;
        }

        .gallery-stat-label {
            font-size: 12px;
            font-weight: 700;
            color: var(--gray-600);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-top: 4px;
        }

        /* ============ CALENDAR ============ */
        .calendar {
            padding: var(--section-pad) 0;
            background: var(--gray-50);
            position: relative;
            overflow: hidden;
        }

        .calendar-header { text-align: center; margin-bottom: 48px; }

        .calendar-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .calendar-item {
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 24px;
            align-items: center;
            padding: 24px 28px;
            background: var(--white);
            border-radius: 14px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.03);
            transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
            border: 1px solid var(--gray-100);
        }

        .calendar-item:hover {
            transform: translateX(8px);
            box-shadow: 0 8px 28px rgba(0,0,0,0.08);
            border-color: transparent;
        }

        .cal-date { text-align: center; min-width: 60px; }
        .cal-date-day { font-family: var(--font-display); font-size: 36px; color: var(--navy); line-height: 1; }
        .cal-date-month { font-size: 12px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 1.5px; }

        .cal-info h4 { font-family: var(--font-display); font-size: 18px; color: var(--navy); letter-spacing: 0.5px; margin-bottom: 2px; }
        .cal-info span { font-size: 13px; color: var(--gray-600); }

        .cal-sport-tag {
            padding: 6px 16px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--white);
        }

        /* ============ CONTACT ============ */
        .contact { padding: var(--section-pad) 0; background: var(--white); }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info-cards {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .contact-card {
            display: flex;
            gap: 20px;
            padding: 24px;
            background: var(--gray-50);
            border-radius: 16px;
            transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
            border: 1px solid transparent;
        }

        .contact-card:hover {
            background: var(--white);
            border-color: var(--gray-200);
            transform: translateX(8px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.06);
        }

        .contact-card-icon {
            width: 52px; height: 52px;
            border-radius: 14px;
            background: var(--navy);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(24, 48, 80, 0.3);
        }

        .contact-card-icon svg { width: 22px; height: 22px; color: var(--teal); }
        .contact-card-icon i { font-size: 20px; color: var(--teal); }
        .contact-card h4 { font-family: var(--font-display); font-size: 17px; color: var(--navy); letter-spacing: 0.5px; margin-bottom: 4px; }
        .contact-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

        .contact-map {
            border-radius: 20px;
            overflow: hidden;
            background: var(--gray-100);
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--gray-200);
        }

        .map-placeholder { text-align: center; color: var(--gray-600); }
        .map-placeholder svg { width: 48px; height: 48px; margin-bottom: 12px; opacity: 0.3; }
        .map-placeholder span { font-size: 14px; font-weight: 600; }

        /* ============ PARTNERS MARQUEE ============ */
        .partners {
            padding: 60px 0;
            background: var(--gray-50);
            border-top: 1px solid var(--gray-200);
            overflow: hidden;
        }

        .partners-header { text-align: center; margin-bottom: 36px; }

        .partners-label {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--gray-600);
        }

        .marquee {
            display: flex;
            overflow: hidden;
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        }

        .marquee-track {
            display: flex;
            gap: 48px;
            animation: marquee-scroll 25s linear infinite;
            flex-shrink: 0;
            padding-right: 48px;
        }

        @keyframes marquee-scroll {
            to { transform: translateX(-100%); }
        }

        .partner-logo {
            width: 180px; height: 90px;
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 14px 18px;
            font-size: 12px;
            color: var(--gray-600);
            font-weight: 700;
            flex-shrink: 0;
            transition: all 0.3s ease;
            filter: grayscale(60%);
            opacity: 0.85;
        }

        .partner-logo a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
        }

        /* A Gyál város, sportcsarnok és A22 Hotel logóknál csökkentett padding,
           hogy a (whitespace nélkülire vágott) képek a teljes kártya területet
           kitölthessék — az object-fit: contain így a maximális méretre nagyítja
           őket, de nem lóg ki a 180×90-es konténerből. */
        .partner-logo:has(img[src*="gyal-varos"]),
        .partner-logo:has(img[src*="gyali-sportcsarnok"]),
        .partner-logo:has(img[src*="a22-hotel"]) {
            padding: 4px 8px;
        }

        .partner-logo:hover {
            border-color: var(--teal);
            box-shadow: 0 4px 16px rgba(3,180,188,0.1);
            filter: grayscale(0);
            opacity: 1;
        }

        /* ============ CONTACT MODAL ============ */
        .contact-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 32px;
            align-self: flex-start;
        }

        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(15,31,53,0.7);
            backdrop-filter: blur(8px);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.35s ease;
            padding: 20px;
        }

        .modal-overlay.active {
            opacity: 1;
            pointer-events: all;
        }

        .modal {
            background: var(--white);
            border-radius: 24px;
            width: 100%;
            max-width: 520px;
            padding: 40px;
            position: relative;
            transform: translateY(24px) scale(0.96);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 40px 100px rgba(0,0,0,0.25);
        }

        .modal-overlay.active .modal {
            transform: translateY(0) scale(1);
        }

        .modal-close {
            position: absolute;
            top: 16px; right: 16px;
            width: 36px; height: 36px;
            border-radius: 50%;
            border: none;
            background: var(--gray-50);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .modal-close:hover { background: var(--gray-200); }
        .modal-close svg { width: 18px; height: 18px; color: var(--gray-600); }

        .modal-title {
            font-family: var(--font-display);
            font-size: 28px;
            color: var(--navy);
            letter-spacing: 0.5px;
            margin-bottom: 6px;
        }

        .modal-subtitle {
            font-size: 14px;
            color: var(--gray-600);
            margin-bottom: 28px;
        }

        .form-group { margin-bottom: 18px; }

        .form-label {
            display: block;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--navy);
            margin-bottom: 6px;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 12px 16px;
            border-radius: 12px;
            border: 1px solid var(--gray-200);
            background: var(--gray-50);
            font-family: var(--font-body);
            font-size: 14px;
            color: var(--navy);
            transition: all 0.3s ease;
            outline: none;
            box-sizing: border-box;
        }

        .form-input:focus,
        .form-textarea:focus {
            border-color: var(--teal);
            background: var(--white);
            box-shadow: 0 0 0 3px rgba(3,180,188,0.1);
        }

        .form-textarea { resize: vertical; min-height: 120px; }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .form-submit {
            width: 100%;
            margin-top: 8px;
        }

        @media (max-width: 480px) {
            .modal { padding: 28px 20px; }
            .form-row { grid-template-columns: 1fr; }
        }

        /* ============ FOOTER ============ */
        .footer {
            background: var(--navy-deep);
            color: rgba(255,255,255,0.6);
            padding: 80px 0 0;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(3,180,188,0.3), transparent);
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 48px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        .footer-brand img { width: 130px; height: 130px; margin-bottom: 20px; }
        .footer-brand p { font-size: 14px; line-height: 1.8; max-width: 300px; margin-bottom: 24px; }

        .footer-socials { display: flex; gap: 12px; }

        .footer-social {
            width: 42px; height: 42px;
            border-radius: 12px;
            background: rgba(255,255,255,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.35s ease;
            border: 1px solid rgba(255,255,255,0.06);
        }

        .footer-social:hover {
            background: var(--teal);
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(3,180,188,0.3);
            border-color: transparent;
        }

        .footer-social svg { width: 18px; height: 18px; color: rgba(255,255,255,0.6); }
        .footer-social:hover svg { color: var(--white); }

        .footer-col h4 {
            font-family: var(--font-display);
            font-size: 16px;
            color: var(--white);
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .footer-col h4 .footer-toggle {
            display: none;
        }

        @media (max-width: 768px) {
            .footer-col h4 {
                cursor: pointer;
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 0;
                padding-bottom: 16px;
                border-bottom: 1px solid rgba(255,255,255,0.08);
            }
            .footer-col h4 .footer-toggle {
                display: inline-block;
                font-size: 20px;
                transition: transform 0.3s ease;
                color: rgba(255,255,255,0.4);
            }
            .footer-col h4.open .footer-toggle {
                transform: rotate(180deg);
            }
            .footer-col ul {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease, margin 0.3s ease;
                margin-top: 0;
            }
            .footer-col h4.open + ul {
                max-height: 400px;
                margin-top: 16px;
            }
        }

        .footer-col ul li { margin-bottom: 12px; }

        .footer-col ul li a {
            font-size: 14px;
            color: rgba(255,255,255,0.45);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0px;
        }

        .footer-col ul li a::before {
            content: '';
            width: 0px;
            height: 1px;
            background: var(--teal);
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-col ul li a:hover {
            color: var(--teal);
            gap: 8px;
        }

        .footer-col ul li a:hover::before { width: 12px; }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 0;
            font-size: 13px;
            color: rgba(255,255,255,0.25);
        }

        /* ============ BACK TO TOP ============ */
        .back-to-top {
            position: fixed;
            bottom: 32px; right: 32px;
            width: 48px; height: 48px;
            background: var(--navy);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 100;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
        }

        .back-to-top.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .back-to-top:hover {
            background: var(--teal);
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(3, 180, 188, 0.3);
        }

        .back-to-top svg,
        .back-to-top i { width: 20px; height: 20px; color: var(--white); font-size: 20px; }

        /* ============ MOBILE MENU ============ */
        .mobile-menu {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(15, 31, 53, 0.98);
            backdrop-filter: blur(24px);
            z-index: 999;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.35s ease;
        }

        .mobile-menu.active { opacity: 1; pointer-events: all; }

        .mobile-menu a {
            font-family: var(--font-display);
            font-size: 36px;
            color: var(--white);
            letter-spacing: 2px;
            padding: 12px 0;
            transition: color 0.3s ease;
        }

        .mobile-menu a:hover { color: var(--teal); }

        .mobile-menu-close {
            position: absolute;
            top: 24px; right: 24px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1;
        }

        .mobile-menu-close i { font-size: 28px; color: var(--white); }

        .mobile-menu-inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 32px;
        }

        .mobile-menu-logo img { width: 80px; height: 80px; }

        .mobile-nav-links { list-style: none; text-align: center; }
        .mobile-nav-links li { margin-bottom: 4px; }

        .mobile-nav-links .sub-menu {
            list-style: none;
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, opacity 0.3s ease;
            opacity: 0;
        }

        .mobile-nav-links .sub-menu.open {
            max-height: 500px;
            opacity: 1;
        }

        .mobile-nav-links .sub-menu li { margin-bottom: 0; }

        .mobile-nav-links .sub-menu a {
            font-size: 20px !important;
            letter-spacing: 1px;
            padding: 8px 0;
            opacity: 0.7;
        }

        .mobile-nav-links .sub-menu a:hover { opacity: 1; }

        .mobile-nav-links .menu-item-has-children > a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .mobile-nav-links .menu-item-has-children > a::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 16px;
            transition: transform 0.3s ease;
            display: inline-block;
        }

        .mobile-nav-links .menu-item-has-children.submenu-open > a::after {
            transform: rotate(180deg);
        }

        .mobile-menu-socials {
            display: flex;
            gap: 16px;
            margin-top: 12px;
        }

        .mobile-menu-socials a {
            width: 44px; height: 44px;
            border-radius: 12px;
            background: rgba(255,255,255,0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: rgba(255,255,255,0.6);
            transition: all 0.3s ease;
        }

        .mobile-menu-socials a:hover {
            background: var(--teal);
            color: var(--white);
        }

        /* ============ SCROLL REVEAL ============ */
        /* JS adds .reveal-ready to <html> — without it, elements stay visible (fallback). */
        html.reveal-ready .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.visible { opacity: 1 !important; transform: translateY(0) !important; }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }
        .reveal-delay-5 { transition-delay: 0.5s; }

        html.reveal-ready .reveal-scale {
            opacity: 0;
            transform: scale(0.92);
            transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal-scale.visible { opacity: 1 !important; transform: scale(1) !important; }

        /* ============ PARALLAX ============ */
        [data-parallax] { transition: transform 0.1s linear; }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1024px) {
            .hero-content { grid-template-columns: 1fr; text-align: center; padding-top: 120px; }
            .hero-desc { margin: 0 auto 40px; }
            .hero-actions { justify-content: center; }
            .hero-visual { display: none; }
            .about-grid { grid-template-columns: 1fr; gap: 48px; }
            .about-president { grid-template-columns: 240px 1fr; gap: 40px; margin-top: 64px; padding-top: 48px; }
            .dept-grid { grid-template-columns: 1fr 1fr; }
            .news-grid { grid-template-columns: 1fr 1fr; }
            .news-featured { min-height: 360px; }
            .news-featured-content { padding: 36px 40px; }
            .news-featured-title { font-size: 32px; }
            .tao-content { grid-template-columns: 1fr; }
            .contact-grid { grid-template-columns: 1fr; }
            .footer-main { grid-template-columns: 1fr 1fr; }
            .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-template-rows: 220px 220px; }
            .gallery-item:nth-child(1) { grid-column: span 3; grid-row: span 2; }
            .gallery-item:nth-child(2) { grid-column: span 3; }
            .gallery-item:nth-child(3) { grid-column: span 3; }
            .gallery-item:nth-child(4) { grid-column: span 3; }
            .gallery-item:nth-child(5) { grid-column: span 3; }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .mobile-toggle { display: flex; }
            .mobile-menu { display: flex; }
            .about-president { grid-template-columns: 1fr; gap: 32px; }
            .president-photo { max-width: 280px; margin: 0 auto; }
            .president-name { font-size: 28px; }
            .dept-grid { grid-template-columns: 1fr; }
            .news-grid { grid-template-columns: 1fr; }
            .news-featured { min-height: 320px; }
            .news-featured-content { padding: 28px 24px; }
            .news-featured-title { font-size: 28px; }
            .news-featured-excerpt { font-size: 14px; }
            .tao-inner { padding: 48px 28px; }
            .tao-benefits { grid-template-columns: 1fr; }
            .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 180px); }
            .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
            .gallery-item:nth-child(2) { grid-column: span 1; }
            .gallery-item:nth-child(3) { grid-column: span 1; }
            .gallery-item:nth-child(4) { grid-column: span 1; }
            .gallery-item:nth-child(5) { grid-column: span 1; }
            .gallery-header { flex-direction: column; align-items: flex-start; gap: 16px; }
            .gallery-stats { gap: 32px; }
            .gallery-item-info { opacity: 1; transform: translateY(0); }
            .gallery-item::after { opacity: 1; }
            .footer-main { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
            .news-header { flex-direction: column; align-items: flex-start; gap: 16px; }
            .calendar-item { grid-template-columns: auto 1fr; gap: 16px; }
            .cal-sport-tag { grid-column: 2; justify-self: start; }
        }

        @media (max-width: 480px) {
            .hero h1 { font-size: 48px; }
            .hero-actions { flex-direction: column; width: 100%; }
            .btn { justify-content: center; width: 100%; }
            .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 180px); }
            .gallery-item:nth-child(1),
            .gallery-item:nth-child(2),
            .gallery-item:nth-child(3),
            .gallery-item:nth-child(4),
            .gallery-item:nth-child(5) { grid-column: span 1; grid-row: span 1; }
            .gallery-stats { flex-direction: column; gap: 16px; align-items: center; }
        }

        /* ============ WATERMARK LOGO ============ */
        .watermark {
            position: absolute;
            pointer-events: none;
            z-index: 0;
            user-select: none;
        }

        .watermark img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .watermark-light img { opacity: 0.25; }
        .watermark-dark img { opacity: 0.20; }
        .watermark-teal img { opacity: 0.25; }

        .watermark-hero {
            right: -80px; bottom: -100px;
            width: 500px; height: 500px;
        }

        .watermark-tao {
            right: -40px; bottom: -60px;
            width: 280px; height: 280px;
        }

        .watermark-news {
            right: -80px; top: 50%;
            transform: translateY(-50%);
            width: 400px; height: 400px;
        }

        .watermark-calendar {
            right: 40px; top: 50%;
            transform: translateY(-50%);
            width: 220px; height: 220px;
        }

        .watermark-footer {
            right: 60px; top: 40px;
            width: 180px; height: 180px;
        }

        @media (max-width: 768px) {
            .watermark-hero { width: 300px; height: 300px; right: -100px; bottom: -80px; }
            .watermark-news { width: 250px; height: 250px; }
            .watermark-calendar { display: none; }
            .watermark-footer { display: none; }
        }

        /* ============ SIDE NAV DOTS ============ */
        .side-nav {
            position: fixed;
            right: 28px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 100;
            display: flex;
            flex-direction: column;
            gap: 14px;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .side-nav.visible { opacity: 1; }

        .side-nav-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            border: 2px solid rgba(255,255,255,0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .side-nav-dot::before {
            content: attr(data-label);
            position: absolute;
            right: 22px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 11px;
            font-weight: 700;
            color: var(--white);
            background: var(--navy);
            padding: 4px 12px;
            border-radius: 6px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
        }

        .side-nav-dot:hover::before { opacity: 1; transform: translateY(-50%) translateX(-4px); }

        .side-nav-dot.active {
            background: var(--teal);
            border-color: var(--teal);
            box-shadow: 0 0 10px rgba(3,180,188,0.4);
            transform: scale(1.3);
        }

        .side-nav-dot.dark-section {
            border-color: rgba(255,255,255,0.3);
        }

        .side-nav-dot.light-section {
            border-color: rgba(24,48,80,0.2);
            background: rgba(24,48,80,0.1);
        }

        .side-nav-dot.light-section.active {
            background: var(--teal);
            border-color: var(--teal);
        }

        @media (max-width: 1024px) { .side-nav { display: none; } }

/* ============ WORDPRESS OVERRIDES ============ */
.admin-bar .navbar { top: 32px; }
@media screen and (max-width: 782px) {
    .admin-bar .navbar { top: 46px; }
}
