/* Template professional Styles */
:root {
            --primary-color: #0f172a;    /* Slate 900 */
            --secondary-color: #2563eb;  /* Blue 600 */
            --accent-color: #60a5fa;     /* Blue 400 */
            --dark-color: #1e293b;       /* Slate 800 */
            --light-bg: #f8fafc;         /* Slate 50 */
            --white: #ffffff;
            --text-dark: #334155;        /* Slate 700 */
            --text-muted: #64748b;       /* Slate 500 */
            --glass-bg: rgba(255, 255, 255, 0.7);
            --glass-border: rgba(255, 255, 255, 0.2);
            --transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-dark);
            line-height: 1.8;
            background-color: var(--white);
            overflow-x: hidden;
            cursor: none; /* Custom cursor */
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Raleway', sans-serif;
            font-weight: 600;
            color: var(--primary-color);
            letter-spacing: -0.01em;
        }

        /* Selection */
        ::selection { background: var(--secondary-color); color: #fff; }

        /* Custom Cursor */
        #cursor {
            width: 8px; height: 8px;
            background: var(--secondary-color);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 10000;
            transition: transform 0.1s ease;
        }
        #cursor-follower {
            width: 40px; height: 40px;
            border: 1px solid var(--secondary-color);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .btn {
            padding: 14px 32px;
            font-weight: 600;
            border-radius: 12px;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 0.8rem;
            position: relative;
            overflow: hidden;
            border: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
            color: #fff !important;
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
        }

        .btn-primary:hover::before { left: 100%; }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
        }

        /* Navbar Refinement */
        .navbar {
            padding: 30px 0;
            transition: var(--transition);
            background: var(--primary-color);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .navbar.scrolled {
            padding: 15px 0;
            background: rgba(15, 23, 42, 0.9);
            backdrop-filter: blur(25px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .navbar-brand {
            font-family: 'Outfit', sans-serif;
            font-size: 1.6rem;
            font-weight: 900;
            letter-spacing: 1.5px;
            color: #ffffff !important;
        }

        .nav-link {
            font-weight: 600;
            color: #ffffff !important;
            margin: 0 15px;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            opacity: 0.8;
        }

        .nav-link:hover { color: var(--accent-color) !important; opacity: 1; }

        /* Sections */
        section { padding: 140px 0; }
        
        .section-tag {
            display: inline-block;
            background: rgba(37, 99, 235, 0.1);
            color: var(--secondary-color);
            padding: 6px 18px;
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 25px;
        }

        /* Preloader */
        #preloader {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: var(--primary-color);
            z-index: 10001;
            display: flex;
            flex-direction: column;
            align-items: center; justify-content: center;
        }
        .loader-spinner {
            width: 40px;
            height: 40px;
            border: 3px solid rgba(255, 255, 255, 0.1);
            border-top: 3px solid var(--secondary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 20px;
        }
        .loader-logo {
            font-family: 'Outfit', sans-serif;
            color: #fff;
            font-size: 1.5rem;
            font-weight: 900;
            letter-spacing: 4px;
            animation: pulse 1.5s infinite;
        }
        @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
        @keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }

        /* Scroll Progress Bar */
        #scroll-progress {
            position: fixed;
            top: 0; left: 0;
            width: 0%; height: 4px;
            background: var(--secondary-color);
            z-index: 10002;
            transition: width 0.1s;
        }

        /* Premium Shadow */
        .premium-card {
            background: var(--white);
            border: 1px solid rgba(0,0,0,0.03);
            border-radius: 24px;
            transition: var(--transition);
        }
        .premium-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 40px 80px rgba(15, 23, 42, 0.08);
            border-color: rgba(37, 99, 235, 0.1);
        }

        /* Hide Scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #f1f5f9; }
        ::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
        ::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

        /* AOS Fallback */
        [data-aos] { opacity: 1 !important; transform: none !important; }
        html.aos-enabled [data-aos] { opacity: 0 !important; }
        html.aos-enabled [data-aos].aos-animate { opacity: 1 !important; transform: none !important; }

    
        /* Mobile Menu Optimization - Titan Elite Global Patch */
        @media (max-width: 991px) {
            .navbar-collapse {
                background: white !important;
                padding: 40px !important;
                margin-top: 15px !important;
                box-shadow: 0 40px 100px rgba(0,0,0,0.2) !important;
                border-top: 4px solid var(--primary-color, var(--pizza-red, var(--acc-navy, var(--gym-green, #000)))) !important;
                max-height: 85vh !important;
                overflow-y: auto !important;
                border-radius: 0 0 20px 20px !important;
            }
            .navbar-nav .nav-link {
                color: #333 !important;
                padding: 15px 0 !important;
                border-bottom: 1px solid rgba(0,0,0,0.05) !important;
                text-align: center !important;
            }
            .navbar-nav li:last-child .nav-link { border-bottom: none !important; }
            .navbar-brand { font-size: 1.4rem !important; }
            .navbar-toggler { border: none !important; padding: 10px !important; }
        }

