/* 
   EVENT CABS SERVICE - GLOBAL STYLES 
   Design System & Variables
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Colors - Taxi Yellow Theme */
    --color-primary: #FFD700;
    /* Colors - Taxi Yellow Theme */
    --color-primary: #FFD700;
    /* Taxi Yellow (Gold) */
    --color-primary-light: #FFEA00;
    --color-accent: #111827;
    /* Deep Black/Blue for contrast on yellow */
    --color-heading: #111827;
    /* Headings */
    --color-accent-hover: #000000;
    --color-surface: #FFFFFF;
    /* Pure White */
    --color-background: #FFFFFF;
    /* Pure White */
    --color-text-main: #111827;
    --color-text-muted: #4B5563;
    --color-border: #E5E7EB;
    --color-success: #25D366;
    /* WhatsApp Green */

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing System */
    --space-xs: 0.25rem;
    /* 4px */
    --space-sm: 0.5rem;
    /* 8px */
    --space-md: 1rem;
    /* 16px */
    --space-lg: 1.5rem;
    /* 24px */
    --space-xl: 2rem;
    /* 32px */
    --space-2xl: 3rem;
    /* 48px */
    --space-3xl: 5rem;
    /* 80px */

    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-float: 0 10px 30px -5px rgba(0, 0, 0, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --backdrop-blur: 16px;

    /* Animation */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}



/* Global Reset & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-background);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-heading);
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button {
    font-family: var(--font-heading);
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

/* Utility Classes */
.text-accent {
    color: var(--color-primary) !important;
}

.bg-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--backdrop-blur));
    -webkit-backdrop-filter: blur(var(--backdrop-blur));
    border: 1px solid var(--glass-border);
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 6px 16px;
    border-radius: 100px;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

/* Split Architecture Visibility Control */
#mobile-app {
    display: block;
}

#desktop-experience {
    display: none;
}

@media (min-width: 1024px) {
    #mobile-app {
        display: none;
    }

    #desktop-experience {
        display: block;
    }
}

/* --- PREMIUM MAGIC & ANIMATIONS --- */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

@keyframes floatMagic {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.btn-primary:not(.btn-outline) {
    animation: pulseGlow 2.5s infinite;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    background-size: 200% 100%;
    animation: shimmer 2.5s infinite;
    pointer-events: none;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
}

.premium-badge {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(30, 30, 30, 0.95) 100%);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
}

.premium-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
    pointer-events: none;
}

.premium-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

/* Global Card Hover Enhancements & Smooth Interactions */
.fleet-card,
.service-card-mobile,
.service-card,
.desktop-place-card,
.place-card-scroll,
.quick-card {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fleet-card:hover,
.service-card-mobile:hover,
.service-card:hover,
.desktop-place-card:hover,
.place-card-scroll:hover,
.quick-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Smooth Image Scale on Hover */
.fleet-card img,
.desktop-place-card img,
.place-card-scroll img,
.place-card img {
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fleet-card:hover img,
.desktop-place-card:hover img,
.place-card-scroll:hover img,
.place-card:hover img {
    transform: scale(1.1);
}

/* Glassmorphism Details Enhancement */
.bg-glass {
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Icon button hover spin/scale */
.icon-btn i {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.icon-btn:hover i {
    transform: scale(1.15) rotate(5deg);
}

/* Make text accent gradient for premium feel */
.text-accent {
    background: linear-gradient(to right, #FFD700, #FBBF24);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none !important;
}

/* Premium Scroll Indicator */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(to right, #FFD700, #FBBF24);
    z-index: 99999;
    transition: width 0.1s;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    border-radius: 0 2px 2px 0;
}

/* Premium Page Preloader */
#preloader {
    position: fixed;
    inset: 0;
    background-color: var(--color-background);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.6s;
}

#preloader.preloader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-element {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255, 215, 0, 0.2);
    border-top: 5px solid var(--color-primary);
    border-radius: 50%;
    animation: spinLoader 1s linear infinite;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

@keyframes spinLoader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}