/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0a1628;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
    opacity: 1 !important;
    visibility: visible !important;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    /* Auto-hide after 3.5 seconds as fallback if JS fails */
    animation: autoHidePreloader 0.5s ease 3.5s forwards;
}

/* Force content visibility after preloader */
.preloader.fade-out + *,
.preloader.fade-out ~ * {
    opacity: 1 !important;
    visibility: visible !important;
}

@keyframes autoHidePreloader {
    to {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        display: none;
    }
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: none;
}

.loader-animation {
    text-align: center;
}

.car-loader {
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-gif {
    width: 350px;
    height: 350px;
    object-fit: contain;
    border-radius: 10px;
}

.preloader-text-top {
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.preloader-text-bottom {
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: pulse 1.5s ease-in-out infinite;
    text-transform: capitalize;
}

.preloader-logo {
    margin-top: 1rem;
    position: relative; /* Ensure proper positioning */
    z-index: 10; /* Ensure logo stays above other elements */
}

.loader-logo-img {
    width: 250px;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
}

@keyframes carMove {
    0%, 100% { transform: translateX(-20px); }
    50% { transform: translateX(20px); }
}

/* Mobile-optimized animations */
@media (max-width: 767px) {
    @keyframes carMove {
        0%, 100% { transform: translateX(-10px); }
        50% { transform: translateX(10px); }
    }
    
    @keyframes float {
        0%, 100% { transform: translate(-50%, -50%) translateY(0); }
        50% { transform: translate(-50%, -50%) translateY(-10px); }
    }
    
    @keyframes pulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.8; }
    }
    
    /* Reduce animation intensity on mobile */
    .car-loader, .loader-animation {
        animation-duration: 0.8s; /* Faster on mobile */
    }
    
    .service-card, .pricing-card {
        animation-duration: 0.6s; /* Faster animations on mobile */
    }
    
    /* Disable problematic animations to prevent continuous movement */
    .car-loader,
    .loader-animation,
    .hero-car,
    .service-card,
    .pricing-card,
    .trust-scroll,
    .btn-primary,
    .logo-glow,
    .skylineMove,
    .roadMove,
    .trafficLight,
    .starsMove,
    .badgeGlow,
    .gradientMove,
    .underlineMove,
    .btn-glow,
    .carDrive,
    .wheelSpin,
    .headlightGlow,
    .reflectionMove,
    .float,
    .driverFloat,
    .trainMove,
    .tracksMove,
    .truckMove,
    .roadLinesMove,
    .noticePulse,
    .noticeGlow,
    .pulse,
    .carMoveMobile,
    .float,
    .driverFloat,
    .trainMove,
    .tracksMove,
    .roadLinesMove,
    .skylineMove,
    .carDrive,
    .wheelSpin,
    .headlightGlow,
    .reflectionMove,
    .motionLines,
    .bikeMove,
    .riderMove,
    .bikeMotion,
    .train-animation,
    .train-tracks,
    .truck-animation,
    .truck-animation,
    .car-driver-animation,
    .driver-icon,
    .car-driver-animation,
    .driver-entering,
    .motion-lines,
    .safety-badge {
        animation-play-state: paused !important;
    }
    
    /* Ensure preloader can still hide */
    .preloader {
        animation-play-state: running !important;
    }
    
    .autoHidePreloader {
        animation-play-state: running !important;
    }
    
    .car-loader,
    .loader-animation,
    .hero-car,
    .service-card,
    .pricing-card,
    .trust-scroll,
    .btn-primary,
    .logo-glow,
    .skylineMove,
    .roadMove,
    .trafficLight,
    .starsMove,
    .badgeGlow,
    .gradientMove,
    .underlineMove,
    .btn-glow,
    .carDrive,
    .wheelSpin,
    .headlightGlow,
    .reflectionMove,
    .float,
    .driverFloat,
    .trainMove,
    .tracksMove,
    .truckMove,
    .roadLinesMove,
    .noticePulse,
    .noticeGlow,
    .pulse,
    .carMoveMobile,
    .float,
    .driverFloat,
    .trainMove,
    .tracksMove,
    .roadLinesMove,
    .skylineMove,
    .carDrive,
    .wheelSpin,
    .headlightGlow,
    .reflectionMove,
    .motionLines,
    .bikeMove,
    .riderMove,
    .bikeMotion,
    .train-animation,
    .train-tracks,
    .truck-animation,
    .truck-animation,
    .car-driver-animation,
    .driver-icon,
    .car-driver-animation,
    .driver-entering,
    .motion-lines,
    .safety-badge {
        animation: none !important;
    }
    
    /* Re-enable essential animations with reduced duration */
    @keyframes pulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.8; }
    }
    
    .btn-primary:hover {
        animation: btnGlow 2s ease-in-out;
    }
    
    /* Disable heavy animations on low-end devices */
    @media (max-width: 480px) and (hover: none) and (pointer: coarse) {
        * {
            animation-duration: 0.1s !important;
            transition-duration: 0.1s !important;
        }
    }
}

/* ===== PREMIUM NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, 
        rgba(26, 26, 46, 0.95), 
        rgba(22, 33, 62, 0.95));
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    background: linear-gradient(135deg, 
        rgba(26, 26, 46, 0.98), 
        rgba(22, 33, 62, 0.98));
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Logo Section */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.nav-logo i {
    font-size: 2.2rem;
    color: #ffffff;
    animation: logoGlow 3s ease-in-out infinite;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
}

.nav-logo .brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: none;
}

@keyframes logoGlow {
    0%, 100% { 
        color: #ffffff; 
        text-shadow: none;
    }
    50% { 
        color: #333333; 
        text-shadow: none;
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text .brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 2px;
    text-shadow: none;
}

.logo-text .brand-slogan {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.7);
    font-style: italic;
    letter-spacing: 1px;
}

/* Main Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #000000, #333333);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 80%;
}

/* Main CTA Button */
.nav-link.nav-cta-main {
    background: linear-gradient(135deg, #000000, #333333);
    color: #ffffff;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.nav-link.nav-cta-main:hover {
    background: linear-gradient(135deg, #333333, #000000);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: #ffffff;
}

.nav-link.nav-cta-main::before {
    display: none;
}

/* Action Buttons */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.nav-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.nav-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #ffffff;
}

.nav-admin {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
}

.nav-admin:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle:hover span {
    background: #333333;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, 
        rgba(26, 26, 46, 0.98), 
        rgba(22, 33, 62, 0.98));
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.mobile-menu.active {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 1px solid transparent;
}

.mobile-nav-link:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    transform: translateX(5px);
}

.mobile-nav-link.mobile-cta {
    background: linear-gradient(135deg, #000000, #333333);
    color: #ffffff;
    font-weight: 600;
    justify-content: center;
}

.mobile-nav-link.mobile-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
}

.mobile-nav-link.mobile-admin {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

/* ===== RESPONSIVE DESIGN SYSTEM ===== */

/* Base responsive variables */
:root {
    --mobile-breakpoint: 480px;
    --tablet-breakpoint: 768px;
    --laptop-breakpoint: 1024px;
    --desktop-breakpoint: 1200px;
}

/* Mobile First - Base Styles */
* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden; /* Prevent horizontal scrolling */
    font-size: 16px; /* Base font size for mobile */
    line-height: 1.5;
}

/* Mobile Styles (default) */
@media (max-width: 767px) {
    /* Navigation */
    .nav-container {
        padding: 0.8rem 1rem;
        gap: 1rem;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, 
            rgba(26, 26, 46, 0.98), 
            rgba(22, 33, 62, 0.98));
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.3);
        z-index: 999;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: none;
        background: none;
        border: none;
        color: #ffffff;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
        position: absolute;
        right: 1rem;
        top: 1rem;
        z-index: 1002; /* Ensure it's above other elements */
    }
    
    .mobile-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, 
            rgba(26, 26, 46, 0.98), 
            rgba(22, 33, 62, 0.98));
        backdrop-filter: blur(20px);
        z-index: 998;
        overflow-y: auto;
    }
    
    .mobile-menu-content {
        padding: 3rem 2rem 2rem;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .mobile-nav-link {
        color: #ffffff;
        text-decoration: none;
        font-size: 1.1rem;
        padding: 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .mobile-nav-link:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }
    
    .mobile-cta {
        background: var(--primary-gold);
        color: #000000;
        font-weight: 600;
    }
    
    .mobile-admin {
        background: var(--primary-black);
        color: #ffffff;
    }
    
    /* Typography for mobile */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    p { font-size: 1rem; }
    
    /* Buttons for mobile */
    .btn, .submit-btn, .booking-submit-btn {
        font-size: 1rem;
        padding: 1rem 1.5rem;
        min-height: 48px; /* Touch-friendly */
    }
    
    /* Forms for mobile */
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    input, select, textarea {
        font-size: 1rem;
        padding: 1rem;
        min-height: 48px; /* Touch-friendly */
    }
    
    /* Images and Media for Mobile */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Responsive images */
    img {
        max-height: 300px; /* Prevent huge images on mobile */
        object-fit: cover;
        border-radius: 8px;
    }
    
    .logo-img {
        max-height: 40px;
        width: auto;
    }
    
    .loader-logo-img {
        max-height: 60px;
        width: auto;
    }
    
    input, select, textarea {
        font-size: 1rem;
        padding: 1rem;
        min-height: 48px; /* Touch-friendly */
        border-radius: 8px;
        -webkit-appearance: none; /* Remove default styling on iOS */
        -moz-appearance: none;
        appearance: none;
    }
    
    input:focus, select:focus, textarea:focus {
        outline: 2px solid var(--primary-gold);
        outline-offset: 2px;
    }
    
    /* Touch-friendly buttons */
    .btn, .submit-btn, .booking-submit-btn {
        font-size: 1rem;
        padding: 1rem 1.5rem;
        min-height: 48px; /* Touch-friendly */
        border-radius: 8px;
        touch-action: manipulation; /* Improves touch response */
        -webkit-tap-highlight-color: transparent; /* Removes tap highlight on iOS */
    }
    
    /* Form groups for better mobile spacing */
    .form-group {
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    /* Prevent zoom on input focus iOS */
    @supports (-webkit-touch-callout: none) {
        input {
            -webkit-user-select: auto;
        }
    }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1023px) {
    .nav-container {
        padding: 1rem 1.5rem;
        gap: 1.5rem;
    }
    
    .nav-menu {
        display: flex;
        gap: 1.5rem;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .mobile-menu {
        display: none;
    }
    
    /* Typography for tablet */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    p { font-size: 1.1rem; }
    
    /* Grid layouts for tablet */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* 3x3 Grid for Mobile */
    @media (max-width: 767px) {
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            padding: 1rem;
        }
        
        .service-card {
            padding: 1.5rem;
            margin: 0.5rem;
            text-align: center;
        }
        
        .service-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        .service-title {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }
        
        .service-description {
            font-size: 0.9rem;
            line-height: 1.4;
        }
    }
    
    /* Service cards responsive */
    .service-card {
        padding: 2rem;
        margin: 1rem;
    }
    
    /* Pricing cards responsive */
    .pricing-card {
        padding: 2rem;
        margin: 1rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .nav-container {
        padding: 1rem 1.5rem;
        gap: 2rem;
    }
    
    .nav-menu {
        gap: 2rem;
    }
    
    /* Typography for desktop */
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 2rem; }
    p { font-size: 1.2rem; }
    
    /* Grid layouts for desktop */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .pricing-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .container {
        max-width: 1600px;
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu,
    .nav-actions {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .logo-text .brand-name {
        font-size: 1.4rem;
    }
    
    .logo-text .brand-slogan {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.8rem;
    }
    
    .nav-logo i {
        font-size: 1.8rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .nav-logo .brand-name {
        font-size: 1.2rem;
    }
    
    .logo-text .brand-name {
        font-size: 1.2rem;
    }
    
    .mobile-menu-content {
        padding: 1.5rem;
    }
    
    .mobile-nav-link {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #2d4a6f 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.city-skyline {
    position: absolute;
    bottom: 150px;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255,215,0,0.1) 50px, rgba(255,215,0,0.1) 100px),
        repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(255,215,0,0.05) 20px, rgba(255,215,0,0.05) 40px);
    animation: skylineMove 20s linear infinite;
}

@keyframes skylineMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100px); }
}

.road {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, #3d5a7f, #1e3a5f);
    border-top: 3px solid #000000;
}

.road::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: repeating-linear-gradient(90deg, #000000 0px, #000000 40px, transparent 40px, transparent 80px);
    transform: translateY(-50%);
    animation: roadMove 2s linear infinite;
}

@keyframes roadMove {
    0% { transform: translateX(0) translateY(-50%); }
    100% { transform: translateX(-80px) translateY(-50%); }
}

.traffic-lights {
    position: absolute;
    top: 20%;
    right: 10%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.traffic-light {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #000000;
    animation: trafficLight 4s ease-in-out infinite;
}

.traffic-light.red { background: #ff6b6b; animation-delay: 0s; }
.traffic-light.yellow { background: #ffffff; animation-delay: 1.3s; }
.traffic-light.green { background: #4caf50; animation-delay: 2.6s; }

@keyframes trafficLight {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #000000, transparent),
        radial-gradient(2px 2px at 40px 70px, #000000, transparent),
        radial-gradient(1px 1px at 50px 50px, #000000, transparent),
        radial-gradient(1px 1px at 80px 10px, #000000, transparent),
        radial-gradient(2px 2px at 130px 80px, #000000, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: starsMove 50s linear infinite;
}

@keyframes starsMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(-200px); }
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero-text {
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); }
    50% { box-shadow: 0 0 30px rgba(0, 0, 0, 0.5); }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #000000, #ff6b6b, #000000);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 3s ease-in-out infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.title-line-1 {
    display: block;
    letter-spacing: 5px;
}

.title-line-2 {
    display: block;
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-slogan {
    position: relative;
    margin-bottom: 3rem;
}

.slogan-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
}

.slogan-underline {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #000000, transparent);
    animation: underlineMove 3s linear infinite;
}

@keyframes underlineMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #000000, #ff6b6b);
    color: #ffffff;
}

.btn-primary.btn-glow {
    animation: btnGlow 2s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); }
    50% { box-shadow: 0 0 40px rgba(0, 0, 0, 0.8); }
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #000000;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* ===== HERO CAR ===== */
.hero-car {
    position: absolute;
    bottom: 180px;
    left: -200px;
    z-index: 5;
    animation: carDrive 15s linear infinite;
}

@keyframes carDrive {
    0% { left: -200px; }
    100% { left: 100%; }
}

.car-container {
    position: relative;
    width: 150px;
    height: 60px;
}

.car-body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 4rem;
    color: #ffffff;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
}

.car-wheels {
    position: absolute;
    bottom: -15px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.wheel {
    font-size: 1.5rem;
    color: #ffffff;
    animation: wheelSpin 1s linear infinite;
}

@keyframes wheelSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.car-lights {
    position: absolute;
    top: 20px;
    right: -10px;
    display: flex;
    gap: 5px;
}

.headlight {
    width: 8px;
    height: 8px;
    background: #0a1628;
    border-radius: 50%;
    box-shadow: 0 0 20px #0a1628, 0 0 40px #0a1628;
    animation: headlightGlow 2s ease-in-out infinite;
}

@keyframes headlightGlow {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.car-reflection {
    position: absolute;
    bottom: -20px;
    left: 10px;
    width: 100px;
    height: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    filter: blur(10px);
    animation: reflectionMove 2s ease-in-out infinite;
}

@keyframes reflectionMove {
    0%, 100% { transform: scaleX(1); }
    50% { transform: scaleX(1.2); }
}

/* ===== TRUST STRIP ===== */
.trust-strip {
    background: linear-gradient(135deg, #1e3a5f, #2d4a6f);
    padding: 2rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.trust-scroll {
    display: flex;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.trust-items {
    display: flex;
    gap: 4rem;
    min-width: fit-content;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ffffff;
    font-weight: 500;
    white-space: nowrap;
}

.trust-item i {
    color: #ffffff;
    font-size: 1.5rem;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== WHY CHOOSE US ===== */
.why-us {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a1628, #1e3a5f);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: #ffffff;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #000000, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* ===== SERVICES ===== */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e3a5f, #2d4a6f);
}

/* ===== SPECIAL SERVICES SECTION ===== */
.special-services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a1628, #1e3a5f);
    position: relative;
    overflow: hidden;
}

.special-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.05), transparent 70%);
    pointer-events: none;
}

.special-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.special-service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible; /* Changed from hidden to visible */
}

.special-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.special-service-card:hover::before {
    opacity: 1;
}

.special-service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: #ffffff;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #000000, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.special-service-card:hover .service-icon-large {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.special-service-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.special-service-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.service-highlights {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.service-highlights span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.special-service-card:hover .service-highlights span {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.3);
}

.service-highlights i {
    color: #ffffff;
    font-size: 0.9rem;
}

.service-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #000000, #ff6b6b);
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

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

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

.service-link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    color: #ffffff;
}

.service-link-btn i {
    transition: transform 0.3s ease;
}

.service-link-btn:hover i {
    transform: translateX(3px);
}

/* ===== LADIES DRIVER SERVICE ===== */
.ladies-driver-service {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a1628, #1e3a5f);
    position: relative;
    overflow: hidden;
}

.ladies-driver-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.05), transparent 50%);
    pointer-events: none;
}

.ladies-driver-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ladies-driver-content {
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-weight: 500;
}

.section-badge.featured {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(255, 107, 107, 0.2));
    border-color: #ffffff;
}

.ladies-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.ladies-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.ladies-feature:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.ladies-feature i {
    color: #ffffff;
    font-size: 1.5rem;
    min-width: 30px;
}

.ladies-feature span {
    color: #ffffff;
    font-weight: 500;
}

.ladies-cta {
    margin-top: 2rem;
}

.ladies-driver-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.female-driver-animation {
    position: relative;
    width: 300px;
    height: 300px;
}

.driver-silhouette {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: #ffffff;
    animation: float 3s ease-in-out infinite;
    z-index: 3;
}

.car-outline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -20%);
    font-size: 6rem;
    color: rgba(0, 0, 0, 0.3);
    animation: carFloat 4s ease-in-out infinite;
}

.safety-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4caf50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-20px); }
}

@keyframes carFloat {
    0%, 100% { transform: translate(-50%, -20%) translateX(0); }
    50% { transform: translate(-50%, -20%) translateX(20px); }
}

/* ===== YOUR VEHICLE OUR DRIVER ===== */
.your-vehicle-driver {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e3a5f, #2d4a6f);
    position: relative;
}

.your-vehicle-driver::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(255, 107, 107, 0.05), transparent 50%);
    pointer-events: none;
}

.vehicle-driver-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vehicle-driver-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-animation {
    position: relative;
    width: 350px;
    height: 350px;
}

.user-car {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: #ffffff;
    z-index: 2;
    animation: carMove 3s ease-in-out infinite;
}

.driver-entering {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: #ffffff;
    z-index: 3;
    animation: driverEnter 3s ease-in-out infinite;
}

.motion-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.motion-lines span {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #000000, transparent);
    animation: motionLine 2s linear infinite;
}

.motion-lines span:nth-child(1) {
    top: 40%;
    left: 0;
    width: 80%;
    animation-delay: 0s;
}

.motion-lines span:nth-child(2) {
    top: 50%;
    left: 0;
    width: 90%;
    animation-delay: 0.5s;
}

.motion-lines span:nth-child(3) {
    top: 60%;
    left: 0;
    width: 70%;
    animation-delay: 1s;
}

@keyframes carMove {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes driverEnter {
    0% { left: 20%; opacity: 0; }
    50% { opacity: 1; }
    100% { left: 45%; opacity: 1; }
}

@keyframes motionLine {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

.vehicle-driver-content {
    position: relative;
    z-index: 2;
}

.vehicle-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    color: #ffffff;
    font-size: 1.5rem;
    min-width: 30px;
}

.benefit-item span {
    color: #ffffff;
    font-weight: 500;
}

.vehicle-cta {
    margin-top: 2rem;
}

/* ===== BIKE DRIVER SERVICE ===== */
.bike-driver-service {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a1628, #1e3a5f);
}

.bike-service-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bike-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bike-animation {
    position: relative;
    width: 300px;
    height: 300px;
}

.bike-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: #ffffff;
    z-index: 2;
    animation: bikeMove 2s ease-in-out infinite;
}

.rider-icon {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #ffffff;
    z-index: 3;
    animation: riderMove 2s ease-in-out infinite;
}

.bike-motion {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.bike-motion span {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, #000000, transparent);
    animation: bikeMotion 1.5s linear infinite;
}

.bike-motion span:nth-child(1) {
    top: 45%;
    left: 0;
    width: 80%;
    animation-delay: 0s;
}

.bike-motion span:nth-child(2) {
    top: 55%;
    left: 0;
    width: 90%;
    animation-delay: 0.3s;
}

.bike-motion span:nth-child(3) {
    top: 65%;
    left: 0;
    width: 70%;
    animation-delay: 0.6s;
}

@keyframes bikeMove {
    0%, 100% { transform: translate(-50%, -50%) rotate(-5deg); }
    50% { transform: translate(-50%, -50%) rotate(5deg); }
}

@keyframes riderMove {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-10px); }
}

@keyframes bikeMotion {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

.bike-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bike-pricing-card {
    max-width: 400px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.bike-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), transparent);
    pointer-events: none;
}

.bike-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #ffffff;
}

.price-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.price-item.minimum {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.3);
}

.price-label {
    color: #cccccc;
    font-weight: 500;
}

.price-amount {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
}

.review-author {
    color: #ffffff;
    font-size: 0.9rem;
    font-style: normal;
}

.reviews-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4285F4, #1967D2);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.reviews-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
    background: linear-gradient(135deg, #1967D2, #4285F4);
}

.reviews-link-btn i {
    font-size: 1rem;
}

.bike-features {
    list-style: none;
    margin: 2rem 0;
}

.bike-features li {
    padding: 0.8rem 0;
    color: #cccccc;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.bike-features i {
    color: #4caf50;
    font-size: 1rem;
}

.bike-cta {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

/* ===== BIKE TRANSPORT SERVICE ===== */
.bike-transport-service {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e3a5f, #2d4a6f);
}

.transport-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.transport-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.transport-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.transport-card:hover::before {
    opacity: 1;
}

.transport-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #ffffff;
}

.transport-visual {
    position: relative;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.train-animation {
    position: relative;
    width: 100%;
    height: 100%;
}

.train-animation i {
    font-size: 4rem;
    color: #ffffff;
    animation: trainMove 3s linear infinite;
}

.train-tracks {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 4px;
    background: repeating-linear-gradient(90deg, #000000 0px, #000000 20px, transparent 20px, transparent 40px);
    animation: tracksMove 2s linear infinite;
}

.truck-animation {
    position: relative;
    width: 100%;
    height: 100%;
}

.truck-animation i {
    font-size: 4rem;
    color: #ffffff;
    animation: truckMove 3s linear infinite;
}

.car-driver-animation {
    position: relative;
    width: 100%;
    height: 100%;
}

.car-driver-animation i {
    font-size: 4rem;
    color: #ffffff;
    animation: carDriverMove 3s linear infinite;
}

.driver-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: driverFloat 2s ease-in-out infinite;
}

@keyframes carDriverMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

@keyframes driverFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-5px); }
}

.road-lines {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(90deg, #000000 0px, #000000 30px, transparent 30px, transparent 60px);
    animation: roadLinesMove 1.5s linear infinite;
}

@keyframes trainMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes tracksMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-40px); }
}

@keyframes truckMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes roadLinesMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-60px); }
}

.transport-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.transport-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.transport-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.transport-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.transport-features i {
    color: #ffffff;
    font-size: 0.9rem;
}

.transport-btn {
    background: linear-gradient(135deg, #000000, #ff6b6b);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.transport-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.service-card:hover::after {
    animation: shimmer 0.5s ease;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

.service-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #ffffff;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #000000, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-card p {
    color: #cccccc;
    line-height: 1.6;
}

.price-highlight {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
}

/* ===== PRICING ===== */
.pricing {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a1628, #1e3a5f);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.premium {
    transform: scale(1.02);
}

.pricing-card.featured {
    border-color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #000000, #ff6b6b);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: #ffffff;
    vertical-align: super;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
}

.period {
    color: #cccccc;
    font-size: 1rem;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: #cccccc;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pricing-features i {
    color: #4caf50;
    font-size: 1rem;
}

.pricing-btn {
    background: linear-gradient(135deg, #000000, #ff6b6b);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.pricing-note {
    text-align: center;
    color: #cccccc;
    font-style: italic;
}

.pricing-note i {
    color: #ffffff;
    margin-right: 0.5rem;
}

/* ===== GOOGLE PRESENCE ===== */
.google-presence {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e3a5f, #2d4a6f);
}

.google-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.google-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.google-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: #ffffff;
}

.google-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.google-card:hover .google-icon {
    transform: scale(1.1) rotate(5deg);
}

.google-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.google-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.stars {
    display: flex;
    gap: 0.3rem;
}

.stars i {
    color: #ffffff;
    font-size: 1rem;
}

.rating-text {
    color: #cccccc;
    font-weight: 500;
}

.map-preview {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1rem;
}

.map-preview img {
    width: 100%;
    height: auto;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    min-width: 200px;
}

.map-overlay i {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    display: block;
}

.map-overlay span {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-top: 0.5rem;
}

.map-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4285F4, #1967D2);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.map-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
    background: linear-gradient(135deg, #1967D2, #4285F4);
}

.map-link-btn i {
    font-size: 1rem;
}

.review-snippet {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1rem;
    text-align: left;
}

.review-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.review-text {
    color: #cccccc;
    font-style: italic;
    margin-bottom: 1rem;
}

.review-author {
    color: #ffffff;
    font-weight: 500;
}

/* ===== BOOKING FORM ===== */
.booking-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a1628, #1e3a5f);
}

.booking-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.booking-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), transparent);
    pointer-events: none;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.form-header p {
    color: #cccccc;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    height: 3.5rem;
    padding: 0 1rem;
    background: rgba(26, 26, 46, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    height: auto;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    background: rgba(26, 26, 46, 0.95);
}



.form-group select {
    appearance: none;
    cursor: pointer;
}



/* Gender Radio Group Styling */
.radio-group {
    margin-top: 0.5rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    background: rgba(26, 26, 46, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.radio-option:hover {
    background: rgba(26, 26, 46, 0.5);
    border-color: rgba(0, 0, 0, 0.4);
    transform: translateY(-1px);
}

.radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #ffffff;
    cursor: pointer;
    position: relative;
    margin: 0;
    appearance: none;
    border: 2px solid #000000;
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s ease;
}

.radio-option input[type="radio"]:checked {
    background: #ffffff;
    border-color: #ffffff;
}

.radio-option input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #1e3a5f;
    border-radius: 50%;
}

.radio-option label {
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    margin: 0;
    user-select: none;
    transition: color 0.3s ease;
}

.radio-option:hover label {
    color: #ffffff;
}

.radio-option input[type="radio"]:checked + label {
    color: #ffffff;
    font-weight: 600;
}

.radio-option input[type="radio"]:focus {
    outline: 2px solid rgba(0, 0, 0, 0.5);
    outline-offset: 2px;
    border-radius: 50%;
}

.submit-btn {
    background: linear-gradient(135deg, #000000, #333333);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #333333, #000000);
}

/* Responsive Form Styling */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        height: 3.2rem;
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .radio-group {
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .radio-option {
        gap: 0.6rem;
        padding: 0.4rem 0.8rem;
    }
    
    .radio-option input[type="radio"] {
        width: 16px;
        height: 16px;
    }
    
    .radio-option label {
        font-size: 0.95rem;
    }
    
    .submit-btn {
        width: 100%;
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        height: 3rem;
        font-size: 0.9rem;
        padding: 0 0.8rem;
    }
    
    /* Mobile responsive time input with AM/PM */
    .time-input-wrapper {
        flex-direction: column;
        gap: 8px;
    }
    
    .time-input-wrapper input[type="time"] {
        width: 100%;
    }
    
    .time-period-select {
        width: 100%;
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .radio-group {
        gap: 1.5rem;
    }
    
    .radio-option {
        padding: 0.3rem 0.6rem;
    }
    
    .radio-option input[type="radio"] {
        width: 14px;
        height: 14px;
    }
    
    .submit-btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
}


/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #0a1628, #1e3a5f);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    font-size: 2rem;
    color: #ffffff;
}

.footer-logo .logo-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
}

.footer-logo .logo-text p {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

.footer-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #cccccc;
}

.contact-item i {
    color: #ffffff;
    margin-top: 0.3rem;
}

.contact-item a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ffffff;
}

/* Instagram specific styling */
.contact-item .fab.fa-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #E4405F; /* Fallback color */
}

.contact-item .fab.fa-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Facebook specific styling */
.contact-item .fab.fa-facebook {
    color: #1877F2;
    transition: all 0.3s ease;
}

.contact-item .fab.fa-facebook:hover {
    color: #0C5EDB;
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(24, 119, 242, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: #888;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-text {
    position: absolute;
    right: 70px;
    background: #25d366;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.whatsapp-btn:hover .whatsapp-text {
    opacity: 1;
    right: 80px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 4rem);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 250px;
        justify-content: center;
    }

    .features-grid,
    .services-grid,
    .pricing-grid,
    .google-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-item {
        justify-content: center;
    }

    .trust-items {
        gap: 2rem;
    }

    .hero-car {
        bottom: 120px;
    }

    /* Responsive for new sections */
    .ladies-driver-wrapper,
    .vehicle-driver-wrapper,
    .bike-service-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .special-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .special-service-card {
        padding: 2rem;
    }

    .service-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .ladies-features,
    .vehicle-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .transport-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .bike-pricing-card {
        max-width: 100%;
    }

    .transport-features {
        justify-content: center;
    }

    .female-driver-animation,
    .vehicle-animation,
    .bike-animation {
        width: 250px;
        height: 250px;
    }

    .driver-silhouette,
    .car-outline,
    .user-car,
    .bike-icon {
        font-size: 3rem;
    }

    .driver-entering,
    .rider-icon {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .feature-card,
    .service-card,
    .pricing-card,
    .google-card,
    .booking-form-wrapper,
    .bike-pricing-card,
    .transport-card,
    .special-service-card {
        padding: 1.5rem;
    }

    .service-icon-large {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .special-service-card h3 {
        font-size: 1.5rem;
    }

    .service-link-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Mobile responsive for new sections */
    .ladies-driver-visual,
    .vehicle-driver-visual,
    .bike-visual {
        height: 300px;
    }

    .female-driver-animation,
    .vehicle-animation,
    .bike-animation {
        width: 200px;
        height: 200px;
    }

    .driver-silhouette,
    .car-outline,
    .user-car,
    .bike-icon {
        font-size: 2.5rem;
    }

    .driver-entering,
    .rider-icon {
        font-size: 1.5rem;
    }

    .safety-badge {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .transport-features span {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .hero-car {
        width: 100px;
        height: 40px;
    }

    .car-body {
        font-size: 2.5rem;
    }

    .wheel {
        font-size: 1rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1e3a5f;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #000000, #ff6b6b);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff6b6b, #000000);
}

/* ===== SELECTION STYLING ===== */
::selection {
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

::-moz-selection {
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

/* ===== PREMIUM BOOKING POPUP ===== */
.booking-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: all 0.3s ease;
}

.booking-popup-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.booking-popup-container {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.8) translateY(50px);
    transition: all 0.3s ease;
}

.booking-popup-overlay.active .booking-popup-container {
    transform: scale(1) translateY(0);
}

.booking-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.booking-popup-header h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.close-popup-btn {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.3);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-popup-btn:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.booking-form {
    padding: 30px;
}

/* Advance Booking Notice */
.advance-booking-notice {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(255, 193, 7, 0.15));
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    animation: noticePulse 3s ease-in-out infinite;
}

@keyframes noticePulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
        transform: translateY(0);
    }
    50% { 
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
        transform: translateY(-2px);
    }
}

.notice-icon {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notice-icon i {
    color: #ffffff;
    font-size: 1.3rem;
}

.notice-content h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.notice-content p {
    color: #ffffff;
    margin: 4px 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Helper Text */
.helper-text {
    display: block;
    color: rgba(0, 0, 0, 0.8);
    font-size: 0.85rem;
    margin-top: 5px;
    font-style: italic;
    opacity: 0.9;
}

/* Time Input Wrapper with AM/PM */
.time-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.time-input-wrapper input[type="time"] {
    flex: 1;
}

.time-period-select {
    width: 80px;
    padding: 12px 10px;
    background: rgba(26, 26, 46, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-period-select:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

/* Booking Reminder */
.booking-reminder {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-reminder i {
    color: #ffffff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.booking-reminder span {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.4;
}

.form-section {
    margin-bottom: 30px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.section-title i {
    font-size: 1.2rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.form-group label i {
    color: #ffffff;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select option {
    background: #1e3a5f;
    color: #ffffff;
}

.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    background: transparent;
    position: relative;
    transition: all 0.3s ease;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: #ffffff;
    background: rgba(0, 0, 0, 0.2);
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
}

.radio-label {
    color: #ffffff;
    font-weight: 500;
}

.driver-note {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 5px;
    font-style: italic;
}

.ladies-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 10px 15px;
    margin-top: 15px;
    color: #ffffff;
    font-weight: 500;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.booking-submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #000000, #333333);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.nav-cta-btn {
    background: linear-gradient(135deg, #000000, #333333);
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.nav-admin-btn {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(255, 193, 7, 0.1));
    border: 1px solid rgba(0, 0, 0, 0.3);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.nav-admin-btn:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(255, 193, 7, 0.2));
    border-color: rgba(0, 0, 0, 0.5);
    color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.booking-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.alternative-actions {
    display: flex;
    gap: 15px;
}

.alternative-actions .btn-secondary {
    flex: 1;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.3);
    color: #ffffff;
    border-radius: 10px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.alternative-actions .btn-secondary:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Booking Confirmation Success Popup */
.booking-success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.booking-success-popup.active {
    opacity: 1;
    visibility: visible;
}

.booking-success-popup .success-content {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(22, 33, 62, 0.95));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    transform: scale(0.8);
    transition: all 0.3s ease;
    position: relative;
}

.booking-success-popup.active .success-content {
    transform: scale(1);
}

.booking-success-popup .success-icon {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 20px;
    animation: successPulse 1s ease;
}

.booking-success-popup .success-content h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.booking-success-popup .success-content p {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.5;
}

.booking-success-popup .arrival-time-notice {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(255, 193, 7, 0.15));
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: noticeGlow 2s ease-in-out infinite;
}

@keyframes noticeGlow {
    0%, 100% { 
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
        transform: translateY(0);
    }
    50% { 
        box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
        transform: translateY(-2px);
    }
}

.booking-success-popup .redirect-notice {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}


.booking-success-popup .redirect-timer {
    margin-top: 20px;
}

.booking-success-popup .timer-bar {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

.booking-success-popup .timer-progress {
    height: 100%;
    background: linear-gradient(90deg, #000000, #333333);
    border-radius: 10px;
    width: 100%;
    transition: width 1s linear;
}

.booking-success-popup .timer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.booking-success-popup .timer-text span {
    color: #ffffff;
    font-weight: 600;
}

@keyframes successPulse {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Mobile Responsive for Success Popup */
@media (max-width: 768px) {
    .booking-success-popup .success-content {
        margin: 20px;
        padding: 30px;
        max-width: calc(100% - 40px);
    }
    
    .booking-success-popup .success-content h3 {
        font-size: 1.5rem;
    }
    
    }

@media (max-width: 480px) {
    .booking-success-popup .success-content {
        padding: 20px;
        margin: 10px;
    }
    
    .booking-success-popup .success-icon {
        font-size: 3rem;
    }
    
    .booking-success-popup .arrival-time-notice {
        padding: 12px;
        font-size: 0.9rem;
    }
}

/* Booking Confirmation Banner */
.booking-confirmation-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.booking-confirmation-banner.show {
    opacity: 1;
    visibility: visible;
}

.booking-confirmation-banner .confirmation-content {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(22, 33, 62, 0.95));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    transform: scale(0.8);
    transition: all 0.3s ease;
    position: relative;
}

.booking-confirmation-banner.show .confirmation-content {
    transform: scale(1);
}

.booking-confirmation-banner .confirmation-icon {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 20px;
    animation: successPulse 1s ease;
}

.booking-confirmation-banner .confirmation-text h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.booking-confirmation-banner .confirmation-text p {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.5;
}

.booking-confirmation-banner .confirmation-text p:last-of-type {
    color: #ffffff;
    font-weight: 500;
}

.booking-confirmation-banner .close-confirmation-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.3);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.booking-confirmation-banner .close-confirmation-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

@keyframes successPulse {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Mobile Responsive for Confirmation Banner */
@media (max-width: 768px) {
    .booking-confirmation-banner .confirmation-content {
        margin: 20px;
        padding: 30px;
        max-width: calc(100% - 40px);
    }
    
    .booking-confirmation-banner .confirmation-text h3 {
        font-size: 1.5rem;
    }
    
    .booking-confirmation-banner .confirmation-icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .booking-confirmation-banner .confirmation-content {
        padding: 20px;
        margin: 10px;
    }
    
    .booking-confirmation-banner .confirmation-text h3 {
        font-size: 1.3rem;
    }
    
    .booking-confirmation-banner .confirmation-text p {
        font-size: 0.9rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .booking-popup-container {
        width: 95%;
        margin: 20px;
    }
    
    .booking-popup-header {
        padding: 20px;
    }
    
    .booking-popup-header h3 {
        font-size: 1.5rem;
    }
    
    .booking-form {
        padding: 20px;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .alternative-actions {
        flex-direction: column;
    }
    
    .success-content {
        margin: 20px;
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .booking-popup-container {
        width: 100%;
        height: 100vh;
        border-radius: 0;
        max-height: 100vh;
    }
    
    .booking-popup-header {
        padding: 15px;
    }
    
    .booking-form {
        padding: 15px;
    }
    
    .close-popup-btn {
        width: 35px;
        height: 35px;
    }
}

/* ===== COMPREHENSIVE MOBILE-FIRST RESPONSIVE DESIGN ===== */

/* Base Mobile Styles (320px and up) */
@media (max-width: 480px) {
    /* Container and Spacing */
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    /* Typography */
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Hero Section */
    .hero {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-content {
        padding: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-text {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 10vw, 3.5rem);
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-slogan {
        margin-bottom: 2rem;
    }
    
    .slogan-text {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .hero-car {
        width: 120px;
        height: 50px;
        bottom: 100px;
        left: -100px;
    }
    
    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .service-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .service-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Features Section */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
    
    /* Trust Strip */
    .trust-items {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-item {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    /* Booking Form */
    .booking-popup-container {
        width: 95%;
        height: 100vh;
        margin: 0;
        border-radius: 0;
        max-height: 100vh;
    }
    
    .booking-form {
        padding: 1.5rem;
        height: 100%;
        overflow-y: auto;
    }
    
    .booking-header {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .booking-header h2 {
        font-size: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 1rem;
        border-radius: 8px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .driver-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .driver-option {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .booking-submit-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        margin-top: 1rem;
    }
    
    /* Admin Dashboard */
    .admin-dashboard {
        padding: 1rem;
    }
    
    .admin-header {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .admin-header h1 {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-icon {
        font-size: 1.5rem;
    }
    
    .stat-info h3 {
        font-size: 1.5rem;
    }
    
    .stat-info span {
        font-size: 0.8rem;
    }
    
    /* Admin Tables */
    .bookings-table-container,
    .applications-table-container {
        overflow-x: auto;
        margin: 0 -1rem;
        padding: 0 1rem;
    }
    
    .bookings-table,
    .applications-table {
        font-size: 0.8rem;
        min-width: 600px;
    }
    
    .bookings-table th,
    .applications-table th {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .bookings-table td,
    .applications-table td {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    /* Job Application Page */
    .job-application-container {
        padding: 1rem;
    }
    
    .application-header {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .application-header h1 {
        font-size: 1.8rem;
    }
    
    .application-form {
        padding: 1.5rem;
    }
    
    .form-section {
        margin-bottom: 2rem;
    }
    
    .form-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .payment-method {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    /* Success Popup */
    .booking-success-popup .success-content {
        margin: 1rem;
        padding: 2rem;
        max-width: 95%;
    }
    
    .success-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .success-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .success-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .success-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    /* Confirmation Banner */
    .booking-confirmation-banner .confirmation-content {
        margin: 1rem;
        padding: 2rem;
        max-width: 95%;
    }
    
    .confirmation-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .confirmation-text h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .confirmation-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* Tablet Styles (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 1.5rem;
    }
    
    /* Hero Section */
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .btn-primary, .btn-secondary {
        width: auto;
        max-width: 250px;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Booking Form */
    .booking-popup-container {
        width: 90%;
        height: 90vh;
        margin: 5vh auto;
        border-radius: 15px;
        max-height: 90vh;
    }
    
    .booking-form {
        padding: 2rem;
    }
    
    /* Admin Dashboard */
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Job Application */
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small Desktop Styles (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Hero Section */
    .hero-title {
        font-size: clamp(3rem, 6vw, 5rem);
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Admin Dashboard */
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Booking Form */
    .booking-popup-container {
        width: 85%;
        max-width: 600px;
    }
}

/* Large Desktop Styles (1025px and up) */
@media (min-width: 1025px) {
    /* Services */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Admin Dashboard */
    .stats-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Performance Optimizations for Mobile */
@media (max-width: 768px) {
    /* Reduce animations on mobile for better performance */
    .hero-car {
        animation: carMoveMobile 4s ease-in-out infinite;
    }
    
    @keyframes carMoveMobile {
        0%, 100% { transform: translateX(-10px); }
        50% { transform: translateX(10px); }
    }
    
    /* Disable parallax on mobile */
    .hero-background {
        transform: none !important;
    }
    
    /* Optimize scroll animations */
    [data-aos] {
        transition-duration: 0.5s !important;
    }
    
    /* Reduce complex animations */
    .logo-glow {
        animation-duration: 4s !important;
    }
    
    /* Optimize hover effects */
    .nav-link:hover {
        transform: none;
    }
    
    .btn-primary:hover,
    .btn-secondary:hover {
        transform: translateY(-1px);
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .nav-link:hover,
    .btn-primary:hover,
    .btn-secondary:hover,
    .service-card:hover,
    .feature-card:hover {
        transform: none;
    }
    
    .nav-link:active,
    .btn-primary:active,
    .btn-secondary:active {
        transform: scale(0.98);
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== NAVIGATION FIXES ===== */
/* Ensure navigation elements are always clickable */
.nav-link,
.nav-btn,
.mobile-nav-link {
    pointer-events: auto !important;
    z-index: 1001 !important;
    position: relative !important;
}

.navbar {
    pointer-events: auto !important;
    z-index: 1000 !important;
}

/* Fix any overlay issues */
.mobile-menu {
    z-index: 999 !important;
}

/* Ensure no elements block navigation */
.nav-menu,
.nav-actions {
    pointer-events: auto !important;
}

/* Remove any conflicting styles */
.nav-link:hover,
.nav-btn:hover {
    pointer-events: auto !important;
}
