/* ============================================
   ZENTER DRIVES - Complete Stylesheet
   ============================================ */

/* === RESET & BASE === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6C5CE7;
    --primary-dark: #5A4BD1;
    --primary-light: #A29BFE;
    --secondary: #00D2D3;
    --accent: #FD79A8;
    --dark: #0D0D1A;
    --dark-2: #1A1A2E;
    --dark-3: #16213E;
    --gray-900: #1a1a2e;
    --gray-800: #2d2d44;
    --gray-700: #404060;
    --gray-600: #555577;
    --gray-500: #7f7fa0;
    --gray-400: #9999bb;
    --gray-300: #b3b3cc;
    --gray-200: #d9d9e6;
    --gray-100: #f0f0f5;
    --gray-50: #f8f8fc;
    --white: #ffffff;
    --success: #00B894;
    --warning: #FDCB6E;
    --danger: #E17055;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-2: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.2);
    --shadow-primary: 0 8px 30px rgba(108, 92, 231, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === PRELOADER === */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    position: relative;
}

.loader-ring {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(108, 92, 231, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loader-text {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    text-align: center;
    white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    box-shadow: 0 12px 40px rgba(108, 92, 231, 0.4);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover { box-shadow: var(--shadow-lg); }

.btn-outline-white {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(13, 13, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.logo i {
    font-size: 1.8rem;
    color: var(--primary);
}

.logo-accent { color: var(--secondary); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-outline-nav {
    padding: 8px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.9rem;
}

.btn-outline-nav:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.btn-primary-nav {
    padding: 8px 20px;
    background: var(--gradient);
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-primary-nav:hover {
    box-shadow: var(--shadow-primary);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--dark-2);
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active { display: block; }

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-menu a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    display: block;
}

.mobile-menu a:hover {
    background: rgba(108, 92, 231, 0.2);
    color: var(--white);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-animation {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.floating-car {
    position: absolute;
    color: rgba(108, 92, 231, 0.1);
    animation: float 20s infinite linear;
}

.car-1 { top: 20%; left: -5%; font-size: 3rem; animation-duration: 25s; }
.car-2 { top: 60%; left: -5%; font-size: 2rem; animation-duration: 20s; animation-delay: 5s; }
.car-3 { top: 40%; left: -5%; font-size: 2.5rem; animation-duration: 30s; animation-delay: 10s; }

@keyframes float {
    0% { transform: translateX(-100px); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(calc(100vw + 100px)); opacity: 0; }
}

.circle-decoration {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(108, 92, 231, 0.1);
}

.circle-1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.circle-2 { width: 300px; height: 300px; bottom: 100px; left: -50px; }
.circle-3 { width: 200px; height: 200px; top: 50%; right: 30%; border-color: rgba(0, 210, 211, 0.1); }

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(108, 92, 231, 0.15);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: var(--radius-full);
    color: var(--primary-light);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease forwards;
}

.hero-badge i { color: var(--warning); }

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
}

.hero-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.8;
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeInUp 0.6s ease 0.4s forwards;
    opacity: 0;
}

.stat-item { text-align: center; }

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    animation: fadeInRight 0.8s ease 0.3s forwards;
    opacity: 0;
}

.phone-mockup { position: relative; }

.phone-frame {
    width: 280px;
    height: 560px;
    background: var(--dark);
    border-radius: 36px;
    border: 3px solid var(--gray-700);
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.phone-notch {
    width: 120px;
    height: 28px;
    background: var(--dark);
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.phone-screen {
    background: var(--dark-2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header-mock {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
}

.app-map-mock {
    flex: 1;
    background: linear-gradient(135deg, #1a1a3e 0%, #1a2a4e 100%);
    position: relative;
    overflow: hidden;
}

.map-dots .map-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.dot-1 { background: var(--success); top: 30%; left: 25%; }
.dot-2 { background: var(--danger); top: 65%; right: 25%; }
.dot-3 { background: var(--primary); top: 45%; left: 55%; animation-delay: 0.5s; }

.map-route {
    position: absolute;
    top: 33%;
    left: 28%;
    width: 120px;
    height: 80px;
    border: 2px dashed rgba(108, 92, 231, 0.4);
    border-radius: 20px;
    border-left: none;
    border-bottom: none;
}

.map-car-icon {
    position: absolute;
    top: 45%;
    left: 45%;
    color: var(--primary);
    font-size: 1.2rem;
    animation: carMove 3s ease-in-out infinite;
}

@keyframes carMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, -10px) rotate(15deg); }
}

.app-bottom-mock {
    padding: 16px;
    background: var(--dark);
}

.mock-input {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--dark-2);
    border-radius: var(--radius-md);
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.mock-suggestions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-suggestion {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--white);
}

.mock-suggestion i {
    color: var(--primary-light);
    font-size: 0.85rem;
}

.mock-suggestion small {
    color: var(--gray-500);
    display: block;
}

.phone-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

/* === QUICK BOOKING STRIP === */
.quick-booking {
    padding: 0 0 60px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.booking-strip {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 30px 36px;
    border: 1px solid var(--gray-100);
}

.booking-strip-header {
    margin-bottom: 20px;
}

.booking-strip-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.booking-strip-header h3 i {
    color: var(--primary);
    margin-right: 8px;
}

.booking-strip-form {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.booking-strip-form .input-group {
    flex: 1;
    min-width: 200px;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 0 12px;
    transition: var(--transition);
}

.booking-strip-form .input-group:focus-within {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.1);
}

.booking-strip-form .input-group.input-sm {
    flex: 0.7;
    min-width: 180px;
}

.input-icon {
    margin-right: 10px;
    display: flex;
    align-items: center;
    color: var(--gray-500);
}

.location-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.pickup-dot { background: var(--success); }
.dropoff-dot { background: var(--danger); }

.booking-strip-form input {
    flex: 1;
    padding: 14px 0;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--dark);
    outline: none;
}

.booking-strip-form input::placeholder {
    color: var(--gray-400);
}

.location-btn {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
}

.location-btn:hover { color: var(--primary-dark); }

/* === SECTION STYLES === */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(108, 92, 231, 0.1);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.section-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--dark);
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* === SERVICES SECTION === */
.services-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(108, 92, 231, 0.03) 0%, var(--white) 100%);
}

.service-card.featured::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(0, 210, 211, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient);
    color: var(--white);
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: rgba(0, 184, 148, 0.1);
    color: var(--success);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.premium-badge {
    background: rgba(108, 92, 231, 0.1);
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-card > p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    text-align: left;
    margin-bottom: 20px;
}

.service-features li {
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li i {
    color: var(--success);
    font-size: 0.75rem;
}

.service-price {
    margin-bottom: 20px;
}

.price-from {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-500);
    text-transform: uppercase;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
}

/* === HOW IT WORKS === */
.how-it-works {
    padding: 100px 0;
    background: var(--white);
}

.steps-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.step-line {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
}

.step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.step:last-child { margin-bottom: 0; }

.step-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-primary);
}

.step-content {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 30px;
    flex: 1;
    transition: var(--transition);
}

.step-content:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: rgba(108, 92, 231, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.step-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* === SAFETY SECTION === */
.safety-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.safety-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.safety-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--dark);
}

.safety-content > p {
    color: var(--gray-600);
    margin-bottom: 40px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.safety-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.safety-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.safety-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: var(--radius-md);
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.safety-feature h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.safety-feature p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.safety-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.safety-card-stack { position: relative; }

.safety-visual-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    margin-bottom: 16px;
    transition: var(--transition);
    animation: slideInCards 0.6s ease forwards;
    opacity: 0;
}

.card-1 { animation-delay: 0.2s; }
.card-1 i { color: var(--success); font-size: 1.2rem; }
.card-2 { animation-delay: 0.4s; margin-left: 30px; }
.card-2 i { color: var(--warning); font-size: 1.2rem; }
.card-3 { animation-delay: 0.6s; margin-left: 15px; }
.card-3 i { color: var(--primary); font-size: 1.2rem; }

@keyframes slideInCards {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.safety-illustration {
    text-align: center;
    margin-top: 30px;
}

.shield-icon-large {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: var(--gradient);
    border-radius: var(--radius-xl);
    color: var(--white);
    font-size: 3rem;
    box-shadow: var(--shadow-primary);
}

.shield-check {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 36px;
    height: 36px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    border: 3px solid var(--gray-50);
}

/* === TESTIMONIALS === */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: calc(33.333% - 16px);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    margin-bottom: 16px;
}

.testimonial-rating i {
    color: var(--warning);
    font-size: 0.9rem;
}

.testimonial-card > p {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--dark);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

/* === CTA SECTION === */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
    position: relative;
    overflow: hidden;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-text h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-text h2 span { color: var(--secondary); }

.cta-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-download-badges {
    display: flex;
    gap: 16px;
}

.download-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: var(--white);
    transition: var(--transition);
}

.download-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.download-badge i { font-size: 1.8rem; }
.download-badge small { font-size: 0.7rem; opacity: 0.7; display: block; }
.download-badge strong { font-size: 1rem; }

.cta-visual {
    display: flex;
    justify-content: center;
}

.cta-phone {
    width: 260px;
    padding: 40px 20px;
}

.notification-mock {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    color: var(--white);
    margin-bottom: 16px;
    animation: slideInNotification 0.6s ease forwards;
    opacity: 0;
}

.notification-mock i { font-size: 1.3rem; color: var(--primary-light); }
.notification-mock strong { font-size: 0.85rem; display: block; }
.notification-mock small { font-size: 0.75rem; opacity: 0.7; }

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes slideInNotification {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* === FOOTER === */
.footer {
    background: var(--dark);
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo i { color: var(--primary); font-size: 1.5rem; }

.footer-brand p {
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links-group h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links-group ul li {
    margin-bottom: 10px;
}

.footer-links-group a {
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links-group a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-newsletter h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-newsletter p {
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--primary);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    width: 48px;
    height: 48px;
    border: none;
    background: var(--gradient);
    color: var(--white);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-primary);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a:hover { color: var(--primary-light); }

/* === BACK TO TOP === */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover { transform: translateY(-3px); }

/* === TOAST NOTIFICATIONS === */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--primary);
    min-width: 300px;
    max-width: 400px;
    animation: slideInToast 0.3s ease;
    transition: var(--transition);
}

.toast.success { border-left-color: var(--success); }
.toast.success .toast-icon { color: var(--success); }
.toast.error { border-left-color: var(--danger); }
.toast.error .toast-icon { color: var(--danger); }
.toast.warning { border-left-color: var(--warning); }
.toast.warning .toast-icon { color: var(--warning); }

.toast-icon { font-size: 1.3rem; }
.toast-content { flex: 1; }
.toast-content strong { display: block; font-size: 0.9rem; color: var(--dark); }
.toast-content p { font-size: 0.8rem; color: var(--gray-600); margin: 0; }

.toast-close {
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 4px;
}

.toast.removing {
    animation: slideOutToast 0.3s ease forwards;
}

@keyframes slideInToast {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutToast {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

/* === BOOKING PAGE === */
.booking-page {
    padding-top: 70px;
    min-height: 100vh;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 450px;
    min-height: calc(100vh - 70px);
}

.booking-map {
    background: linear-gradient(135deg, #1a1a3e 0%, #1a2a4e 50%, #1a3a3e 100%);
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(108, 92, 231, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 92, 231, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

.map-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
}

.map-overlay-text i { font-size: 4rem; margin-bottom: 16px; display: block; }
.map-overlay-text p { font-size: 1.1rem; }

.map-pin {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    animation: pinDrop 0.5s ease;
}

.pickup-pin { top: 35%; left: 30%; color: var(--success); font-size: 1.5rem; }
.dropoff-pin { top: 60%; right: 30%; color: var(--danger); font-size: 1.5rem; }

.map-pin span {
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

@keyframes pinDrop {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.map-car-animated {
    position: absolute;
    top: 45%;
    left: 45%;
    font-size: 1.8rem;
    color: var(--primary);
    animation: carMove 3s ease-in-out infinite;
}

/* Booking Panel */
.booking-panel {
    background: var(--white);
    padding: 32px;
    overflow-y: auto;
    max-height: calc(100vh - 70px);
}

.booking-panel-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-panel-header h2 i { color: var(--primary); }

.booking-panel-header p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

/* Booking Steps Indicator */
.booking-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.booking-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
}

.booking-step.active .step-circle,
.booking-step.completed .step-circle {
    background: var(--gradient);
    color: var(--white);
}

.booking-step span {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 600;
}

.booking-step.active span { color: var(--primary); }

.step-connector {
    flex: 1;
    height: 2px;
    background: var(--gray-200);
    margin: 0 8px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.step-connector.active { background: var(--gradient); }

/* Booking Form Steps */
.booking-form-step {
    display: none;
}

.booking-form-step.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-group.half { flex: 1; }

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 14px;
    color: var(--gray-400);
    z-index: 1;
}

.input-with-icon input {
    padding-left: 42px;
}

.input-action-btn {
    position: absolute;
    right: 8px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(108, 92, 231, 0.1);
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.input-action-btn:hover {
    background: var(--primary);
    color: var(--white);
}

/* Location Inputs */
.location-inputs {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.location-timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    gap: 4px;
}

.timeline-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.timeline-dot.pickup { background: var(--success); }
.timeline-dot.dropoff { background: var(--danger); }

.timeline-line {
    flex: 1;
    width: 2px;
    background: var(--gray-300);
    min-height: 40px;
}

.location-fields { flex: 1; }

/* Passenger Selector */
.passenger-selector {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 8px;
    width: fit-content;
}

.pass-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    background: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-700);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.pass-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

#passengerCount {
    font-size: 1.3rem;
    font-weight: 800;
    min-width: 30px;
    text-align: center;
}

/* Vehicle Options */
.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.vehicle-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.vehicle-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.vehicle-option:hover {
    border-color: var(--primary-light);
    background: rgba(108, 92, 231, 0.02);
}

.vehicle-option.selected {
    border-color: var(--primary);
    background: rgba(108, 92, 231, 0.05);
}

.vehicle-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: rgba(108, 92, 231, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
}

.vehicle-icon.premium {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(253, 121, 168, 0.2));
}

.vehicle-info { flex: 1; }
.vehicle-info h4 { font-size: 0.95rem; font-weight: 700; color: var(--dark); }
.vehicle-info p { font-size: 0.8rem; color: var(--gray-500); }

.vehicle-eta {
    font-size: 0.75rem;
    color: var(--success);
    font-weight: 600;
}

.vehicle-eta i { margin-right: 4px; }

.vehicle-price { text-align: right; }
.vehicle-price .price { font-size: 1.1rem; font-weight: 800; color: var(--dark); display: block; }
.vehicle-price small { font-size: 0.7rem; color: var(--gray-500); }

.vehicle-check {
    color: var(--gray-300);
    font-size: 1.2rem;
    transition: var(--transition);
}

.vehicle-option.selected .vehicle-check {
    color: var(--primary);
}

/* Payment Options */
.payment-options {
    display: flex;
    gap: 12px;
}

.payment-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.payment-option:hover { border-color: var(--primary-light); }

.payment-option.selected {
    border-color: var(--primary);
    background: rgba(108, 92, 231, 0.05);
}

.payment-option input { display: none; }
.payment-option i { font-size: 1.3rem; color: var(--primary); }
.payment-option span { font-size: 0.8rem; font-weight: 600; }

/* Step Navigation */
.step-nav-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.step-nav-buttons .btn { flex: 1; }

/* Ride Summary */
.ride-summary {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
}

.summary-route {
    margin-bottom: 24px;
}

.summary-point {
    display: flex;
    align-items: center;
    gap: 12px;
}

.point-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.point-dot.pickup { background: var(--success); }
.point-dot.dropoff { background: var(--danger); }

.summary-point small {
    font-size: 0.75rem;
    color: var(--gray-500);
    display: block;
}

.summary-point strong {
    font-size: 0.9rem;
    color: var(--dark);
}

.summary-line {
    width: 2px;
    height: 30px;
    background: var(--gray-300);
    margin-left: 6px;
    margin: 6px 0 6px 6px;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.summary-item span { color: var(--gray-600); }
.summary-item strong { color: var(--dark); }

.summary-divider {
    height: 1px;
    background: var(--gray-300);
    margin: 4px 0;
}

.summary-item.total strong {
    font-size: 1.3rem;
    color: var(--primary);
}

.promo-code {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.promo-code input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: inherit;
    outline: none;
}

.promo-code input:focus { border-color: var(--primary); }

/* Booking Success */
.booking-success {
    text-align: center;
    padding: 20px 0;
}

.success-animation { margin-bottom: 24px; }

.success-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--success);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
    animation: successBounce 0.6s ease;
}

@keyframes successBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.booking-success h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.booking-success > p {
    color: var(--gray-600);
    margin-bottom: 28px;
}

.driver-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    text-align: left;
}

.driver-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.driver-info { flex: 1; }
.driver-info strong { font-size: 1rem; display: block; color: var(--dark); }

.driver-rating {
    color: var(--warning);
    font-size: 0.85rem;
    font-weight: 600;
}

.driver-info small {
    color: var(--gray-500);
    font-size: 0.8rem;
}

.driver-actions { display: flex; gap: 8px; }

.driver-action-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--gray-200);
    background: var(--white);
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.driver-action-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.eta-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: rgba(108, 92, 231, 0.1);
    border-radius: var(--radius-md);
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 20px;
}

/* === PAGE HEADER === */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    text-align: center;
}

.page-header-content h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
}

.page-header-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a { color: var(--primary-light); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 0.7rem; }

/* === SERVICES DETAIL PAGE === */
.detailed-services {
    padding: 80px 0;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }

.service-detail:last-child { margin-bottom: 0; }

.service-detail-card {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    text-align: center;
    border: 1px solid var(--gray-200);
}

.service-detail-card.premium-card {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.05), rgba(253, 121, 168, 0.05));
    border-color: rgba(108, 92, 231, 0.2);
}

.sd-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.sd-features-visual {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-700);
}

.feature-pill i { color: var(--primary); }

.service-label {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(108, 92, 231, 0.1);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.premium-label {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.15), rgba(253, 121, 168, 0.15));
}

.service-detail-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.service-desc {
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.detail-features {
    margin-bottom: 28px;
}

.detail-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.detail-features li i { color: var(--success); }

.service-pricing-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.pricing-item {
    padding: 12px 20px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    text-align: center;
}

.pricing-item span {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.pricing-item strong {
    font-size: 1.2rem;
    color: var(--primary);
}

/* Comparison Table */
.comparison-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
    padding: 16px 24px;
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
}

.comparison-table th {
    background: var(--dark);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--dark);
}

.comparison-table td {
    font-size: 0.9rem;
    color: var(--gray-700);
}

.comparison-table th.highlight {
    background: var(--primary);
}

.comparison-table td.highlight {
    background: rgba(108, 92, 231, 0.05);
}

.text-green { color: var(--success); }
.text-red { color: var(--gray-400); }

/* === ABOUT PAGE === */
.about-mission {
    padding: 80px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.mission-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.mission-text {
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 12px;
}

.mission-content > p {
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.7;
}

.mission-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.value-item {
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.value-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.value-item h4 {
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
}

.value-item p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-stat-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
}

.about-stat-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(108, 92, 231, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.2rem;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 1.3rem;
    margin: 0 auto 16px;
}

.team-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.team-role {
    display: block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.team-card p {
    color: var(--gray-600);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary);
    color: var(--white);
}

/* Timeline */
.timeline-section {
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-marker {
    position: absolute;
    left: -33px;
    top: 8px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary);
}

.timeline-content {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.timeline-year {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gradient);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.timeline-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* === CONTACT PAGE === */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-md);
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.contact-card h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.contact-social h4 {
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
}

/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--gray-600);
    cursor: pointer;
}

.checkbox-label input { display: none; }

.checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--gray-300);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin-top: 1px;
}

.checkbox-label input:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input:checked + .checkmark::after {
    content: '✓';
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
}

.checkbox-label a {
    color: var(--primary);
    font-weight: 600;
}

/* === FAQ === */
.faq-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
    font-size: 0.85rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* === AUTH PAGES === */
.auth-body {
    background: var(--gray-50);
}

.auth-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.auth-left {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.auth-left::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(108, 92, 231, 0.1);
    top: -100px;
    right: -100px;
}

.auth-left-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 400px;
}

.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 40px;
}

.auth-logo i { color: var(--primary); font-size: 1.8rem; }

.auth-illustration {
    margin-bottom: 40px;
    position: relative;
    height: 80px;
}

.auth-car-animation {
    font-size: 3rem;
    color: var(--primary);
    animation: driveAcross 4s linear infinite;
    position: absolute;
    bottom: 10px;
}

@keyframes driveAcross {
    0% { left: -50px; }
    100% { left: calc(100% + 50px); }
}

.road-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.3) 0,
        rgba(255, 255, 255, 0.3) 20px,
        transparent 20px,
        transparent 40px
    );
}

.auth-left-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.auth-left-content > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 30px;
}

.auth-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.auth-feature i {
    color: var(--secondary);
    width: 20px;
}

.auth-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.auth-form-container {
    width: 100%;
    max-width: 480px;
}

.auth-form-header {
    margin-bottom: 32px;
}

.auth-form-header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.auth-form-header p {
    color: var(--gray-600);
}

.auth-form .input-with-icon i:not(.fa-eye):not(.fa-eye-slash) {
    position: absolute;
    left: 14px;
    color: var(--gray-400);
}

.toggle-password {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    padding: 4px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.forgot-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
}

/* Password Strength */
.password-strength {
    margin-top: 8px;
}

.strength-bar {
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    margin-bottom: 6px;
}

.strength-fill {
    height: 100%;
    width: 0;
    border-radius: 2px;
    transition: var(--transition);
}

.strength-text {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Auth Divider */
.auth-divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 60px);
    height: 1px;
    background: var(--gray-200);
}

.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }

.auth-divider span {
    background: var(--gray-50);
    padding: 0 12px;
    color: var(--gray-500);
    font-size: 0.85rem;
}

/* Social Auth */
.social-auth {
    display: flex;
    gap: 12px;
}

.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--white);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray-700);
}

.social-btn:hover {
    border-color: var(--gray-400);
    background: var(--gray-50);
}

.social-btn.google i { color: #DB4437; }
.social-btn.facebook i { color: #4267B2; }
.social-btn.apple i { color: var(--dark); }

.auth-switch {
    text-align: center;
    margin-top: 24px;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.auth-switch a {
    color: var(--primary);
    font-weight: 700;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-content p { margin: 0 auto 32px; }
    .hero-cta { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { margin-top: 40px; }
    .safety-grid { grid-template-columns: 1fr; gap: 40px; }
    .cta-content { grid-template-columns: 1fr; text-align: center; }
    .cta-buttons { justify-content: center; }
    .cta-download-badges { justify-content: center; }
    .cta-visual { display: none; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .booking-container { grid-template-columns: 1fr; }
    .booking-map { min-height: 300px; }
    .booking-panel { max-height: none; }
    .service-detail { grid-template-columns: 1fr; }
    .service-detail.reverse { direction: ltr; }
    .mission-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .auth-page { grid-template-columns: 1fr; }
    .auth-left { display: none; }
    .testimonial-card { min-width: calc(50% - 12px); }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .hamburger { display: flex; }
    .services-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.5rem; }
    .booking-strip-form { flex-direction: column; }
    .booking-strip-form .input-group { min-width: 100%; }
    .booking-strip-form .input-group.input-sm { min-width: 100%; }
    .step { flex-direction: column; align-items: flex-start; }
    .step-line { display: none; }
    .step-number { margin-bottom: 10px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .stat-divider { display: none; }
    .team-grid { grid-template-columns: 1fr; }
    .payment-options { flex-wrap: wrap; }
    .form-row { flex-direction: column; }
    .form-group.half { flex: auto; }
    .social-auth { flex-direction: column; }
    .testimonial-card { min-width: 100%; }
    .service-pricing-detail { flex-wrap: wrap; }
    .about-stats-grid { grid-template-columns: 1fr 1fr; }
    .mission-values { grid-template-columns: 1fr; }
    .cta-download-badges { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2rem; }
    .phone-frame { width: 220px; height: 440px; }
    .booking-panel { padding: 20px; }
    .container { padding: 0 16px; }
    .booking-strip { padding: 20px; }
    .contact-form-wrapper { padding: 24px; }
    .auth-right { padding: 24px; }
}