
        :root {
            --primary: #D62828;
            --primary-dark: #B71C1C;
            --primary-light: #EF5350;
            --secondary: #FFFFFF;
            --accent: #003049;
            --accent-dark: #001829;
            --gradient-main: linear-gradient(135deg, #D62828 0%, #E53935 50%, #FF5252 100%);
            --gradient-accent: linear-gradient(135deg, #003049 0%, #004060 50%, #005580 100%);
            --gradient-dark: linear-gradient(135deg, #001829 0%, #003049 50%, #004070 100%);
            --shadow-red: 0 15px 50px rgba(214, 40, 40, 0.25);
            --shadow-navy: 0 20px 60px rgba(0, 48, 73, 0.2);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: #2d3748;
            overflow-x: hidden;
            background: #ffffff;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        /* ========== ADVANCED ANIMATIONS ========== */
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            25% { transform: translateY(-16px) rotate(1deg); }
            75% { transform: translateY(-10px) rotate(-1deg); }
        }
        
        @keyframes floatReverse {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(18px); }
        }
        
        @keyframes pulse-glow-red {
            0%, 100% { 
                box-shadow: 0 0 30px rgba(214, 40, 40, 0.45),
                            0 0 60px rgba(214, 40, 40, 0.22),
                            inset 0 0 20px rgba(255, 255, 255, 0.12);
            }
            50% { 
                box-shadow: 0 0 50px rgba(214, 40, 40, 0.65),
                            0 0 100px rgba(214, 40, 40, 0.32),
                            inset 0 0 30px rgba(255, 255, 255, 0.18);
            }
        }
        
        @keyframes gradient-flow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        @keyframes heartbeat-vital {
            0% { transform: scale(1); }
            14% { transform: scale(1.2); }
            28% { transform: scale(1); }
            42% { transform: scale(1.15); }
            70% { transform: scale(1); }
            100% { transform: scale(1); }
        }
        
        @keyframes rotate-slow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        @keyframes shimmer {
            0% { background-position: -200% center; }
            100% { background-position: 200% center; }
        }
        
        @keyframes slide-up-reveal {
            from { opacity: 0; transform: translateY(55px) scale(0.95); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }
        
        .floating-element {
            animation: float 7s ease-in-out infinite;
        }
        
        .floating-element-reverse {
            animation: floatReverse 8s ease-in-out infinite;
        }

        /* ========== NAVIGATION ========== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 9999;
            padding: 20px 0;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            background: transparent;
        }
        
        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(24px);
            padding: 14px 0;
            box-shadow: 0 8px 32px rgba(0, 48, 73, 0.1);
            border-bottom: 2px solid rgba(214, 40, 40, 0.15);
        }
        
        .nav-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 48px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 16px;
            text-decoration: none;
            position: relative;
        }
        
        .logo-icon {
            width: 56px;
            height: 56px;
            background: var(--gradient-main);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: white;
            animation: heartbeat-vital 2s ease-in-out infinite, pulse-glow-red 3s ease-in-out infinite;
            position: relative;
            overflow: hidden;
        }
        
        .logo-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.35) 0%, transparent 70%);
            animation: rotate-slow 8s linear infinite;
        }
        
        .logo-text {
            font-size: 26px;
            font-weight: 800;
            font-family: 'Playfair Display', serif;
            letter-spacing: -0.5px;
            color: white;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled .logo-text {
            color: var(--accent);
        }
        
        .logo-text span {
            color: var(--primary);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 40px;
            align-items: center;
        }
        
        .nav-menu a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            padding: 8px 0;
            letter-spacing: 0.3px;
        }
        
        .navbar.scrolled .nav-menu a {
            color: var(--accent);
        }
        
        .nav-menu a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--gradient-main);
            transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
            border-radius: 10px;
            transform: translateX(-50%);
        }
        
        .nav-menu a:hover::before {
            width: 100%;
        }
        
        .nav-menu a:hover {
            color: var(--primary-light);
        }
        
        .navbar.scrolled .nav-menu a:hover {
            color: var(--primary);
        }
        
        .nav-cta {
            background: var(--gradient-main) !important;
            color: white !important;
            padding: 14px 32px !important;
            border-radius: 60px !important;
            font-weight: 800 !important;
            font-size: 13px !important;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
            box-shadow: 0 8px 28px rgba(214, 40, 40, 0.4) !important;
            letter-spacing: 0.5px !important;
            text-transform: uppercase !important;
            position: relative;
            overflow: hidden;
        }
        
        .nav-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
            transition: left 0.6s ease;
        }
        
        .nav-cta:hover::before {
            left: 100%;
        }
        
        .nav-cta:hover {
            transform: translateY(-4px) scale(1.05) !important;
            box-shadow: 0 16px 45px rgba(214, 40, 40, 0.55) !important;
        }
        
        .nav-cta::after {
            display: none !important;
        }
        
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 7px;
            cursor: pointer;
            z-index: 10001;
            width: 36px;
            height: 28px;
            justify-content: center;
        }
        
        .mobile-toggle span {
            width: 100%;
            height: 3px;
            background: white;
            transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
            border-radius: 3px;
            display: block;
        }

        /* ========== HERO SECTION ========== */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(0,24,41,0.95) 0%, rgba(0,48,73,0.92) 50%, rgba(0,64,96,0.90) 100%), 
                        url('https://images.unsplash.com/photo-1505751172876-fa1923c5c528?fm=jpg&q=60&w=3000&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8OHx8aGVhbHRoY2FyZXxlbnwwfHwwfHx8MA%3D%3D') center/cover no-repeat fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 15% 85%, rgba(214, 40, 40, 0.18) 0%, transparent 45%),
                radial-gradient(circle at 85% 15%, rgba(229, 57, 53, 0.12) 0%, transparent 45%);
            pointer-events: none;
        }
        
        .hero-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }
        
        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.65);
            border-radius: 50%;
            animation: float 10s ease-in-out infinite;
        }
        
        .particle:nth-child(odd) {
            box-shadow: 0 0 20px rgba(214, 40, 40, 0.85), 0 0 40px rgba(214, 40, 40, 0.45);
        }
        
        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        
        .shape {
            position: absolute;
            border: 2px solid rgba(214, 40, 40, 0.2);
            border-radius: 50%;
            animation: rotate-slow 40s linear infinite;
        }
        
        .shape::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            border: 2px solid transparent;
            border-top-color: var(--primary);
            border-radius: 50%;
            animation: rotate-slow 15s linear infinite reverse;
        }
        
        .shape:nth-child(1) {
            width: 500px; height: 500px; top: -150px; right: -150px;
        }
        
        .shape:nth-child(2) {
            width: 380px; height: 380px; bottom: -120px; left: -120px;
            animation-duration: 35s; animation-direction: reverse;
        }
        
        .shape:nth-child(3) {
            width: 220px; height: 220px; top: 40%; left: 8%;
            animation-duration: 25s; opacity: 0.5;
        }
        
        .hero-content {
            max-width: 1000px;
            text-align: center;
            padding: 0 28px;
            position: relative;
            z-index: 10;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(214, 40, 40, 0.15);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(214, 40, 40, 0.3);
            color: white;
            padding: 14px 32px;
            border-radius: 60px;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 36px;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            animation: slide-up-reveal 1s cubic-bezier(0.23, 1, 0.32, 1) both;
        }
        
        .hero-badge i {
            font-size: 18px;
            animation: heartbeat-vital 1.8s ease-in-out infinite;
        }
        
        .hero-title {
            font-size: clamp(48px, 7vw, 82px);
            color: white;
            line-height: 1.1;
            margin-bottom: 32px;
            font-weight: 900;
            animation: slide-up-reveal 1s cubic-bezier(0.23, 1, 0.32, 1) 0.15s both;
            letter-spacing: -2px;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
        }
        
        .hero-title span {
            background: linear-gradient(135deg, #D62828 0%, #FF5252 30%, #FF8A80 60%, #D62828 100%);
            background-size: 300% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradient-flow 4s ease infinite;
        }
        
        .hero-subtitle {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.92);
            margin-bottom: 52px;
            line-height: 1.85;
            max-width: 750px;
            margin-left: auto;
            margin-right: auto;
            animation: slide-up-reveal 1s cubic-bezier(0.23, 1, 0.32, 1) 0.3s both;
            font-weight: 400;
        }
        
        .hero-buttons {
            display: flex;
            gap: 24px;
            justify-content: center;
            flex-wrap: wrap;
            animation: slide-up-reveal 1s cubic-bezier(0.23, 1, 0.32, 1) 0.45s both;
        }
        
        .btn-primary {
            background: var(--gradient-main);
            color: white;
            padding: 19px 46px;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 800;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 14px;
            transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
            border: none;
            cursor: pointer;
            box-shadow: 0 14px 45px rgba(214, 40, 40, 0.5);
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.6s ease;
        }
        
        .btn-primary:hover::before {
            left: 100%;
        }
        
        .btn-primary:hover {
            transform: translateY(-6px) scale(1.05);
            box-shadow: 0 25px 65px rgba(214, 40, 40, 0.65);
        }
        
        .btn-secondary {
            background: transparent;
            color: white;
            padding: 19px 46px;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 14px;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            border: 2px solid rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(8px);
        }
        
        .btn-secondary:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-4px);
            box-shadow: 0 15px 42px rgba(214, 40, 40, 0.28);
            background: rgba(214, 40, 40, 0.08);
        }
        
        .scroll-indicator {
            position: absolute;
            bottom: 48px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            animation: bounce 2.5s infinite;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            z-index: 10;
        }
        
        .scroll-indicator span {
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 500;
        }
        
        .scroll-indicator .mouse {
            width: 28px; height: 44px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 20px;
            position: relative;
        }
        
        .scroll-indicator .wheel {
            width: 4px; height: 10px;
            background: var(--primary);
            border-radius: 2px;
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            animation: scroll-wheel 2s infinite;
        }
        
        @keyframes scroll-wheel {
            0% { opacity: 1; transform: translateX(-50%) translateY(0); }
            100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-18px); }
            60% { transform: translateX(-50%) translateY(-9px); }
        }
        
        @keyframes slide-up-reveal {
            from { opacity: 0; transform: translateY(55px) scale(0.95); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        /* ========== SECTION STYLES ========== */
        section {
            padding: 130px 0;
            position: relative;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 48px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 85px;
        }
        
        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, rgba(214, 40, 40, 0.08) 0%, rgba(0, 48, 73, 0.06) 100%);
            color: var(--primary);
            padding: 12px 28px;
            border-radius: 60px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 26px;
            border: 1px solid rgba(214, 40, 40, 0.2);
        }
        
        .section-title {
            font-size: clamp(36px, 5vw, 56px);
            color: var(--accent);
            margin-bottom: 26px;
            line-height: 1.2;
            letter-spacing: -1px;
        }
        
        .section-subtitle {
            font-size: 18px;
            color: #5a6978;
            max-width: 720px;
            margin: 0 auto;
            line-height: 1.85;
            font-weight: 400;
        }

        /* ========== ABOUT SECTION ========== */
        .about-section {
            background: linear-gradient(180deg, #ffffff 0%, #fff5f5 100%);
            position: relative;
            overflow: hidden;
        }
        
        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 550px;
            height: 550px;
            background: radial-gradient(circle, rgba(214, 40, 40, 0.07) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
        }
        
        .about-image-wrapper {
            position: relative;
        }
        
        .about-image-main {
            width: 100%;
            height: 620px;
            object-fit: cover;
            border-radius: 32px;
            box-shadow: var(--shadow-navy);
            border: 3px solid rgba(214, 40, 40, 0.2);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        }
        
        .about-image-wrapper:hover .about-image-main {
            transform: scale(1.02);
            box-shadow: 0 35px 90px rgba(0, 48, 73, 0.28);
        }
        
        .about-floating-card {
            position: absolute;
            bottom: -35px;
            right: -35px;
            background: var(--gradient-main);
            padding: 36px 44px;
            border-radius: 26px;
            box-shadow: var(--shadow-red);
            animation: float 6s ease-in-out infinite;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }
        
        .about-floating-card h4 {
            font-size: 48px;
            color: white;
            font-weight: 900;
            font-family: 'Inter', sans-serif;
            line-height: 1;
        }
        
        .about-floating-card p {
            color: rgba(255, 255, 255, 0.92);
            font-size: 15px;
            margin-top: 8px;
            font-weight: 500;
        }
        
        .about-content h2 {
            font-size: 50px;
            margin-bottom: 32px;
            line-height: 1.15;
            color: var(--accent);
            letter-spacing: -1px;
        }
        
        .about-content p {
            color: #4a5568;
            margin-bottom: 28px;
            font-size: 17px;
            line-height: 1.9;
        }
        
        .about-values {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 50px;
        }
        
        .value-item {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            padding: 26px;
            background: white;
            border-radius: 20px;
            transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
            border: 2px solid transparent;
            box-shadow: 0 4px 20px rgba(214, 40, 40, 0.05);
        }
        
        .value-item:hover {
            border-color: var(--primary);
            transform: translateY(-8px);
            box-shadow: 0 20px 55px rgba(214, 40, 40, 0.15);
            background: linear-gradient(135deg, #ffffff 0%, #fffafa 100%);
        }
        
        .value-icon {
            width: 58px;
            height: 58px;
            background: var(--gradient-main);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            flex-shrink: 0;
            box-shadow: 0 8px 25px rgba(214, 40, 40, 0.3);
        }
        
        .value-item h4 {
            font-size: 19px;
            margin-bottom: 8px;
            color: var(--accent);
            font-family: 'Inter', sans-serif;
            font-weight: 700;
        }
        
        .value-item p {
            font-size: 14px;
            color: #718096;
            margin: 0;
            line-height: 1.65;
        }

        /* ========== METRICS SECTION ========== */
        .metrics-section {
            background: var(--gradient-dark);
            position: relative;
            overflow: hidden;
        }
        
        .metrics-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.04;
            background-image: radial-gradient(circle at 2px 2px, var(--primary) 1.5px, transparent 0);
            background-size: 48px 48px;
        }
        
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 45px;
            position: relative;
            z-index: 2;
        }
        
        .metric-card {
            text-align: center;
            padding: 58px 34px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(214, 40, 40, 0.18);
            border-radius: 28px;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(8px);
        }
        
        .metric-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(214, 40, 40, 0.12), transparent);
            transition: left 0.7s ease;
        }
        
        .metric-card:hover::before {
            left: 100%;
        }
        
        .metric-card:hover {
            transform: translateY(-15px);
            border-color: var(--primary);
            box-shadow: 0 30px 80px rgba(214, 40, 40, 0.25);
            background: rgba(255, 255, 255, 0.08);
        }
        
        .metric-icon {
            width: 92px;
            height: 92px;
            background: var(--gradient-main);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 40px;
            color: white;
            animation: pulse-glow-red 4s ease-in-out infinite;
            position: relative;
        }
        
        .metric-icon::after {
            content: '';
            position: absolute;
            top: -6px; left: -6px; right: -6px; bottom: -6px;
            border-radius: 50%;
            border: 2px dashed rgba(214, 40, 40, 0.4);
            animation: rotate-slow 20s linear infinite;
        }
        
        .metric-number {
            font-size: 60px;
            font-weight: 900;
            color: white;
            font-family: 'Inter', sans-serif;
            margin-bottom: 14px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        
        .metric-label {
            color: rgba(255, 255, 255, 0.75);
            font-size: 17px;
            letter-spacing: 1.5px;
            font-weight: 500;
        }

        /* ========== FEATURES SECTION ========== */
        .features-section {
            background: #fafafa;
            position: relative;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 38px;
        }
        
        .feature-card {
            background: white;
            padding: 52px 40px;
            border-radius: 28px;
            border: 1px solid rgba(214, 40, 40, 0.1);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 25px rgba(0, 48, 73, 0.06);
        }
        
        .feature-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-main);
            transform: scaleX(0);
            transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            transform-origin: left;
        }
        
        .feature-card:hover {
            transform: translateY(-18px);
            box-shadow: var(--shadow-navy);
            border-color: transparent;
        }
        
        .feature-card:hover::after {
            transform: scaleX(1);
        }
        
        .feature-number {
            font-size: 80px;
            font-weight: 900;
            color: rgba(214, 40, 40, 0.08);
            line-height: 1;
            margin-bottom: 20px;
            font-family: 'Inter', sans-serif;
            transition: all 0.4s ease;
        }
        
        .feature-card:hover .feature-number {
            color: rgba(214, 40, 40, 0.16);
            transform: scale(1.1);
        }
        
        .feature-icon {
            width: 72px;
            height: 72px;
            background: linear-gradient(135deg, rgba(214, 40, 40, 0.12) 0%, rgba(0, 48, 73, 0.06) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: var(--primary);
            margin-bottom: 30px;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            border: 1px solid rgba(214, 40, 40, 0.15);
        }
        
        .feature-card:hover .feature-icon {
            background: var(--gradient-main);
            color: white;
            transform: scale(1.15) rotate(10deg);
            border-color: transparent;
            box-shadow: 0 12px 35px rgba(214, 40, 40, 0.4);
        }
        
        .feature-card h3 {
            font-size: 26px;
            margin-bottom: 18px;
            color: var(--accent);
            font-family: 'Inter', sans-serif;
            font-weight: 700;
        }
        
        .feature-card p {
            color: #5a6978;
            line-height: 1.85;
            font-size: 16px;
        }

        /* ========== PROCESS SECTION ========== */
        .process-section {
            background: white;
            position: relative;
        }
        
        .process-timeline {
            position: relative;
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .process-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, transparent, var(--primary), var(--primary-light), var(--primary), transparent);
            transform: translateX(-50%);
            box-shadow: 0 0 25px rgba(214, 40, 40, 0.35);
            border-radius: 10px;
        }
        
        .process-step {
            display: flex;
            align-items: center;
            margin-bottom: 70px;
            position: relative;
        }
        
        .process-step:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        .process-content {
            width: calc(50% - 60px);
            background: linear-gradient(145deg, #ffffff 0%, #fffafa 100%);
            padding: 42px;
            border-radius: 26px;
            box-shadow: 0 12px 50px rgba(0, 48, 73, 0.1);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            border: 2px solid rgba(214, 40, 40, 0.1);
            position: relative;
        }
        
        .process-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--gradient-main);
            border-radius: 4px;
            transition: height 0.4s ease;
        }
        
        .process-content:hover::before {
            height: 100%;
        }
        
        .process-content:hover {
            transform: scale(1.04) translateY(-5px);
            box-shadow: var(--shadow-navy);
            border-color: var(--primary);
        }
        
        .process-dot {
            width: 78px;
            height: 78px;
            background: var(--gradient-main);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: white;
            font-weight: 900;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            box-shadow: 0 0 40px rgba(214, 40, 40, 0.5);
            font-family: 'Inter', sans-serif;
            transition: all 0.4s ease;
        }
        
        .process-step:hover .process-dot {
            transform: translateX(-50%) scale(1.15);
            box-shadow: 0 0 55px rgba(214, 40, 40, 0.7);
        }
        
        .process-content h3 {
            font-size: 24px;
            margin-bottom: 16px;
            color: var(--accent);
            font-family: 'Inter', sans-serif;
            font-weight: 700;
        }
        
        .process-content p {
            color: #5a6978;
            font-size: 16px;
            line-height: 1.8;
        }

        /* ========== PACKAGES SECTION ========== */
        .packages-section {
            background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
        }
        
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 38px;
            align-items: stretch;
        }
        
        .package-card {
            background: white;
            border-radius: 32px;
            padding: 52px 42px;
            border: 2px solid rgba(214, 40, 40, 0.12);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            display: flex;
            flex-direction: column;
            box-shadow: 0 8px 35px rgba(0, 48, 73, 0.06);
        }
        
        .package-card.featured {
            border-color: var(--primary);
            transform: scale(1.08);
            box-shadow: 0 35px 95px rgba(214, 40, 40, 0.22);
            background: linear-gradient(180deg, #ffffff 0%, #fffafa 100%);
        }
        
        .package-badge {
            position: absolute;
            top: -18px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-main);
            color: white;
            padding: 12px 32px;
            border-radius: 60px;
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            box-shadow: 0 8px 28px rgba(214, 40, 40, 0.35);
        }
        
        .package-card:hover {
            transform: translateY(-18px);
            box-shadow: var(--shadow-navy);
            border-color: var(--primary-light);
        }
        
        .package-card.featured:hover {
            transform: scale(1.08) translateY(-18px);
        }
        
        .package-name {
            font-size: 30px;
            margin-bottom: 14px;
            color: var(--accent);
            font-family: 'Inter', sans-serif;
            font-weight: 800;
        }
        
        .package-price {
            font-size: 56px;
            font-weight: 900;
            color: var(--primary);
            font-family: 'Inter', sans-serif;
            margin-bottom: 32px;
        }
        
        .package-price span {
            font-size: 18px;
            color: #a0aec0;
            font-weight: 500;
        }
        
        .package-features {
            list-style: none;
            margin-bottom: 42px;
            flex-grow: 1;
        }
        
        .package-features li {
            padding: 16px 0;
            border-bottom: 1px solid rgba(214, 40, 40, 0.08);
            color: #4a5568;
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 16px;
        }
        
        .package-features li i {
            color: var(--primary);
            font-size: 16px;
            width: 22px;
            text-align: center;
        }
        
        .package-btn {
            width: 100%;
            padding: 19px;
            border-radius: 60px;
            text-align: center;
            text-decoration: none;
            font-weight: 800;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            display: block;
            font-size: 16px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        
        .package-btn.primary {
            background: var(--gradient-main);
            color: white;
            border: none;
            box-shadow: 0 10px 35px rgba(214, 40, 40, 0.35);
        }
        
        .package-btn.secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .package-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 18px 45px rgba(214, 40, 40, 0.35);
        }

        /* ========== SERVICES SECTION ========== */
        .services-section {
            background: white;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 42px;
        }
        
        .service-card {
            background: white;
            border-radius: 28px;
            overflow: hidden;
            display: grid;
            grid-template-columns: 300px 1fr;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            border: 1px solid rgba(214, 40, 40, 0.1);
            box-shadow: 0 6px 30px rgba(0, 48, 73, 0.06);
        }
        
        .service-card:hover {
            transform: translateY(-14px);
            box-shadow: var(--shadow-navy);
            border-color: var(--primary);
        }
        
        .service-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .service-card:hover .service-image {
            transform: scale(1.08);
        }
        
        .service-info {
            padding: 46px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .service-icon {
            width: 68px;
            height: 68px;
            background: var(--gradient-main);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: white;
            margin-bottom: 24px;
            box-shadow: 0 10px 30px rgba(214, 40, 40, 0.3);
        }
        
        .service-info h3 {
            font-size: 28px;
            margin-bottom: 18px;
            color: var(--accent);
            font-family: 'Inter', sans-serif;
            font-weight: 800;
        }
        
        .service-info p {
            color: #5a6978;
            line-height: 1.85;
            margin-bottom: 24px;
            font-size: 16px;
        }
        
        .service-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.35s ease;
            font-size: 16px;
        }
        
        .service-link:hover {
            gap: 20px;
            color: var(--primary-dark);
        }

        /* ========== BOOKING SECTION ========== */
        .booking-section {
            background: linear-gradient(135deg, rgba(0,24,41,0.97) 0%, rgba(0,48,73,0.95) 50%, rgba(0,64,96,0.94) 100%),
                        url('https://images.pexels.com/photo-1631217868264-e5b90bb7e133?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat fixed;
            position: relative;
            overflow: hidden;
        }
        
        .booking-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 90px;
            align-items: center;
        }
        
        .booking-text h2 {
            font-size: 52px;
            color: white;
            margin-bottom: 32px;
            line-height: 1.15;
            letter-spacing: -1px;
        }
        
        .booking-text p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 18px;
            line-height: 1.9;
            margin-bottom: 42px;
        }
        
        .booking-features-list {
            list-style: none;
        }
        
        .booking-features-list li {
            color: white;
            padding: 16px 0;
            display: flex;
            align-items: center;
            gap: 18px;
            font-size: 17px;
            font-weight: 500;
        }
        
        .booking-features-list li i {
            color: var(--primary-light);
            font-size: 22px;
            width: 32px;
            height: 32px;
            background: rgba(214, 40, 40, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .booking-form-container {
            background: white;
            padding: 58px;
            border-radius: 32px;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .booking-form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-main);
        }
        
        .form-group {
            margin-bottom: 28px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 12px;
            font-weight: 700;
            color: var(--accent);
            font-size: 14px;
            letter-spacing: 0.5px;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 18px 24px;
            border: 2px solid rgba(214, 40, 40, 0.18);
            border-radius: 16px;
            font-size: 16px;
            font-family: 'Inter', sans-serif;
            transition: all 0.35s ease;
            outline: none;
            background: #fafafa;
            color: #2d3748;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(214, 40, 40, 0.12);
            background: white;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        /* ========== TESTIMONIALS SECTION ========== */
        .testimonials-section {
            background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 38px;
        }
        
        .testimonial-card {
            background: white;
            padding: 46px;
            border-radius: 28px;
            border: 1px solid rgba(214, 40, 40, 0.1);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            box-shadow: 0 6px 30px rgba(0, 48, 73, 0.06);
        }
        
        .testimonial-card:hover {
            transform: translateY(-14px);
            box-shadow: var(--shadow-medium);
            border-color: var(--primary);
        }
        
        .testimonial-stars {
            color: #F59E0B;
            font-size: 20px;
            margin-bottom: 24px;
        }
        
        .testimonial-text {
            color: #4a5568;
            font-size: 17px;
            line-height: 1.9;
            margin-bottom: 32px;
            font-style: italic;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 18px;
        }
        
        .author-avatar {
            width: 62px;
            height: 62px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--primary);
            box-shadow: 0 4px 15px rgba(214, 40, 40, 0.25);
        }
        
        .author-info h4 {
            font-size: 19px;
            color: var(--accent);
            margin-bottom: 5px;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
        }
        
        .author-info p {
            color: #a0aec0;
            font-size: 14px;
        }
        
        .quote-icon {
            position: absolute;
            top: 30px;
            right: 34px;
            font-size: 80px;
            color: rgba(214, 40, 40, 0.08);
            font-family: 'Playfair Display', serif;
        }

        /* ========== FAQ SECTION ========== */
        .faq-section {
            background: white;
        }
        
        .faq-container {
            max-width: 920px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: linear-gradient(145deg, #ffffff 0%, #fffafa 100%);
            border-radius: 20px;
            margin-bottom: 18px;
            overflow: hidden;
            border: 2px solid rgba(214, 40, 40, 0.1);
            transition: all 0.4s ease;
        }
        
        .faq-item.active {
            border-color: var(--primary);
            box-shadow: 0 15px 50px rgba(214, 40, 40, 0.15);
        }
        
        .faq-question {
            padding: 30px 38px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            font-size: 18px;
            color: var(--accent);
            transition: all 0.35s ease;
            font-family: 'Inter', sans-serif;
        }
        
        .faq-question:hover {
            color: var(--primary);
        }
        
        .faq-question i {
            transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            color: var(--primary);
            font-size: 20px;
            min-width: 24px;
            text-align: center;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1), padding 0.5s ease;
        }
        
        .faq-answer-content {
            padding: 0 38px 32px;
            color: #5a6978;
            line-height: 1.9;
            font-size: 16px;
        }
        
        .faq-item.active .faq-answer {
            max-height: 550px;
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            background: linear-gradient(135deg, rgba(0,24,41,0.98) 0%, rgba(0,48,73,0.97) 50%, rgba(0,64,96,0.96) 100%),
                        url('https://images.pexels.com/photo-1505751172876-fa1923c5c528?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat fixed;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(circle at 30% 70%, rgba(214, 40, 40, 0.15) 0%, transparent 50%),
                         radial-gradient(circle at 70% 30%, rgba(229, 57, 53, 0.1) 0%, transparent 50%);
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
        }
        
        .cta-content h2 {
            font-size: clamp(40px, 5.5vw, 62px);
            color: white;
            margin-bottom: 32px;
            line-height: 1.2;
            letter-spacing: -1px;
        }
        
        .cta-content p {
            color: rgba(255, 255, 255, 0.92);
            font-size: 20px;
            max-width: 720px;
            margin: 0 auto 50px;
            line-height: 1.85;
        }

        /* ========== CONTACT SECTION ========== */
        .contact-section {
            background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 70px;
        }
        
        .contact-info-cards {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        
        .contact-card {
            background: white;
            padding: 36px;
            border-radius: 24px;
            display: flex;
            align-items: center;
            gap: 24px;
            transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
            border: 2px solid rgba(214, 40, 40, 0.1);
            box-shadow: 0 4px 25px rgba(0, 48, 73, 0.06);
        }
        
        .contact-card:hover {
            border-color: var(--primary);
            transform: translateX(14px);
            box-shadow: 0 18px 50px rgba(214, 40, 40, 0.15);
        }
        
        .contact-card-icon {
            width: 72px;
            height: 72px;
            background: var(--gradient-main);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: white;
            flex-shrink: 0;
            box-shadow: 0 10px 30px rgba(214, 40, 40, 0.3);
        }
        
        .contact-card h4 {
            font-size: 19px;
            margin-bottom: 8px;
            color: var(--accent);
            font-family: 'Inter', sans-serif;
            font-weight: 700;
        }
        
        .contact-card p {
            color: #5a6978;
            font-size: 16px;
        }
        
        .contact-card a {
            color: #5a6978;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .contact-card a:hover {
            color: var(--primary);
        }
        
        .contact-form-wrapper {
            background: white;
            padding: 58px;
            border-radius: 32px;
            border: 2px solid rgba(214, 40, 40, 0.1);
            box-shadow: 0 10px 45px rgba(0, 48, 73, 0.08);
            position: relative;
            overflow: hidden;
        }
        
        .contact-form-wrapper::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 5px;
            background: var(--gradient-main);
        }
        
        .contact-form-wrapper h3 {
            font-size: 36px;
            margin-bottom: 36px;
            color: var(--accent);
            font-family: 'Inter', sans-serif;
            font-weight: 800;
        }

        /* ========== FOOTER ========== */
        .footer {
            background: var(--gradient-dark);
            color: white;
            padding: 90px 0 40px;
            position: relative;
            overflow: hidden;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: var(--gradient-main);
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
            gap: 60px;
            margin-bottom: 70px;
        }
        
        .footer-col h3 {
            font-size: 23px;
            margin-bottom: 30px;
            color: var(--primary-light);
            font-family: 'Inter', sans-serif;
            font-weight: 800;
            letter-spacing: 0.5px;
        }
        
        .footer-about p {
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.9;
            margin-bottom: 30px;
            font-size: 16px;
        }
        
        .footer-social {
            display: flex;
            gap: 14px;
        }
        
        .footer-social a {
            width: 50px;
            height: 50px;
            background: rgba(214, 40, 40, 0.12);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            border: 1px solid rgba(214, 40, 40, 0.18);
        }
        
        .footer-social a:hover {
            background: var(--gradient-main);
            color: white;
            transform: translateY(-8px) rotate(8deg);
            border-color: transparent;
            box-shadow: 0 12px 30px rgba(214, 40, 40, 0.35);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 16px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.35s ease;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 16px;
        }
        
        .footer-links a:hover {
            color: var(--primary-light);
            padding-left: 16px;
        }
        
        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        
        .newsletter-input {
            padding: 18px 24px;
            border: 2px solid rgba(214, 40, 40, 0.18);
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.06);
            color: white;
            font-size: 16px;
            font-family: 'Inter', sans-serif;
            outline: none;
            transition: all 0.35s ease;
        }
        
        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.45);
        }
        
        .newsletter-input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(214, 40, 40, 0.12);
            background: rgba(255, 255, 255, 0.1);
        }
        
        .newsletter-btn {
            padding: 18px;
            background: var(--gradient-main);
            color: white;
            border: none;
            border-radius: 16px;
            font-weight: 800;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            font-family: 'Inter', sans-serif;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        
        .newsletter-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(214, 40, 40, 0.45);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(214, 40, 40, 0.15);
            padding-top: 36px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
        }
        
        .footer-bottom p {
            color: rgba(255, 255, 255, 0.55);
            font-size: 15px;
        }
        
        .footer-bottom-links {
            display: flex;
            gap: 32px;
        }
        
        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.55);
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s ease;
            font-weight: 500;
        }
        
        .footer-bottom-links a:hover {
            color: var(--primary-light);
        }

        /* ========== BACK TO TOP ========== */
        .back-to-top {
            position: fixed;
            bottom: 35px;
            right: 35px;
            width: 62px;
            height: 62px;
            background: var(--gradient-main);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 26px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
            z-index: 9998;
            box-shadow: 0 10px 35px rgba(214, 40, 40, 0.45);
            border: 3px solid rgba(255, 255, 255, 0.2);
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            transform: translateY(-8px) scale(1.1);
            box-shadow: 0 20px 55px rgba(214, 40, 40, 0.6);
        }

        /* ========== RESPONSIVE DESIGN ========== */
        @media (max-width: 1200px) {
            .packages-grid {
                grid-template-columns: 1fr;
                max-width: 520px;
                margin: 0 auto;
            }
            
            .package-card.featured {
                transform: none;
            }
            
            .package-card.featured:hover {
                transform: translateY(-18px);
            }
        }
        
        @media (max-width: 992px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 360px;
                height: 100vh;
                background: white;
                flex-direction: column;
                padding: 120px 48px;
                gap: 30px;
                transition: right 0.5s cubic-bezier(0.23, 1, 0.32, 1);
                backdrop-filter: blur(25px);
                box-shadow: -15px 0 50px rgba(0, 0, 0, 0.15);
                border-left: 3px solid var(--primary);
                overflow-y: auto;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu a {
                color: #2d3748 !important;
                font-size: 17px;
            }
            
            .mobile-toggle {
                display: flex;
            }
            
            .about-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .about-floating-card {
                right: 28px;
                bottom: -28px;
            }
            
            .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .service-card {
                grid-template-columns: 1fr;
            }
            
            .service-image {
                height: 280px;
            }
            
            .booking-container {
                grid-template-columns: 1fr;
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
                max-width: 650px;
                margin: 0 auto;
            }
            
            .process-line {
                left: 35px;
            }
            
            .process-step,
            .process-step:nth-child(even) {
                flex-direction: column;
                align-items: flex-start;
                padding-left: 90px;
            }
            
            .process-content {
                width: 100%;
            }
            
            .process-dot {
                left: 35px;
                transform: translateX(-50%);
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 768px) {
            section {
                padding: 95px 0;
            }
            
            .container {
                padding: 0 24px;
            }
            
            .hero-title {
                font-size: 42px;
            }
            
            .metrics-grid {
                grid-template-columns: 1fr;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .about-values {
                grid-template-columns: 1fr;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .booking-form-container,
            .contact-form-wrapper {
                padding: 38px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .section-title {
                font-size: 34px;
            }
            
            .about-content h2,
            .booking-text h2 {
                font-size: 38px;
            }
            
            .nav-container {
                padding: 0 24px;
            }
        }

        /* ========== ANIMATION CLASSES ========== */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px) scale(0.96);
            transition: all 0.9s cubic-bezier(0.23, 1, 0.32, 1);
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
