﻿:root {
            --primary: #0f4c81;
            --primary-dark: #0a3460;
            --primary-light: #1a6db5;
            --accent: #f97316;
            --accent-dark: #ea6c10;
            --secondary: #06b6d4;
            --dark: #0f172a;
            --gray: #64748b;
            --light: #f8fafc;
            --white: #ffffff;
            --gradient: linear-gradient(135deg, #0f4c81 0%, #1a6db5 50%, #06b6d4 100%);
            --hero-pastel: linear-gradient(135deg, #a9c9ff 0%, #b6e3ff 45%, #f6c8ff 100%);
            --gradient-accent: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
            --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
            --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
            --radius: 12px;
            --radius-lg: 20px;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { scrollbar-gutter: stable; overflow-x: hidden; }
        body { overflow-x: hidden; }
        img, svg, video { max-width: 100%; height: auto; }
        @supports not (scrollbar-gutter: stable) {
            html { overflow-y: scroll; }
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: #1e293b;
            background: #ffffff;
            overflow-x: hidden;
            line-height: 1.7;
        }

        /* ===== PAGE LOADER ===== */
        .page-loader {
            position: fixed;
            inset: 0;
            background: #ffffff;
            display: grid;
            place-items: center;
            z-index: 2000;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .page-loader.is-hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .page-loader__inner {
            position: relative;
            width: 110px;
            height: 110px;
            display: grid;
            place-items: center;
        }

        .page-loader__logo,
        .page-loader__logo-text {
            width: 64px;
            height: 64px;
            border-radius: 12px;
            display: grid;
            place-items: center;
            background: #ffffff;
            box-shadow: 0 8px 24px rgba(15, 76, 129, 0.18);
        }

        .page-loader__logo { object-fit: contain; }

        .page-loader__logo-text {
            font-weight: 900;
            font-size: 18px;
            color: #0f4c81;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .page-loader__spinner {
            position: absolute;
            inset: 0;
            margin: auto;
            width: 96px;
            height: 96px;
            border-radius: 50%;
            border: 3px solid rgba(15, 76, 129, 0.2);
            border-top-color: #0f4c81;
            animation: loader-spin 0.9s linear infinite;
        }

        @keyframes loader-spin {
            to { transform: rotate(360deg); }
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            line-height: 1.25;
        }

        /* ===================== TOP BAR ===================== */
        .topbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1001;
            background: #0f4c81;
            color: white;
            font-size: 12px;
            letter-spacing: 0.5px;
            transition: transform 0.3s ease, opacity 0.3s ease;
            width: 100%;
            overflow: hidden;
            --topbar-h: 38px;
            --topbar-speed: 12s;
        }

        .topbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            height: var(--topbar-h);
            padding: 0 24px;
            width: 100%;
        }

        .topbar a {
            color: white;
            text-decoration: none;
            font-weight: 600;
        }

        .topbar-left {
            flex: 0 0 auto;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
            min-width: 0;
        }

        .topbar-brand {
            font-weight: 800;
            letter-spacing: 0.2px;
            color: white;
            max-width: 220px;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .topbar-middle {
            flex: 1 1 auto;
            min-width: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .topbar-marquee {
            display: flex;
            align-items: center;
            min-width: 0;
            flex: 1;
            overflow: hidden;
            mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
        }

        .topbar-track {
            display: inline-flex;
            align-items: center;
            width: max-content;
            padding-left: 100%;
            will-change: transform;
            animation: topbar-scroll var(--topbar-speed) linear infinite;
        }

        .topbar-marquee:hover .topbar-track { animation-play-state: paused; }

        .topbar-group {
            display: inline-flex;
            align-items: center;
            gap: 40px;
            padding-right: 40px;
        }

        .topbar-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            color: rgba(255,255,255,0.95);
        }

        .topbar-item i { opacity: 0.9; }

        @keyframes topbar-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }

        @media (prefers-reduced-motion: reduce) {
            .topbar-track { animation: none; }
        }

        .topbar-right {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 0 0 auto;
            margin-left: auto;
        }

        .topbar-social {
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .topbar-icon {
            width: 30px;
            height: 30px;
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.14);
            border: 1px solid rgba(255,255,255,0.22);
            transition: transform 0.15s ease, background 0.15s ease;
        }

        .topbar-icon:hover { transform: translateY(-1px); background: rgba(255,255,255,0.22); }

        .topbar-call {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 10px;
            border-radius: 12px;
            background: rgba(255,255,255,0.14);
            border: 1px solid rgba(255,255,255,0.22);
            transition: transform 0.15s ease, background 0.15s ease;
        }

        .topbar-call:hover { transform: translateY(-1px); background: rgba(255,255,255,0.22); }

        .topbar-call span { font-size: 12px; font-weight: 700; }

        .has-topbar .header { top: 38px; }
        .topbar-hidden .topbar,
        .topbar.is-hidden {
            transform: translateY(-100%);
            opacity: 0;
            pointer-events: none;
            display: none;
        }

        .topbar.is-hidden + .header { top: 0; }
        .topbar-hidden .header { top: 0; }

        @media (max-width: 768px) {
            .topbar-inner { padding: 0 14px; gap: 10px; }
            .topbar { --topbar-speed: 10s; }
            .topbar-call span { display: none; }
            .topbar-brand { max-width: 150px; }
            .topbar-left, .topbar-right { display: none; }
            .topbar-inner { justify-content: center; }
        }

        @media (max-width: 480px) {
            .topbar-right { gap: 8px; }
            .topbar-marquee { mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%); }
            .topbar-icon { width: 28px; height: 28px; border-radius: 9px; }
            .topbar-call { padding: 6px 8px; border-radius: 10px; }
        }

        @media (max-width: 420px) {
            .topbar-social a:nth-child(n+3) { display: none; }
        }

        /* ===================== HEADER ===================== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.4s ease;
            padding: 20px 0;
        }

        .header.scrolled {
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(20px);
            padding: 12px 0;
            color: black;
            box-shadow: 0 4px 30px rgba(0,0,0,0.3);
        }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* max-width: 1280px; */
    margin: 0 auto;
    padding: 0 24px;
    min-width: 0;
    position: relative;
    overflow: visible;
}

.header-actions-mobile {
    display: none;
    align-items: center;
    gap: 8px;
}

.mobile-search-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: none;
    background: rgba(255,255,255,0.18);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.header.scrolled .mobile-search-btn {
    color: #0f172a;
    background: rgba(15,23,42,0.08);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    min-width: 0;
}

.logo-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.header .logo { margin-right: auto; }
.header .logo-stack { align-items: flex-start; }

.logo-image {
    width: 100px;
    height: fit-content;
    object-fit: contain;
    background: #ffffff;
    padding: 6px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
    flex-shrink: 0;
}

        .logo-icon {
            width: 44px;
            height: 44px;
            background: var(--gradient);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 900;
            color: white;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

.logo-tagline {
    font-size: 10px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    line-height: 1.2;
    max-width: 220px;
    text-align: center;
    white-space: normal;
    word-break: break-word;
}

        .logo-text { color: #ffffff; display: flex; flex-direction: column; line-height: 1; gap: 2px; }
        .logo-text .brand { font-size: 20px; font-weight: 800; display: block; line-height: 1.05; }
        .logo-text .tagline { font-size: 10px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1.5px; line-height: 1; }

.nav { display: flex; align-items: center; gap: 6px; margin-left: auto; }

        .nav-link {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-size: 14.5px;
            font-weight: 600;
            padding: 8px 14px;
            border-radius: 8px;
            transition: all 0.2s;
            position: relative;
        }
        .nav-link i {
            margin-right: 6px;
            font-size: 12px;
            opacity: 0.85;
        }

        .nav-search-btn {
            background: transparent;
            border: none;
            cursor: pointer;
        }
        .nav-search-btn i { margin-right: 0; }

        .nav-link:hover, .nav-link.active { 
            color: #ffffff;
            background: rgba(100, 100, 100, 0.1);
        }

        .header.scrolled .logo-text { color: #000000; }
        .header.scrolled .logo-text .tagline { color: rgba(0,0,0,0.6); }
        .header.scrolled .logo-tagline { color: rgba(0,0,0,0.6); }
        .header.scrolled .nav-link { color: rgba(0, 0, 0, 0.85); }
        .header.scrolled .nav-link i { opacity: 0.9; }
        .header.scrolled .mobile-toggle {
            color: #000000;
            background: rgba(0,0,0,0.08);
        }
        .header.scrolled .nav-link:hover,
        .header.scrolled .nav-link.active {
            color: #000000;
            background: rgba(0, 0, 0, 0.08);
        }

        /* Home hero (pastel) header contrast */
        .home-hero-light .header .nav-link {
            color: rgba(15, 23, 42, 0.9);
        }
        .home-hero-light .header .nav-link i {
            opacity: 0.9;
        }
        .home-hero-light .header .nav-link:hover,
        .home-hero-light .header .nav-link.active {
            color: #0f172a;
            background: rgba(15, 23, 42, 0.08);
        }
        .home-hero-light .header .nav-dropdown > .nav-link::after {
            color: rgba(15, 23, 42, 0.9);
        }
        .home-hero-light .header .mobile-toggle {
            color: #0f172a;
            background: rgba(15, 23, 42, 0.08);
        }
        .home-hero-light .header .logo-tagline {
            color: rgba(15, 23, 42, 0.65);
        }
        .home-hero-light .header .mobile-search-btn {
            color: #0f172a;
            background: rgba(15, 23, 42, 0.08);
        }

        /* Dropdown */
        .nav-dropdown { position: relative; }
        .nav-dropdown > .nav-link::after {
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            margin-left: 6px;
            font-size: 11px;
        }

        .dropdown-menu {
            position: absolute;
            top: calc(100% + 10px);
            left: 50%;
            transform: translateX(-50%);
            background: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow-xl);
            min-width: 240px;
            padding: 8px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.2s;
            transform: translateX(-50%) translateY(-10px);
            border: 1px solid rgba(0,0,0,0.06);
        }

        .nav-dropdown--fit .dropdown-menu {
            width: max-content;
            min-width: 240px;
        }

        .dropdown-menu--tabs {
            padding: 12px;
            min-width: 520px;
            max-width: 720px;
        }

        .nav-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            border-radius: 8px;
            color: var(--dark);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.15s;
        }

        .dropdown-item:hover { background: var(--light); color: var(--primary); }
        .dropdown-item i { width: 18px; color: var(--primary); font-size: 13px; }

        .dropdown-tabs {
            display: grid;
            grid-template-columns: 180px 1fr;
            gap: 14px;
        }

        .dropdown-tabs-nav {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .dropdown-tab-btn {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            padding: 8px 10px;
            border-radius: 10px;
            border: 1px solid #e2e8f0;
            background: #f8fafc;
            color: #0f172a;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
            text-align: left;
        }

        .dropdown-tab-btn.active,
        .dropdown-tab-btn:hover {
            background: #0f4c81;
            color: white;
            border-color: #0f4c81;
        }

        .dropdown-tab-count {
            font-size: 11px;
            font-weight: 700;
            background: rgba(0,0,0,0.12);
            color: inherit;
            padding: 2px 8px;
            border-radius: 999px;
        }

        .dropdown-tabs-panels {
            min-height: 180px;
            max-height: 360px;
            overflow: auto;
            padding-right: 6px;
        }

        .dropdown-tab-panel { display: none; }
        .dropdown-tab-panel.active { display: block; }

        .dropdown-item-muted {
            margin-top: 6px;
            color: #64748b;
            font-weight: 600;
        }

        .dropdown-item-all {
            margin-top: 8px;
            border-top: 1px solid #f1f5f9;
            padding-top: 10px;
        }

        .nav-actions { display: flex; align-items: center; gap: 12px; }

        .btn-primary {
            background: var(--gradient-accent);
            color: white;
            padding: 10px 22px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
        }

        .btn-primary:hover { 
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
        }

        .btn-outline {
            border: 2px solid rgba(255,255,255,0.3);
            color: white;
            padding: 9px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }

        /* Mobile Menu */
        .mobile-toggle {
            display: none;
            background: rgba(255,255,255,0.1);
            border: none;
            color: white;
            padding: 10px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 18px;
            flex: 0 0 auto;
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            bottom: 0;
            width: min(82vw, 320px);
            background: rgba(15,23,42,0.98);
            z-index: 999;
            padding: 80px 24px 40px;
            overflow-y: auto;
            transform: translateX(-100%);
            transition: transform 0.25s ease;
            will-change: transform;
        }

        .mobile-menu.open { transform: translateX(0); }

        .mobile-menu-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: white;
            text-decoration: none;
            font-size: 20px;
            font-weight: 600;
            padding: 16px 0;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .mobile-close {
            position: absolute;
            top: 20px;
            right: 24px;
            background: rgba(255,255,255,0.1);
            border: none;
            color: white;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            font-size: 18px;
            cursor: pointer;
        }

        /* ===================== SECTIONS ===================== */
        .section { padding: 100px 0; }
        .section-sm { padding: 60px 0; }

        .container {
            /* max-width: 1280px; */
            margin: 0 auto;
            padding: 0 24px;
        }
         .container1 {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-header { text-align: center; margin-bottom: 64px; }
        
        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(15, 76, 129, 0.08);
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 16px;
            border: 1px solid rgba(15, 76, 129, 0.15);
        }

        .section-title {
            font-size: clamp(28px, 4vw, 48px);
            color: var(--dark);
            margin-bottom: 16px;
        }

        .section-title span { color: var(--primary); }
        
        .section-subtitle {
            font-size: 17px;
            color: var(--gray);
            max-width: 640px;
            margin: 0 auto;
            line-height: 1.75;
        }

        /* ===================== CARDS ===================== */
        .card {
            background: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-xl);
        }

        /* Service Card */
        .service-card {
            background: white;
            border-radius: var(--radius);
            padding: 32px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0,0,0,0.06);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover::before { transform: scaleX(1); }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .service-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, rgba(15,76,129,0.1), rgba(6,182,212,0.1));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            color: var(--primary);
            margin-bottom: 20px;
            transition: all 0.3s;
        }

        .service-card:hover .service-icon {
            background: var(--gradient);
            color: white;
        }

        .service-card h3 { font-size: 19px; margin-bottom: 10px; color: var(--dark); }
        .service-card p { color: var(--gray); font-size: 14.5px; line-height: 1.7; margin-bottom: 20px; }
        
        .service-link {
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.2s;
        }

        .service-link:hover { gap: 10px; }

        /* Grid layouts */
        .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
        .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
        .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .hero-grid-lg { gap: 80px; }
        .hero-grid-start { align-items: start; }
        .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
        .portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
        .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
        .blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
        .stats-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
        .process-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 20px; }

        /* ===================== HERO ===================== */
        .hero {
            position: relative;
            min-height: 100svh;
            display: flex;
            padding-top: 110px;
            padding-bottom: 40px;
            align-items: center;
            overflow: hidden;
            background: var(--dark);
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: var(--gradient);
            opacity: 0.95;
        }

        .hero-particles {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .hero-particle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255,255,255,0.04);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }

        .hero-content-swiper,
        .hero-content-swiper .swiper-wrapper,
        .hero-content-swiper .swiper-slide {
            height: 100%;
        }

        .hero-content { min-height: 320px; }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.7);
            border: 1px solid rgba(15,23,42,0.1);
            color: #0f172a;
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 24px;
            backdrop-filter: blur(10px);
        }

        .hero-title {
            font-size: clamp(26px, 5.5vw, 42px);
            color: #0f172a;
            line-height: 1.1;
            margin-bottom: 20px;
            text-shadow: 0 6px 24px rgba(255,255,255,0.45);
        }

        .hero-title .highlight {
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: clamp(13px, 1.5vw, 16px);
            color: rgba(15,23,42,0.7);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }

        .hero-description {
            font-size: clamp(15px, 1.5vw, 18px);
            color: rgba(15,23,42,0.8);
            margin-bottom: 28px;
            line-height: 1.7;
            max-width: 640px;
        }

        .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }

        .hero-btn-primary {
            background: white;
            color: var(--primary);
            padding: 14px 30px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 15px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
        }

        .hero-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }

        .hero-btn-secondary {
            border: 2px solid rgba(15,23,42,0.2);
            color: #0f172a;
            padding: 14px 30px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 15px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }

        .hero-btn-secondary:hover { background: rgba(255,255,255,0.6); border-color: rgba(15,23,42,0.35); }

        .hero-stats {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
        }

        .hero-stat { color: #0f172a; }
        .hero-stat .number { font-size: 32px; font-weight: 800; display: block; }
        .hero-stat .label { font-size: 12px; color: rgba(15,23,42,0.6); text-transform: uppercase; letter-spacing: 1px; }

        /* Hero Image Side */
        .hero-image-side {
            position: relative;
            z-index: 2;
        }

        .hero-visual {
            position: relative;
            height: clamp(280px, 45vh, 520px);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-orbit {
            width: 340px;
            height: 340px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .hero-orbit-inner {
            width: 260px;
            height: 260px;
            background: rgba(255,255,255,0.07);
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.12);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-orbit-core {
            width: 180px;
            height: 180px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 70px;
        }

        .hero-orbit-icon {
            width: 52px;
            height: 52px;
            background: rgba(255,255,255,0.12);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            backdrop-filter: blur(10px);
        }

        .hero-card-float {
            position: absolute;
            background: white;
            border-radius: 16px;
            padding: 16px 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            gap: 12px;
            animation: floatCard 3s ease-in-out infinite;
        }

        @keyframes floatCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        /* ===================== STATS BAR ===================== */
        .stats-bar {
            background: var(--gradient);
            padding: 50px 0;
        }

        .stat-item { text-align: center; }
        .stat-number {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 900;
            color: white;
            display: block;
            line-height: 1;
        }

        .stat-label {
            font-size: 13px;
            color: rgba(255,255,255,0.75);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-top: 6px;
            display: block;
        }

        /* ===================== PROCESS SECTION ===================== */
        .process-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
        }

        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 32px;
            left: calc(50% + 40px);
            width: calc(100% - 80px);
            height: 2px;
            background: linear-gradient(90deg, var(--primary), transparent);
        }

        .process-number {
            width: 64px;
            height: 64px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            flex-shrink: 0;
        }

        /* ===================== TESTIMONIALS ===================== */
        .testimonial-card {
            background: white;
            border-radius: var(--radius-lg);
            padding: 36px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(0,0,0,0.05);
            position: relative;
        }

        .testimonial-card::before {
            content: '\201C';
            position: absolute;
            top: 24px;
            right: 30px;
            font-size: 80px;
            color: var(--primary);
            opacity: 0.08;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .stars { color: #f59e0b; margin-bottom: 16px; }
        .testimonial-text { font-size: 15px; color: #475569; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
        
        .testimonial-author { display: flex; align-items: center; gap: 14px; }
        .author-avatar {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            object-fit: cover;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 18px;
            flex-shrink: 0;
        }

        .author-name { font-weight: 700; color: var(--dark); font-size: 15px; }
        .author-role { font-size: 13px; color: var(--gray); }

        /* ===================== CTA SECTION ===================== */
        .cta-section {
            background: var(--gradient);
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section h2 { color: white; font-size: clamp(28px, 4vw, 48px); margin-bottom: 16px; }
        .cta-section p { color: rgba(255,255,255,0.8); font-size: 17px; max-width: 560px; margin: 0 auto 36px; }

        /* ===================== FOOTER ===================== */
        .footer {
            background: #ffffff;
            padding: 80px 0 0;
            color: #000000;
            box-shadow: 0 -18px 40px rgba(15, 23, 42, 0.12);
        }

        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
        
        .footer-about p { color: rgba(0,0,0,0.7); font-size: 14.5px; line-height: 1.8; margin: 20px 0 24px; }
        
        .social-links { display: flex; gap: 10px; }
        .social-link {
            width: 38px;
            height: 38px;
            background: rgba(0,0,0,0.06);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(0,0,0,0.65);
            text-decoration: none;
            font-size: 15px;
            transition: all 0.2s;
        }

        .social-link:hover { background: var(--primary); color: white; transform: translateY(-3px); }

        .footer-title { color: #000000; font-size: 15px; font-weight: 700; margin-bottom: 20px; }
        
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a {
            color: rgba(0,0,0,0.6);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .footer-links a:hover { color: var(--accent); padding-left: 4px; }
        .footer-links a::before {
            content: '\f105';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 12px;
            opacity: 0.6;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 14px;
            color: rgba(0,0,0,0.65);
            font-size: 14px;
        }

        .footer-contact-item i { color: var(--accent); margin-top: 3px; flex-shrink: 0; width: 16px; }
        .footer-contact-item a { color: rgba(0,0,0,0.75) !important; text-decoration: none; }
        .footer-contact-item a:hover { color: #000000 !important; }

        .footer-bottom {
            border-top: 1px solid rgba(0,0,0,0.08);
            padding: 24px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }

        .footer-bottom p { color: rgba(0,0,0,0.55); font-size: 13px; }

        .footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
        .footer-bottom-links a { color: rgba(0,0,0,0.55); text-decoration: none; font-size: 13px; transition: color 0.2s; }
        .footer-bottom-links a:hover { color: #000000; }

        .footer .logo-text { color: #000000; }
        .footer .logo-text .brand { font-weight: 900; }
        .footer .logo-stack { align-items: flex-start; }
        .footer .logo-text { align-items: flex-start; }
        .footer .logo-text .tagline {
            color: rgba(0,0,0,0.55);
            white-space: normal;
            overflow: visible;
            text-overflow: unset;
            word-break: break-word;
            line-height: 1.2;
            max-width: 260px;
        }

        .footer input[type="email"]::placeholder { color: rgba(0,0,0,0.6); }
.footer-newsletter-label { color: rgba(0,0,0,0.75) !important; }
.footer-newsletter-form { align-items: center; }
.footer-newsletter-message {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.12);
    color: #065f46;
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    margin-bottom: 10px;
}
        .footer-newsletter-input {
            background: #ffffff !important;
            color: #0f172a !important;
            border: 1.5px solid #e2e8f0 !important;
        }
        .footer-newsletter-input:focus {
            outline: none;
            border-color: var(--primary) !important;
            box-shadow: 0 0 0 3px rgba(15,76,129,0.08);
        }

        .footer .social-link { color: #ffffff; }
        .footer .social-link--facebook { background: #1877f2; }
        .footer .social-link--x { background: #111111; }
        .footer .social-link--linkedin { background: #0a66c2; }
        .footer .social-link--instagram {
            background: radial-gradient(circle at 30% 110%, #fdf497 0, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
        }
        .footer .social-link--youtube { background: #ff0000; }
        .footer .social-link--github { background: #24292e; }
        .footer .social-link:hover { filter: brightness(1.05); transform: translateY(-3px); }

        /* ===================== SITEMAP ===================== */
        .sitemap-hero {
            background: radial-gradient(circle at top left, rgba(15,76,129,0.18), transparent 55%),
                        linear-gradient(135deg, rgba(15,76,129,0.95), rgba(6,182,212,0.85));
            color: white;
            padding: 140px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .sitemap-hero::after {
            content: '';
            position: absolute;
            right: -120px;
            top: -120px;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
        }

        .sitemap-hero-inner {
            display: grid;
            grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
            gap: 40px;
            align-items: center;
        }

        .sitemap-hero-text .section-badge {
            background: rgba(255,255,255,0.18);
            color: white;
            border: 1px solid rgba(255,255,255,0.28);
        }

        .sitemap-hero-text .section-title { color: white; }
        .sitemap-hero-text .section-subtitle { color: rgba(255,255,255,0.85); max-width: 520px; }

        .sitemap-hero-actions {
            display: flex;
            gap: 14px;
            margin-top: 24px;
            flex-wrap: wrap;
        }

        .sitemap-hero-card {
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.25);
            border-radius: 20px;
            padding: 26px;
            backdrop-filter: blur(12px);
            box-shadow: 0 22px 45px rgba(15, 23, 42, 0.22);
        }

        .sitemap-hero-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.2);
            margin-bottom: 16px;
            font-size: 22px;
        }

        .sitemap-hero-card h3 { color: white; margin-bottom: 6px; }
        .sitemap-hero-card p { color: rgba(255,255,255,0.8); font-size: 14.5px; }

        .sitemap-hero-stats {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
            margin-top: 18px;
        }

        .sitemap-stat {
            display: block;
            font-size: 22px;
            font-weight: 800;
            color: white;
        }

        .sitemap-stat-label {
            font-size: 12px;
            color: rgba(255,255,255,0.75);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .sitemap-section {
            background: #f7f9ff;
        }

        .sitemap-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 24px;
        }

        .sitemap-card {
            background: white;
            border-radius: 18px;
            padding: 24px;
            border: 1px solid rgba(15,76,129,0.1);
            box-shadow: var(--shadow);
        }

        .sitemap-card-head {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 16px;
        }

        .sitemap-card-icon {
            width: 46px;
            height: 46px;
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(15,76,129,0.12);
            color: var(--primary);
            font-size: 18px;
        }

        .sitemap-card h3 { margin: 0; font-size: 18px; color: var(--dark); }
        .sitemap-card p { margin: 4px 0 0; color: var(--gray); font-size: 13.5px; }

        .sitemap-links {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px 16px;
        }

        .sitemap-links a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--dark);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            padding: 6px 0;
            transition: color 0.2s ease, transform 0.2s ease;
        }

        .sitemap-links a i {
            color: var(--primary);
            font-size: 13px;
        }

        .sitemap-links a:hover {
            color: var(--primary);
            transform: translateX(2px);
        }

        .sitemap-note {
            margin-top: 16px;
            font-size: 13px;
            color: var(--gray);
        }

        .sitemap-note a { color: var(--primary); }

        /* ===================== GALLERY ===================== */
        .gallery-hero {
            background: radial-gradient(circle at top right, rgba(255,255,255,0.15), transparent 55%),
                        linear-gradient(135deg, rgba(15,76,129,0.95), rgba(6,182,212,0.85));
            color: white;
            padding: 150px 0 90px;
            position: relative;
            overflow: hidden;
        }

        .gallery-hero::after {
            content: '';
            position: absolute;
            left: -120px;
            top: -140px;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
        }

        .gallery-hero-inner {
            display: grid;
            grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
            gap: 36px;
            align-items: center;
        }

        .gallery-hero-card {
            background: rgba(255,255,255,0.14);
            border: 1px solid rgba(255,255,255,0.25);
            border-radius: 20px;
            padding: 24px;
            backdrop-filter: blur(10px);
            display: grid;
            gap: 14px;
            box-shadow: 0 20px 45px rgba(15, 23, 42, 0.25);
        }

        .gallery-hero-icon {
            width: 54px;
            height: 54px;
            border-radius: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.18);
            font-size: 22px;
        }

        .gallery-section {
            background: radial-gradient(circle at top left, rgba(15,76,129,0.06), transparent 60%),
                        #f7f9ff;
        }

        .gallery-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 24px;
        }

        .gallery-chip {
            padding: 8px 16px;
            border-radius: 999px;
            border: 1px solid rgba(15,76,129,0.2);
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 13px;
            background: white;
        }

        .gallery-chip.active {
            background: var(--gradient);
            color: white;
            border-color: transparent;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 20px;
        }

        .gallery-card {
            position: relative;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: var(--shadow);
            display: block;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .gallery-card img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            transition: transform 0.4s ease;
            display: block;
        }

        .gallery-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-xl);
        }

        .gallery-card:hover img { transform: scale(1.06); }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.7) 100%);
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            gap: 6px;
            padding: 20px;
        }

        .gallery-overlay h3 { margin: 0; font-size: 18px; }
        .gallery-overlay p { margin: 0; font-size: 13.5px; color: rgba(255,255,255,0.85); }

        .gallery-tag {
            align-self: flex-start;
            background: rgba(255,255,255,0.2);
            border: 1px solid rgba(255,255,255,0.3);
            padding: 4px 10px;
            border-radius: 999px;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }

        .gallery-empty {
            grid-column: 1 / -1;
            text-align: center;
            background: white;
            border-radius: 18px;
            padding: 40px;
            box-shadow: var(--shadow);
        }

        .gallery-empty i { font-size: 30px; color: var(--primary); margin-bottom: 12px; }

        /* ===================== EVENTS ===================== */
        .events-hero {
            background: radial-gradient(circle at top left, rgba(255,255,255,0.15), transparent 55%),
                        linear-gradient(135deg, rgba(15,76,129,0.95), rgba(249,115,22,0.85));
            color: white;
            padding: 150px 0 90px;
            position: relative;
            overflow: hidden;
        }

        .events-hero::after {
            content: '';
            position: absolute;
            right: -120px;
            bottom: -140px;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
        }

        .events-hero-inner {
            display: grid;
            grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
            gap: 36px;
            align-items: center;
        }

        .events-hero-card {
            background: rgba(255,255,255,0.14);
            border: 1px solid rgba(255,255,255,0.25);
            border-radius: 20px;
            padding: 24px;
            backdrop-filter: blur(10px);
            display: grid;
            gap: 14px;
            box-shadow: 0 20px 45px rgba(15, 23, 42, 0.25);
        }

        .events-hero-icon {
            width: 54px;
            height: 54px;
            border-radius: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.18);
            font-size: 22px;
        }

        .events-section {
            background: radial-gradient(circle at top right, rgba(249,115,22,0.08), transparent 60%),
                        #f7f4ff;
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 22px;
        }

        .events-card {
            background: white;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: var(--shadow);
            text-decoration: none;
            color: var(--dark);
            display: grid;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .events-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-xl);
        }

        .events-thumb { position: relative; height: 190px; }
        .events-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .events-thumb-placeholder {
            height: 100%;
            display: grid;
            place-items: center;
            background: #eef2ff;
            color: var(--primary);
            font-size: 30px;
        }

        .events-date {
            position: absolute;
            left: 16px;
            bottom: 16px;
            background: rgba(15,76,129,0.9);
            color: white;
            padding: 6px 12px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 700;
        }

        .events-body { padding: 18px; display: grid; gap: 10px; }
        .events-body h3 { margin: 0; font-size: 18px; }
        .events-body p { margin: 0; color: var(--gray); font-size: 13.5px; }

        .events-meta {
            display: flex;
            justify-content: space-between;
            gap: 12px;
            font-size: 12.5px;
            color: var(--primary);
            font-weight: 600;
        }

        .events-meta i { margin-right: 6px; }

        .events-empty {
            grid-column: 1 / -1;
            text-align: center;
            background: white;
            border-radius: 18px;
            padding: 40px;
            box-shadow: var(--shadow);
        }

        .events-empty i { font-size: 30px; color: var(--primary); margin-bottom: 12px; }

        .event-detail-hero {
            background: radial-gradient(circle at top right, rgba(255,255,255,0.12), transparent 55%),
                        linear-gradient(135deg, rgba(15,76,129,0.95), rgba(6,182,212,0.8));
            color: white;
            padding: 150px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .event-detail-wrap { display: grid; gap: 24px; }

        .event-detail-card {
            background: white;
            color: var(--dark);
            border: 1px solid rgba(15, 23, 42, 0.08);
            border-radius: 22px;
            padding: 24px;
            display: grid;
            gap: 20px;
            box-shadow: var(--shadow);
        }

        @media (min-width: 992px) {
            .event-detail-card {
                grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
                align-items: center;
            }
        }

        .event-detail-thumb {
            border-radius: 18px;
            overflow: hidden;
            height: 260px;
        }

        .event-detail-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .event-detail-placeholder {
            height: 100%;
            display: grid;
            place-items: center;
            background: rgba(255,255,255,0.15);
            font-size: 30px;
        }

        .event-detail-card .section-badge {
            background: #eff6ff;
            color: #1d4ed8;
            border-color: #dbeafe;
        }

        .event-detail-summary { color: #64748b; }

        .event-detail-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 13px;
            font-weight: 600;
            color: #475569;
        }

        .event-detail-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 12px;
        }

        .event-detail-actions .btn-outline {
            border-color: #cbd5f5;
            color: #1f2937;
            background: #ffffff;
        }
        .event-detail-actions .btn-outline:hover {
            border-color: #93c5fd;
            color: #1d4ed8;
            background: #eff6ff;
        }

        .event-detail-content {
            background: white;
            color: var(--dark);
            border-radius: 18px;
            padding: 24px;
            box-shadow: var(--shadow);
            line-height: 1.8;
        }

        /* ===================== RESOURCES PAGES ===================== */
        .resource-hero {
            background: linear-gradient(135deg, rgba(15,76,129,0.95), rgba(6,182,212,0.85));
            color: white;
            padding: 150px 0 90px;
        }

        .resource-hero-inner {
            display: grid;
            gap: 18px;
        }

        .resource-section {
            background: #f7f9ff;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 22px;
        }

        .testimonial-card-alt {
            background: white;
            border-radius: 18px;
            padding: 22px;
            box-shadow: var(--shadow);
            display: grid;
            gap: 14px;
        }

        .testimonial-card-alt-header {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-avatar {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: var(--gradient);
            color: white;
            display: grid;
            place-items: center;
            font-weight: 700;
            overflow: hidden;
        }

        .testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }

        .testimonial-card-alt h3 { margin: 0; font-size: 16px; }
        .testimonial-card-alt p { margin: 2px 0 0; font-size: 12.5px; color: var(--gray); }

        .testimonial-rating i { color: #f59e0b; font-size: 12px; opacity: 0.35; }
        .testimonial-rating i.active { opacity: 1; }

        .testimonial-quote { margin: 0; font-size: 14px; color: #475569; line-height: 1.7; }

        .faq-list { display: grid; gap: 16px; }

        .faq-item-wrap {
            background: white;
            border-radius: 18px;
            border: 1px solid rgba(15,76,129,0.1);
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .faq-item-wrap:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .faq-item {
            width: 100%;
            text-align: left;
            padding: 18px 20px;
            background: transparent;
            font-weight: 700;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            border: 0;
        }

        .faq-item-left { display: flex; align-items: center; gap: 14px; }

        .faq-icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #eff6ff;
            color: #1d4ed8;
            font-size: 14px;
            flex: 0 0 auto;
        }

        .faq-question { color: #0f172a; font-size: 15px; line-height: 1.5; }

        .faq-toggle {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: #f1f5f9;
            color: #0f172a;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
        }

        .faq-item.open .faq-toggle {
            background: var(--primary);
            color: white;
            transform: rotate(180deg);
        }

        .faq-answer {
            border-top: 1px solid rgba(15,76,129,0.08);
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer p { margin: 14px 0; color: #475569; line-height: 1.75; }

        .resource-empty {
            grid-column: 1 / -1;
            text-align: center;
            background: white;
            border-radius: 18px;
            padding: 40px;
            box-shadow: var(--shadow);
        }

        .resource-empty i { font-size: 28px; color: var(--primary); margin-bottom: 10px; }

        .event-photos {
            background: white;
            border-radius: 18px;
            padding: 24px;
            box-shadow: var(--shadow);
        }

        .event-photos h3 { margin-bottom: 16px; }

        .event-photos-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
        }

        .event-photos-grid img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 14px;
            display: block;
        }

        /* ===================== BREADCRUMB ===================== */
        .page-hero {
            background: var(--gradient);
            padding: 140px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-hero h1 { font-size: clamp(28px, 4vw, 48px); color: white; margin-bottom: 12px; }
        .page-hero p { color: rgba(255,255,255,0.75); font-size: 16px; max-width: 560px; margin: 0 auto 20px; }

        .breadcrumb {
            display: flex;
            justify-content: center;
            gap: 8px;
            align-items: center;
        }

        .breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13px; transition: color 0.2s; }
        .breadcrumb a:hover { color: white; }
        .breadcrumb span { color: rgba(255,255,255,0.35); font-size: 12px; }
        .breadcrumb .current { color: rgba(255,255,255,0.9); font-size: 13px; }

        /* ===================== BUTTONS ===================== */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14.5px;
            text-decoration: none;
            transition: all 0.25s;
            cursor: pointer;
            border: none;
        }

        .btn-blue { background: var(--gradient); color: white; box-shadow: 0 4px 15px rgba(15,76,129,0.3); }
        .btn-blue:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(15,76,129,0.4); }
        .btn-orange { background: var(--gradient-accent); color: white; box-shadow: 0 4px 15px rgba(249,115,22,0.3); }
        .btn-orange:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(249,115,22,0.4); }
        .btn-light { background: white; color: var(--primary); border: 2px solid var(--primary); }
        .btn-light:hover { background: var(--primary); color: white; }
        .btn-outline-white { border: 2px solid white; color: white; }
        .btn-outline-white:hover { background: white; color: var(--primary); }

        /* ===================== FORMS ===================== */
        .form-group { margin-bottom: 20px; }
        .form-label { display: block; font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }

        .form-control {
            width: 100%;
            padding: 12px 16px;
            border: 1.5px solid #e2e8f0;
            border-radius: 8px;
            font-size: 14.5px;
            font-family: 'Inter', sans-serif;
            transition: border-color 0.2s;
            background: white;
            color: var(--dark);
        }

        .form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(15,76,129,0.08); }

        textarea.form-control { resize: vertical; min-height: 120px; }

        select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 10px; }

        /* ===================== CONTACT PAGE ===================== */
        .contact-grid { grid-template-columns: 1fr 1.6fr; }
        .contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
        .contact-phone-grid { display: grid; grid-template-columns: 120px 1fr; gap: 8px; }
        .contact-office-grid { display: grid; gap: 18px; }
        .contact-office-card {
            background: #f8fafc;
            border-radius: 16px;
            padding: 24px;
            border: 1.5px solid #e2e8f0;
            display: grid;
            gap: 12px;
        }
        .contact-office-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            object-position: center;
            border-radius: 12px;
            display: block;
        }
        .contact-office-header { display: flex; gap: 12px; align-items: center; }
        .contact-office-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: #ffffff;
            font-size: 16px;
        }
        .contact-office-header h4 { font-size: 15px; color: var(--dark); margin-bottom: 4px; }
        .contact-office-header span { font-size: 12px; color: var(--primary); font-weight: 600; }
        .contact-office-address { color: #64748b; font-size: 14px; line-height: 1.7; margin: 0; }
        .contact-office-phone {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #0f4c81;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
        }
        .contact-office-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--primary);
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
        }

        /* ===================== ABOUT PAGE ===================== */
        .about-hero-full {
            background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 45%, #ffffff 100%);
        }
        .about-hero-grid-full {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 40px;
            align-items: center;
            min-height: 360px;
        }
        .about-hero-pills {
            margin-top: 16px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .about-hero-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border-radius: 999px;
            background: #ffffff;
            border: 1.5px solid #e2e8f0;
            color: #0f172a;
            font-weight: 700;
            font-size: 12px;
            box-shadow: var(--shadow-sm);
        }
        .about-hero-highlight {
            background: #0f4c81;
            color: #ffffff;
            border-radius: 24px;
            padding: 28px;
            box-shadow: var(--shadow-lg);
            display: grid;
            gap: 12px;
            position: relative;
            overflow: hidden;
        }
        .about-hero-highlight::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 55%);
            pointer-events: none;
        }
        .about-hero-highlight-icon {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            background: rgba(255,255,255,0.18);
            display: grid;
            place-items: center;
            font-size: 20px;
        }
        .about-hero-highlight-title {
            font-size: 18px;
            font-weight: 800;
        }
        .about-hero-highlight-body {
            color: rgba(255,255,255,0.85);
            font-size: 14px;
            line-height: 1.7;
        }

        /* ===================== ALERTS ===================== */
        .alert { padding: 14px 18px; border-radius: 8px; font-size: 14px; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
        .alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
        .alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
        .alert-info { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }

        /* ===================== WHATSAPP FLOAT ===================== */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            width: 56px;
            height: 56px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(37,211,102,0.4);
            animation: pulse-wa 2s ease-in-out infinite;
        }

        @keyframes pulse-wa {
            0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
            50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
        }

        /* ===================== BACK TO TOP ===================== */
        .back-to-top {
            position: fixed;
            bottom: 95px;
            right: 30px;
            z-index: 999;
            width: 44px;
            height: 44px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 16px;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            box-shadow: var(--shadow);
            cursor: pointer;
            border: none;
        }

        .back-to-top.visible { opacity: 1; visibility: visible; }

        /* ===================== LIGHTBOX ===================== */
        .lightbox {
            position: fixed;
            inset: 0;
            z-index: 1200;
            display: none;
        }
        .lightbox.open { display: block; }
        .lightbox-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(15, 23, 42, 0.72);
            backdrop-filter: blur(2px);
        }
        .lightbox-panel {
            position: absolute;
            inset: 0;
            margin: auto;
            max-width: min(92vw, 980px);
            max-height: 90vh;
            display: grid;
            place-items: center;
            gap: 12px;
            padding: 24px 50px 20px;
            pointer-events: none;
        }
        .lightbox-image {
            max-width: 100%;
            max-height: 72vh;
            border-radius: 16px;
            box-shadow: 0 24px 60px rgba(15,23,42,0.35);
            pointer-events: auto;
            background: #fff;
        }
        .lightbox-caption {
            color: #e2e8f0;
            font-size: 14px;
            text-align: center;
            pointer-events: auto;
        }
        .lightbox-close {
            position: absolute;
            top: 18px;
            right: 22px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            background: rgba(255,255,255,0.12);
            color: #fff;
            font-size: 22px;
            cursor: pointer;
            pointer-events: auto;
        }
        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: none;
            background: rgba(255,255,255,0.16);
            color: #fff;
            cursor: pointer;
            pointer-events: auto;
        }
        .lightbox-prev { left: 18px; }
        .lightbox-next { right: 18px; }
        .lightbox-nav:hover, .lightbox-close:hover { background: rgba(255,255,255,0.28); }
        @media (max-width: 640px) {
            .lightbox-panel { padding: 20px 12px; }
            .lightbox-nav { width: 38px; height: 38px; }
            .lightbox-prev { left: 8px; }
            .lightbox-next { right: 8px; }
        }

        /* ===================== SEARCH ===================== */
        .nav-search { position: relative; }

        .nav-search-panel {
            position: absolute;
            top: calc(100% + 10px);
            right: 24px;
            width: 420px;
            background: #ffffff;
            border-radius: 16px;
            box-shadow: var(--shadow-xl);
            border: 1px solid rgba(0,0,0,0.06);
            padding: 14px;
            display: none;
            z-index: 2000;
            max-height: 70vh;
            overflow: auto;
        }

        .nav-search-panel.open { display: block; }

        .nav-search-field {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 10px 12px;
        }

        .nav-search-field i { color: #94a3b8; }

        .nav-search-field input {
            flex: 1;
            border: none;
            outline: none;
            background: transparent;
            font-size: 14px;
        }

        .nav-search-close {
            border: none;
            background: transparent;
            color: #94a3b8;
            font-size: 18px;
            cursor: pointer;
        }

        .nav-search-results {
            max-height: 320px;
            overflow: auto;
            margin-top: 12px;
            display: grid;
            gap: 12px;
        }

        .nav-search-section-title {
            font-weight: 800;
            color: #0f172a;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 6px;
        }

        .nav-search-list { display: grid; gap: 8px; }

        .nav-search-item {
            display: block;
            padding: 10px 12px;
            border-radius: 10px;
            text-decoration: none;
            color: inherit;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            transition: all 0.2s;
        }

        .nav-search-item:hover {
            border-color: rgba(15, 76, 129, 0.35);
            box-shadow: var(--shadow-sm);
        }

        .nav-search-item-title {
            display: block;
            font-size: 13.5px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 4px;
        }

        .nav-search-item-snippet {
            display: block;
            font-size: 12px;
            color: #64748b;
        }

        .nav-search-empty,
        .nav-search-hint {
            font-size: 12.5px;
            color: #64748b;
            padding: 6px 4px;
        }

        @media (max-width: 768px) {
            .nav-search-panel {
                display: none !important;
            }
        }

        /* Mobile search popup */
        .mobile-search-overlay {
            position: fixed;
            inset: 0;
            display: none;
            align-items: center;
            justify-content: center;
            background: rgba(15, 23, 42, 0.4);
            backdrop-filter: blur(4px);
            z-index: 2200;
        }

        .mobile-search-overlay.open { display: flex; }

        .mobile-search-backdrop {
            position: absolute;
            inset: 0;
        }

        .mobile-search-panel {
            position: relative;
            width: min(520px, 92vw);
            background: #ffffff;
            border-radius: 16px;
            padding: 14px;
            box-shadow: var(--shadow-xl);
            z-index: 1;
        }

        .mobile-search-field {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 12px 12px;
        }

        .mobile-search-field i { color: #94a3b8; }

        .mobile-search-field input {
            flex: 1;
            border: none;
            outline: none;
            background: transparent;
            font-size: 14px;
        }

        .mobile-search-close {
            border: none;
            background: transparent;
            color: #94a3b8;
            font-size: 18px;
            cursor: pointer;
        }

        .mobile-search-results {
            max-height: 55vh;
            overflow: auto;
            margin-top: 12px;
            display: grid;
            gap: 12px;
        }

        @media (min-width: 769px) {
            .mobile-search-overlay { display: none !important; }
        }

        /* ===================== RESPONSIVE ===================== */
        @media (max-width: 1024px) {
            .grid-4 { grid-template-columns: repeat(2, 1fr); }
            .hero-grid { grid-template-columns: 1fr; }
            .contact-grid { grid-template-columns: 1fr; }
            .about-hero-grid-full { grid-template-columns: 1fr; }
            .about-hero-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
            .about-hero-grid > div { min-width: 0; }
            .about-values-card { width: 100%; }
            .process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .hero-visual { height: 420px; }
        }

        @media (max-width: 768px) {
            .nav, .nav-actions { display: none; }
            .header-actions-mobile { display: flex; }
            .mobile-toggle { display: flex; align-items: center; justify-content: center; }
            .mobile-menu { display: flex; flex-direction: column; }
            .grid-3, .grid-2 { grid-template-columns: 1fr; }
            .services-grid { grid-template-columns: 1fr; }
            .contact-form-grid { grid-template-columns: 1fr; }
            .contact-phone-grid { grid-template-columns: 1fr; }
            .contact-office-card { padding: 20px; }
            .contact-office-image { height: 160px; }
            .hero-grid { gap: 28px; }
            .about-hero-grid-full { gap: 20px; min-height: auto; }
            .sitemap-hero { padding: 120px 0 70px; }
            .sitemap-hero-inner { grid-template-columns: 1fr; }
            .sitemap-grid { grid-template-columns: 1fr; }
            .sitemap-links { grid-template-columns: 1fr; }
            .gallery-hero, .events-hero, .event-detail-hero { padding: 120px 0 70px; }
            .gallery-hero-inner, .events-hero-inner { grid-template-columns: 1fr; }
            .gallery-grid, .events-grid { grid-template-columns: 1fr; }
            .event-photos-grid { grid-template-columns: 1fr; }
            .testimonials-grid { grid-template-columns: 1fr; }
            .section { padding: 70px 0; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .hero-stats { gap: 20px; }
            .process-step::after { display: none; }
            .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .stats-grid { grid-template-columns: 1fr; }
            .header-inner { padding: 0 16px; gap: 10px; }
            .logo { flex: 1 1 auto; }
            .logo-image { width: auto; height: 44px; }
            .logo-icon { width: 36px; height: 36px; font-size: 16px; }
            .logo-text { max-width: 170px; min-width: 0; }
            .logo-text .brand { font-size: clamp(10px, 3.8vw, 14px); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.15; }
            .logo-text .tagline { font-size: clamp(7px, 2.2vw, 9px); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.15; }
            .header .logo-tagline { display: none; }
            .hero-visual { height: auto; min-height: 320px; }
            .container, .container1, .section, .hero { overflow-x: hidden; }
            .hero-orbit { width: 280px; height: 280px; }
            .hero-orbit-inner { width: 210px; height: 210px; }
            .hero-orbit-core { width: 150px; height: 150px; font-size: 56px; }
            .hero-orbit-icon { width: 46px; height: 46px; font-size: 18px; }
            .hero-card-float {
                position: relative;
                top: auto;
                right: auto;
                bottom: auto;
                left: auto;
                margin-top: 16px;
                animation: none;
            }
            .about-metrics-grid { grid-template-columns: 1fr 1fr !important; gap: 16px !important; }
            .about-values-card { padding: 28px !important; border-radius: 20px !important; }
            .hero { padding-top: 120px; }
        }

        @media (max-width: 600px) {
            .container { padding: 0 16px; }
            .section { padding: 60px 0; }
            .hero { min-height: auto; padding-top: 130px; }
            .hero-stats { flex-direction: column; align-items: flex-start; }
            .hero-stat .number { font-size: 26px; }
            .hero-grid { gap: 22px; }
            .hero-actions { margin-bottom: 16px; }
            .hero-actions { width: 100%; }
            .hero-btn-primary, .hero-btn-secondary { width: 100%; justify-content: center; }
            .service-card, .testimonial-card { padding: 24px; }
            .swiper-button-prev, .swiper-button-next { display: none; }
            .cta-section { padding: 70px 0; }
            .logo-text { max-width: 160px; }
            .logo-text .brand { font-size: clamp(10px, 4.6vw, 13px); }
            .logo-text .tagline { font-size: clamp(7px, 2.4vw, 8px); }
            .about-metrics-grid { grid-template-columns: 1fr !important; }
        }

        @media (max-width: 480px) {
            .grid-4 { grid-template-columns: 1fr; }
            .hero-actions { flex-direction: column; }
            .hero { padding-top: 120px; }
            .hero-orbit { width: 220px; height: 220px; }
            .hero-orbit-inner { width: 170px; height: 170px; }
            .hero-orbit-core { width: 120px; height: 120px; font-size: 48px; }
            .hero-orbit-icon { width: 40px; height: 40px; font-size: 16px; }
            .hero-card-float { display: none; }
            .process-grid { grid-template-columns: 1fr; }
            .mobile-menu { padding: 72px 20px 36px; }
.mobile-menu-link { font-size: 18px; padding: 14px 0; }
        .mobile-menu-link-button {
            background: transparent;
            border: none;
            text-align: left;
            color: white;
            cursor: pointer;
            width: 100%;
            font-size: 18px;
            padding: 14px 0;
        }

            .section-header { margin-bottom: 40px; }
            .section-subtitle { font-size: 15px; }
            .footer { padding: 60px 0 0; }
        }

        @media (max-width: 360px) {
            .hero-btn-primary, .hero-btn-secondary { font-size: 14px; padding: 12px 18px; }
            .logo-text { max-width: 150px; }
            .logo-text .brand { font-size: clamp(10px, 6vw, 12px); }
            .logo-text .tagline { font-size: clamp(6px, 2.6vw, 8px); }
        }
