


@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

        /* ===== CSS VARIABLES ===== */
        :root {
            --primary: #04484E;
            --secondary: #004E89;
            --accent: #F7C948;
            --dark: #1A1A2E;
            --light: #FFFFFF;
            --gray: #64748B;
            --bg-light: #F8FAFC;
            --bg-section: #FFFFFF;
            --gradient: linear-gradient(135deg, #04484E 0%, #F7C948 100%);
            --gradient-blue: linear-gradient(135deg, #004E89 0%, #1A759F 100%);
            --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.12);
        }
        
        /* ===== RESET & BASE STYLES ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            -khtml-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-light);
            color: var(--dark);
            overflow-x: hidden;
            line-height: 1.6;
            touch-action: pan-y;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            color: var(--dark);
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        /* ===== NAVIGATION ===== */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 1.5rem 0;
            transition: all 0.3s ease;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        }
        
        nav.scrolled {
            padding: 1rem 0;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
        }
        
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--dark);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .logo span {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }
        
        .nav-links a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-cta {
            background: var(--gradient);
            color: var(--light);
            padding: 0.8rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(4, 72, 78, 0.3);
        }
        
        .nav-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(4, 72, 78, 0.5);
        }
        
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--dark);
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1001;
            transition: all 0.3s ease;
            width: 30px;
            height: 30px;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .hamburger-line {
            width: 100%;
            height: 3px;
            background: var(--dark);
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        
        .menu-toggle.active .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }
        
        .menu-toggle.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }
        
        .menu-toggle.active .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }
        
        /* ===== MOBILE NAVIGATION ===== */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--light);
            z-index: 999;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            transform: translateX(-100%);
            transition: transform 0.4s ease;
            padding: 6rem 2rem 2rem;
            box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
        }
        
        .mobile-nav.active {
            transform: translateX(0);
        }
        
        .mobile-nav-links {
            list-style: none;
            width: 100%;
        }
        
        .mobile-nav-links li {
            margin: 1.5rem 0;
            opacity: 0;
            transform: translateX(-20px);
            transition: all 0.4s ease;
        }
        
        .mobile-nav.active .mobile-nav-links li {
            opacity: 1;
            transform: translateX(0);
        }
        
        .mobile-nav.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
        .mobile-nav.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.2s; }
        .mobile-nav.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.3s; }
        .mobile-nav.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.4s; }
        .mobile-nav.active .mobile-nav-links li:nth-child(5) { transition-delay: 0.5s; }
        
        .mobile-nav-links a {
            font-size: 1.2rem;
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: block;
            padding: 0.8rem 1rem;
            border-radius: 10px;
            width: 100%;
        }
        
        .mobile-nav-links a:hover {
            color: var(--primary);
            background: rgba(4, 72, 78, 0.1);
        }
        
        /* ===== COMING SOON SECTION ===== */
        .coming-soon {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding-top: 100px;
            background: linear-gradient(135deg, #FFF5F0 0%, #F0F9FF 100%);
        }
        
        .coming-soon-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary);
            border-radius: 50%;
            animation: float 20s infinite;
            opacity: 0.3;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 0; }
            10% { opacity: 0.3; }
            90% { opacity: 0.3; }
            100% { transform: translate(100vw, -100vh) scale(0); }
        }
        
        .coming-soon-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 3rem;
            position: relative;
            z-index: 2;
            text-align: center;
        }
        
        .coming-soon-icon {
            width: 120px;
            height: 120px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 3rem;
            font-size: 3rem;
            color: var(--light);
            box-shadow: var(--shadow-hover);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .coming-soon-content h1 {
            font-size: 4rem;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease;
        }
        
        .coming-soon-content h1 .gradient-text {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .coming-soon-content p {
            font-size: 1.3rem;
            color: var(--gray);
            margin-bottom: 3rem;
            animation: fadeInUp 1s ease 0.4s backwards;
        }
    
        .coming-soon-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            animation: fadeInUp 1s ease 0.8s backwards;
        }
        
        .btn {
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .btn-primary {
            background: var(--gradient);
            color: var(--light);
            box-shadow: 0 10px 30px rgba(4, 72, 78, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(4, 72, 78, 0.5);
        }
        
        .btn-secondary {
            background: var(--light);
            color: var(--dark);
            border: 2px solid var(--dark);
        }
        
        .btn-secondary:hover {
            background: var(--dark);
            color: var(--light);
        }
        
        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }
            
            .nav-cta {
                display: none;
            }
            
            .menu-toggle {
                display: flex;
            }
            
            .coming-soon-content h1 {
                font-size: 3rem;
            }
            
            .countdown {
                gap: 1rem;
            }
            
            .countdown-item {
                min-width: 80px;
                padding: 1rem;
            }
            
            .countdown-number {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .coming-soon-content h1 {
                font-size: 2.5rem;
            }
            
            .coming-soon-content p {
                font-size: 1.1rem;
            }
            
            .countdown {
                flex-wrap: wrap;
            }
            
            .coming-soon-buttons {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
            
            .nav-container {
                padding: 0 1.5rem;
            }
            
            .coming-soon {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .coming-soon-content h1 {
                font-size: 2rem;
            }
            
            .coming-soon-icon {
                width: 100px;
                height: 100px;
                font-size: 2.5rem;
            }
            
            .countdown-item {
                min-width: 70px;
                padding: 0.8rem;
            }
            
            .countdown-number {
                font-size: 1.8rem;
            }
        }
        
        /* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
        @media (hover: none) and (pointer: coarse) {
            .btn:hover {
                transform: none;
            }
            
            .nav-cta:hover {
                transform: none;
            }
            
            .countdown-item:hover {
                transform: none;
            }
        }