@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Modern Dark Theme with Vibrant Accents */
    --primary-color: #6366f1;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    --secondary-color: #8b5cf6;
    --accent-color: #f472b6;
    --accent-gradient: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
    --success-color: #22c55e;
    --warning-color: #fbbf24;
    
    /* Dark Theme Colors */
    --bg-dark: #0f0f23;
    --bg-darker: #070714;
    --bg-card: rgba(30, 30, 60, 0.6);
    --bg-glass: rgba(255, 255, 255, 0.05);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    
    /* Modern Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
    --shadow-accent: 0 0 30px rgba(244, 114, 182, 0.4);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, #6366f1 0px, transparent 50%),
                     radial-gradient(at 80% 0%, #8b5cf6 0px, transparent 50%),
                     radial-gradient(at 0% 50%, #f472b6 0px, transparent 50%),
                     radial-gradient(at 80% 50%, #6366f1 0px, transparent 50%),
                     radial-gradient(at 0% 100%, #8b5cf6 0px, transparent 50%);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-dark);
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: white;
}
/* ==================== NAVIGATION ENHANCEMENTS ==================== */
.navbar.scrolled {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(99, 102, 241, 0.15);
}

.nav-cta .btn-nav {
    background: var(--gradient-primary);
    color: white;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: var(--transition-normal);
    border: none;
}

.nav-cta .btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ==================== NAVIGATION ==================== */
.navbar {
    background: rgba(15, 15, 35, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-bottom: 1px solid var(--glass-border);
    color: white;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

/* On scroll - become more solid */
.navbar.scrolled {
    background: rgba(15, 15, 35, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 10px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    perspective: 1000px;
}

/* Modern Logo Style */
.logo-3d {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding: 12px 28px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-normal);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-glow);
}

.logo-3d:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 60px rgba(99, 102, 241, 0.5);
}

.logo-3d::before {
    display: none;
}

.logo-3d::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    filter: blur(15px);
    opacity: 0.4;
    z-index: -1;
    transition: var(--transition-normal);
}

.logo-3d:hover::after {
    opacity: 0.6;
    filter: blur(20px);
}

.logo-3d i {
    margin-right: 12px;
    color: var(--accent-color);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 5px var(--accent-color)); }
    50% { filter: drop-shadow(0 0 20px var(--accent-color)); }
}

        .tagline-3d {
            font-size: 1.1rem;
            opacity: 0.95;
            margin-top: 15px;
            text-transform: uppercase;
            letter-spacing: 3px;
            position: relative;
            padding: 10px 20px;
            background: rgba(42, 157, 143, 0.15);
            border-radius: 30px;
            backdrop-filter: blur(5px);
            transform: translateZ(10px);
            transition: all 0.5s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .tagline-3d:hover {
            background: rgba(42, 157, 143, 0.3);
            letter-spacing: 4px;
            transform: translateZ(20px);
        }

        .tagline-3d::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Animation for globe icon */
        @keyframes globe-spin {
            0% { transform: translateZ(20px) rotate(0deg); }
            100% { transform: translateZ(20px) rotate(360deg); }
        }

        /* Floating particles background */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            background: rgba(230, 57, 70, 0.2);
            animation: float 15s infinite linear;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) translateX(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.7;
            }
            90% {
                opacity: 0.7;
            }
            100% {
                transform: translateY(-100px) translateX(100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Controls for animation */
        .controls {
            display: flex;
            gap: 15px;
            margin-top: 30px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .control-btn {
            padding: 10px 20px;
            background: rgba(42, 157, 143, 0.2);
            border: 1px solid rgba(42, 157, 143, 0.4);
            color: var(--text-color);
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .control-btn:hover {
            background: rgba(42, 157, 143, 0.4);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        /* Info section */
        .info {
            max-width: 800px;
            text-align: center;
            margin-top: 40px;
            padding: 25px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .info h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }

        .info p {
            line-height: 1.6;
            margin-bottom: 15px;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .logo-3d {
                font-size: 0.8rem;
                padding: 15px 25px;
            }
            
            .tagline-3d {
                font-size: 0.9rem;
                letter-spacing: 2px;
            }
            
            .header h2 {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .logo-3d {
                font-size: 0.8rem;
                padding: 10px 20px;
                margin-top: 5px;
            }
            
            .tagline-3d {
                font-size: 0.8rem;
                letter-spacing: 1px;
            }
            
            .controls {
                flex-direction: column;
                align-items: center;
            }
            
            .control-btn {
                width: 200px;
            }
        }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-normal);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
    border-radius: var(--radius-full);
}

.nav-link:hover {
    color: white;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.hamburger:hover {
    background: var(--glass-bg);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

/* ==================== HERO SECTION ==================== */
/* .hero {
    
    background: url('/assets/img/bg3.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    opacity: 0.95;
    color: white;
    padding: 150px 20px 80px;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
} */

  /* ==================== ENHANCED HERO SECTION ==================== */
.hero {
    position: relative;
    color: white;
    padding: 160px 20px 100px;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
    background: var(--bg-dark);
}

/* Animated Mesh Gradient Background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(99, 102, 241, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 80%, rgba(244, 114, 182, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(99, 102, 241, 0.2) 0%, transparent 50%);
    animation: meshMove 15s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes meshMove {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.1) rotate(5deg); }
}

/* Floating Orbs */
.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float-orb 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 30px) scale(1.1); }
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 3;
    text-align: center;
}

/* Modern Title */
.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
}

.title-line {
    display: block;
    overflow: hidden;
    position: relative;
    margin-bottom: 0.3rem;
}

.title-line:nth-child(1) {
    animation: slideUp 0.8s ease-out 0.2s both;
}

.title-line:nth-child(2) {
    animation: slideUp 0.8s ease-out 0.4s both;
}

.title-line:nth-child(3) {
    animation: slideUp 0.8s ease-out 0.6s both;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1); }
}

/* Enhanced Subtitle */
.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 3rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1s ease-out 0.8s both;
    line-height: 1.8;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Modern CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 1s both;
}

.btn {
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: var(--transition-slow);
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 0 60px rgba(99, 102, 241, 0.5);
}

.btn-service {
    background: var(--glass-bg);
    color: white;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    width: 100%;
    margin-top: 20px;
}

.btn-service:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-2px);
}

.pulse {
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(99, 102, 241, 0); }
    100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}

/* Animated Transport Icons */
.transport-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.transport-icon {
    position: absolute;
    font-size: clamp(24px, 3vw, 50px);
    color: rgba(99, 102, 241, 0.15);
    animation: floatAcross 25s linear infinite;
    filter: blur(1px);
}

.transport-icon:nth-child(1) { top: 15%; animation-delay: 0s; }
.transport-icon:nth-child(2) { top: 25%; animation-delay: 4s; }
.transport-icon:nth-child(3) { top: 40%; animation-delay: 8s; }
.transport-icon:nth-child(4) { top: 55%; animation-delay: 12s; }
.transport-icon:nth-child(5) { top: 70%; animation-delay: 2s; }
.transport-icon:nth-child(6) { top: 80%; animation-delay: 6s; }
.transport-icon:nth-child(7) { top: 90%; animation-delay: 10s; }

@keyframes floatAcross {
    0% { left: -5%; opacity: 0; transform: translateY(0); }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { left: 105%; opacity: 0; transform: translateY(-20px); }
}
            background-repeat: no-repeat;
            background-attachment: fixed;
            z-index: -2;
            animation: gradientShift 15s ease-in-out infinite alternate;
        }

        @keyframes gradientShift {
            0% {
                background: 
                    linear-gradient(135deg, rgba(13, 148, 136, 0.95) 0%, rgba(15, 118, 110, 0.92) 100%),
                    url('/assets/img/hero-bg.jpg');
            }
            100% {
                background: 
                    linear-gradient(135deg, rgba(15, 118, 110, 0.92) 0%, rgba(13, 148, 136, 0.95) 100%),
                    url('/assets/img/hero-bg.jpg');
            }
        }

        /* Animated Geometric Pattern Overlay */
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 20%);
            z-index: -1;
            animation: patternMove 20s linear infinite;
        }

        @keyframes patternMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .hero-content {
            max-width: 1200px;
            width: 100%;
            position: relative;
            z-index: 3;
            text-align: center;
        }

        /* Animated Title with Typing Effect */
        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            margin-bottom: 1.5rem;
            font-weight: 800;
            line-height: 1.1;
            text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .title-line {
            display: block;
            overflow: hidden;
            position: relative;
            margin-bottom: 0.5rem;
        }

        .title-line:nth-child(1) {
            animation: slideInLeft 1s ease-out 0.3s both;
        }

        .title-line:nth-child(2) {
            animation: slideInLeft 1s ease-out 0.6s both;
        }

        .title-line:nth-child(3) {
            animation: slideInLeft 1s ease-out 0.9s both;
        }

        .highlight {
            color: var(--accent-color);
            position: relative;
            display: inline-block;
        }

        .highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 12px;
            background: rgba(245, 158, 11, 0.3);
            z-index: -1;
            border-radius: 4px;
            animation: highlightPulse 2s ease-in-out infinite;
        }

        @keyframes highlightPulse {
            0%, 100% { height: 12px; background: rgba(245, 158, 11, 0.3); }
            50% { height: 15px; background: rgba(245, 158, 11, 0.5); }
        }

        /* Enhanced Subtitle with Fade In */
        .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.5rem);
            margin-bottom: 2.5rem;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease-out 1.2s both;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        /* Enhanced CTA Buttons */
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 3rem;
            animation: fadeInUp 1s ease-out 1.5s both;
        }

        .btn {
            padding: 16px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
        }

        .btn::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: left 0.7s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--accent-color);
            color: white;
            box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
        }

        .btn-primary:hover {
            background: #f97316;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 30px rgba(245, 158, 11, 0.4);
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(245, 158, 11, 0); }
            100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
        }

        /* Animated Transport Icons */
        .transport-animation {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 2;
        }

        .transport-icon {
            position: absolute;
            font-size: clamp(30px, 4vw, 60px);
            color: rgba(255, 255, 255, 0.15);
            animation: moveAcross 20s linear infinite;
        }

        .transport-icon:nth-child(1) { top: 15%; left: -10%; animation-delay: 0s; }
        .transport-icon:nth-child(2) { top: 25%; left: -10%; animation-delay: 5s; }
        .transport-icon:nth-child(3) { top: 35%; left: -10%; animation-delay: 10s; }
        .transport-icon:nth-child(4) { top: 45%; left: -10%; animation-delay: 15s; }
        .transport-icon:nth-child(5) { top: 55%; left: -10%; animation-delay: 2s; }
        .transport-icon:nth-child(6) { top: 65%; left: -10%; animation-delay: 8s; }
        .transport-icon:nth-child(7) { top: 75%; left: -10%; animation-delay: 12s; }

        @keyframes moveAcross {
            0% {
                transform: translateX(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateX(120vw) rotate(10deg);
                opacity: 0;
            }
        }

        /* Quick Search Bar with Glassmorphism */
        .quick-search-container {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 30px;
            max-width: 900px;
            margin: 0 auto;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            animation: fadeInUp 1s ease-out 1.8s both;
        }

        .quick-search-title {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: white;
            text-align: center;
            font-weight: 600;
        }

        .quick-search-form {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            align-items: end;
        }

        .search-field {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 12px;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .search-field:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .search-field i {
            color: var(--primary-color);
            font-size: 1.2rem;
        }

        .search-field input, .search-field select {
            border: none;
            outline: none;
            width: 100%;
            font-size: 1rem;
            background: transparent;
            color: #1e293b;
        }

        .search-field input::placeholder {
            color: #64748b;
        }

        .btn-search {
            background: var(--accent-color);
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            grid-column: 1 / -1;
            justify-self: center;
            width: 200px;
        }

        .btn-search:hover {
            background: #f97316;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 30px rgba(245, 158, 11, 0.4);
        }

        /* Stats Counter */
        .stats-counter {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 50px;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 2.1s both;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-color);
            margin-bottom: 5px;
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero {
                padding: 120px 20px 80px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }

            .quick-search-form {
                grid-template-columns: 1fr;
            }

            .stats-counter {
                gap: 20px;
            }

            .stat-number {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2.2rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .quick-search-container {
                padding: 20px;
            }
        }


        /* ==================== ANIMATIONS ==================== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes slideInLeft {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeInUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
/* About Section - Modern Dark Theme */
.about {
    padding: 120px 20px;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin: 60px 0;
}

.about-text h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.about-text .lead {
    font-size: 1.3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    margin-bottom: 2px;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.key-points {
    margin: 36px 0;
}

.key-points .point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px 20px;
    background: var(--glass-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    transition: var(--transition-normal);
}

.key-points .point:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateX(10px);
    border-color: var(--primary-color);
}

.key-points .point i {
    color: var(--success-color);
    margin-top: 4px;
    font-size: 1.3rem;
    filter: drop-shadow(0 0 8px var(--success-color));
}

.key-points .point span {
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 1rem;
}

.key-points .point strong {
    color: var(--primary-light);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.stats-row .stat {
    text-align: center;
    padding: 28px 20px;
    background: var(--glass-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stats-row .stat::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
}

.stats-row .stat:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

.stats-row .stat:hover::before {
    opacity: 0.1;
}

.stats-row .stat h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.stats-row .stat p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
}

.about-image .image-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 1px solid var(--glass-border);
}

.about-image .image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(99, 102, 241, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-slow);
    filter: brightness(0.9);
}

.about-image img:hover {
    transform: scale(1.08);
    filter: brightness(1);
}

.image-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--gradient-primary);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: var(--shadow-glow);
    z-index: 2;
    font-size: 0.95rem;
}



.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    margin-top: 60px;
}

.cta-box h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.about .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-box .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta-box .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-box .btn-primary:hover {
    background: #f8fafc;
}

.cta-box .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .founder-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .founder-info {
        text-align: center;
    }
    
    .founder-info .quote {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid var(--accent-color);
        padding-top: 15px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 15px;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-card {
        padding: 20px;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .about-text h3 {
        font-size: 1.6rem;
    }
    
    .founder-card {
        gap: 20px;
    }
    
    .founder-image {
        width: 150px;
        height: 150px;
    }
}
/* ==================== SECTION STYLING ==================== */
.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    font-size: 1.15rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

section {
    padding: 50px 30px;
    position: relative;
}

section:nth-child(odd) {
    background: var(--bg-dark);
}

section:nth-child(even) {
    background: var(--bg-darker);
}

/* ==================== SERVICES SECTION ==================== */
.services {
    max-width: 100%;
    margin: 0 auto;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--glass-bg);
    padding: 36px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.coming-soon {
    opacity: 0.5;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: white;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-glow);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.5);
}

.service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-primary);
    text-align: center;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
    text-align: center;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li,
.service-features .feature {
    padding: 10px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features .feature i {
    color: var(--success-color);
    font-size: 1rem;
}

.service-card.featured {
    border: 2px solid var(--accent-color);
    background: rgba(244, 114, 182, 0.05);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gradient);
    color: white;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
    justify-content: center;
}

.tag {
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary-light);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(99, 102, 241, 0.3);
    transition: var(--transition-fast);
}

.tag:hover {
    background: var(--primary-color);
    color: white;
}

/* ==================== FEATURES SECTION ==================== */
.features {
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-item {
    text-align: center;
    padding: 40px 32px;
    background: var(--glass-bg);
    border-radius: var(--radius-xl);
    transition: var(--transition-normal);
    position: relative;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-color);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin: 0 auto 24px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-glow);
}

.feature-item:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 0 50px rgba(99, 102, 241, 0.5);
}

.feature-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

/* ==================== HOW IT WORKS / PROCESS ==================== */
.process {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
    padding: 100px 20px;
}

.process::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.how-it-works {
    background: var(--bg-dark);
    max-width: 1200px;
    margin: 0 auto;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0;
}

.process-steps {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: stretch;
    max-width: 1200px;
    width: 100%;
    margin: 60px auto 0;
    position: relative;
    flex-wrap: nowrap;
    gap: 0;
}

.step {
    flex: 1 1 0;
    max-width: 220px;
    min-width: 180px;
    text-align: center;
    padding: 32px 20px;
    background: var(--glass-bg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    position: relative;
    z-index: 1;
    transition: var(--transition-normal);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-color);
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: var(--shadow-glow);
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px dashed var(--primary-light);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
    opacity: 0.5;
}

.step-icon {
    font-size: 36px;
    color: var(--primary-light);
    margin-bottom: 0px;
}

.step h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
}

.step-connector {
    flex: 0 0 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-full);
    position: relative;
    align-self: center;
    margin: 0 -5px;
}

.step-connector::after {
    content: '→';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 18px;
    animation: bounce 1s infinite;
}

/* Responsive - stack vertically on smaller screens */
@media (max-width: 900px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .step {
        max-width: 100%;
        width: 100%;
        max-width: 350px;
    }
    
    .step-connector {
        width: 3px;
        height: 40px;
        flex: 0 0 40px;
        margin: 0;
    }
    
    .step-connector::after {
        content: '→';
        right: 50%;
        top: auto;
        bottom: -8px;
        transform: translateX(50%);
    }
}
@media (max-width:480px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .step {
        max-width: 100%;
        width: 100%;
        max-width: 350px;
    }
    
    .step-connector {
        width: 3px;
        height: 40px;
        flex: 0 0 40px;
        margin: 0;
    }
    
    .step-connector::after {
        content: '→';
        right: 50%;
        top: auto;
        bottom: -8px;
        transform: translateX(50%);
    }
}

/* ==================== STATS SECTION ==================== */
.stats {
    background: var(--gradient-primary);
    color: white;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 30px;
    text-align: center;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.stat h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.stat p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--glass-bg);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transition: var(--transition-normal);
}

.stat-item:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.stat-icon {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px var(--accent-color));
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin: 16px 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-text {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ==================== PROCESS ==================== */
        .process {
            padding: 100px 0;
            background: white;
        }

        .process-steps {
            display: flex;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            position: relative;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 600;
            margin: 0 auto 25px;
            position: relative;
            z-index: 2;
        }

        .step-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--dark);
        }


/* ==================== TESTIMONIALS ==================== */
.testimonials {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--glass-bg);
    padding: 36px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 120px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-color);
}

.testimonial-card .stars {
    margin: 0 0 16px;
    font-size: 1.2rem;
}

.testimonial-card .review {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.9;
}

.testimonial-card .reviewer {
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.testimonial-header img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 16px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.user-info h4 {
    margin: 0;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
}

.user-info span {
    color: var(--text-muted);
    font-size: 14px;
}

.rating {
    margin-left: auto;
    color: var(--warning-color);
    font-size: 0.85rem;
}

.rating i {
    filter: drop-shadow(0 0 4px var(--warning-color));
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.testimonial-footer span {
    display: flex;
    align-items: center;
    gap: 6px;
}
/* ==================== CONTACT SECTION ==================== */
/* Contact Section */
.contact {
    padding: 120px 20px;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact .section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.contact .section-header p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: var(--glass-bg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.contact-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.contact-item p {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-item span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form {
    background: var(--glass-bg);
    padding: 48px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 36px;
    text-align: center;
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid var(--glass-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition-normal);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    color: var(--text-muted);
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.05);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 160px;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    box-shadow: var(--shadow-glow);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.4);
}

.btn-submit i {
    font-size: 1.1rem;
}

/* Map Placeholder */
.map-placeholder {
    height: 320px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.map-overlay {
    text-align: center;
    z-index: 2;
}

.map-overlay i {
    font-size: 50px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.map-overlay h4 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.map-overlay p {
    opacity: 0.9;
}

/* Add pattern background to map */
.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.1) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.1) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0.3;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 15px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-item {
        padding: 20px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .map-placeholder {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-item {
        flex-direction: row;
        gap: 15px;
    }
    
   
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .btn-submit {
        padding: 14px;
        font-size: 1rem;
    }
}

/* ==================== FOOTER ==================== */
footer {
    background: var(--bg-darker);
    color: var(--text-secondary);
    padding: 100px 60px 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 28px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 16px;
    letter-spacing: 0.5px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    bottom: 0;
    left: 0;
    border-radius: var(--radius-full);
}

.footer-column:first-child h3::after {
    width: 70px;
}

.footer-column p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-column a {
    color: var(--text-muted);
    margin-bottom: 14px;
    display: block;
    text-decoration: none;
    transition: var(--transition-normal);
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
}

.footer-column a:hover {
    color: var(--primary-light);
    transform: translateX(8px);
}

.footer-column a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: var(--transition-normal);
    color: var(--primary-color);
}

.footer-column a:hover::before {
    opacity: 1;
    left: -16px;
}

/* Contact Info Styling */
.footer-column .contact-info {
    margin-top: 8px;
}

.footer .address-section {
    display: flex;
}

.footer .address-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    margin-top: 4px;
    justify-content: center;
    align-items: center;
    margin-right: 16px;
    flex-shrink: 0;
    transition: var(--transition-normal);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.footer .address-icon i {
    color: var(--primary-light);
    font-size: 18px;
}

.footer .address-details {
    flex: 1;
}

.footer .address-line {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.footer .address-label {
    color: var(--text-muted);
    font-weight: 500;
    min-width: 140px;
    font-size: 0.85rem;
}

.footer .address-value {
    color: var(--text-primary);
    font-weight: 400;
    flex: 1;
    font-size: 0.9rem;
    min-width: 150px;
}

.footer .contactt-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer .contactt-item {
    display: flex;
    transition: var(--transition-normal);
}

.footer .contactt-item:hover {
    transform: translateX(8px);
}

.footer .contactt-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    margin-top: 4px;
    justify-content: center;
    align-items: center;
    margin-right: 16px;
    flex-shrink: 0;
    transition: var(--transition-normal);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.footer .contactt-icon i {
    color: var(--primary-light);
    font-size: 18px;
}

.footer .contactt-text {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
}

.footer .contactt-label {
    color: var(--text-muted);
    font-weight: 500;
    min-width: 100px;
    font-size: 0.85rem;
}

.footer .contactt-value {
    color: var(--text-primary);
    font-weight: 400;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition-normal);
}

.footer .contactt-value:hover {
    color: var(--primary-light);
}

/* Copyright Section */
.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.copyright p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-normal);
}

.footer-legal a:hover {
    color: var(--primary-light);
}

/* ==================== RESPONSIVE DESIGN ==================== */
/* Tablet and below */
@media (max-width: 992px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-steps {
        flex-direction: row;
        gap: 20px;
    }
    
    .step-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(15, 15, 35, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding: 30px 20px;
        gap: 20px;
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition-normal);
        border-bottom: 1px solid var(--glass-border);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding: 140px 20px 80px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
    }
    
    .section-title,
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .services-container,
    .features-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .about {
        padding: 80px 20px;
    }
    
    .contact {
        padding: 80px 20px;
    }
    
    footer {
        padding: 60px 20px 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        /* text-align: center; */
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .logo-3d {
        font-size: 0.9rem;
        padding: 10px 16px;
        letter-spacing: 1px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title,
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
    }
    
    .service-card,
    .feature-item,
    .testimonial-card {
        padding: 28px 20px;
    }
    
    .contact-form {
        padding: 28px 20px;
    }
    
    .step {
        min-width: auto;
        width: 100%;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hamburger,
    .transport-animation,
    .btn {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    section {
        page-break-inside: avoid;
    }
}
/* ==================== ADDITIONAL MEDIA QUERIES ==================== */
    
    .download-buttons {
        flex-direction: column;
    }
    
    .process-steps {
        flex-direction: row;
        gap: 40px;
    }
    
    .step-connector {
        width: 3px;
        height: 6px;
        margin: 0;
    }
    
    .step-connector::after {
        content: '→';
        right: auto;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .chat-widget {
        width: calc(100% - 40px);
        right: 20px;
        bottom: 80px;
    }
    
    .fab-container {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
    }
    
    .booking-options {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .step-connector {
        width: 3px;
        height: 6px;
        margin: 0;
    }
    
    .step-connector::after {
        content: '';
        right: auto;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
    }
}
/* Tablet (768px) */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: var(--primary-color);
        width: 100%;
        text-align: center;
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        flex-direction: column;
        padding: 120px 20px 60px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .hero-animation {
        width: 100%;
        order: -1;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-container,
    .features-grid,
    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .steps-container {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .stats {
        grid-template-columns: 1fr 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
    .process-steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .step-connector {
        width: 3px;
        height: 6px;
        margin: 0;
    }
    
    .step-connector::after {
        content: '';
        right: auto;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .logo h1 {
        font-size: 18px;
    }

    .logo .tagline {
        font-size: 10px;
    }

    .hero {
        padding: 100px 15px 40px;
        margin-top: 50px;
    }

    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-animation {
        width: 200px;
        height: 200px;
    }

    .bus-icon, .train-icon {
        font-size: 50px;
    }

    section {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .service-card,
    .feature-item,
    .testimonial-card {
        padding: 15px;
    }

    .service-icon {
        font-size: 40px;
    }

    .feature-icon {
        font-size: 36px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .stat h3 {
        font-size: 1.8rem;
    }

    .stat p {
        font-size: 0.95rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 15px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    .process-steps {
        flex-direction: column;
        gap: 40px;
    }
    .step{
        min-width: auto;
        width: 60%;
        padding: 18px;
    }
    
    .step-connector {
        width: 3px;
        height: 6px;
        margin: 0;
    }
    
    .step-connector::after {
        content: '';
        right: auto;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer {
        padding: 30px 15px 15px;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile (320px) */
@media (max-width: 320px) {
    .hero h1 {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .hero-animation {
        width: 150px;
        height: 150px;
    }

    .bus-icon, .train-icon {
        font-size: 40px;
    }
}

/* Print Styles */
@media print {
    nav, .cta-buttons, .btn-service, .contact-form {
        display: none;
    }

    section {
        page-break-inside: avoid;
    }
}