/* ========================================
   UniDrive — Premium Global Driver Services
   Dark Theme: #2E5BFF + #FFB700 on #0A0C10
   ======================================== */

/* ---------- Variables ---------- */
:root {
    --primary: #2E5BFF;
    --primary-dark: #1E3FCC;
    --primary-soft: rgba(46, 91, 255, 0.12);
    --accent: #FFB700;
    --accent-hover: #EEA900;
    --accent-foreground: #0A0C10;
    --background: #0A0C10;
    --background-alt: #0E1118;
    --foreground: #F4F7FA;
    --card: #101318;
    --card-hover: #14181F;
    --muted: #1A1D23;
    --muted-foreground: #94A3B8;
    --border: #23272F;
    --input: #272C34;
    --white: #FFFFFF;
    --glow: rgba(46, 91, 255, 0.35);
    --gradient: linear-gradient(135deg, #2E5BFF 0%, #6A8AFF 50%, #1E3FCC 100%);
    --gradient-word: linear-gradient(135deg, #5B7BFF 0%, #FFB700 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    --radius: 16px;
    --radius-lg: 24px;
    --font: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 80px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body {
    font-family: var(--font);
    color: var(--foreground);
    background: var(--background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; border: none; outline: none; }
ul, ol { list-style: none; }
::selection { background: var(--accent); color: var(--accent-foreground); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--background); }
::-webkit-scrollbar-thumb { background: var(--input); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ---------- Container ---------- */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ---------- Section ---------- */
.section { padding: 96px 0; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted-foreground);
    margin-bottom: 14px;
}
.section-title {
    font-family: var(--font);
    font-size: clamp(30px, 4.5vw, 46px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
    color: var(--foreground);
}
.text-gradient {
    background: var(--gradient-word);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-desc {
    font-size: 16px;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    border-radius: 9999px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    border: 1.5px solid transparent;
    font-family: var(--font);
    text-align: center;
}
.btn-sm { padding: 10px 22px; font-size: 14px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-primary {
    background: var(--accent);
    color: var(--accent-foreground);
    box-shadow: 0 0 30px rgba(255, 183, 0, 0.12);
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(255, 183, 0, 0.25);
}
.btn-outline {
    background: transparent;
    color: var(--foreground);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline-blue {
    background: transparent;
    color: var(--foreground);
    border-color: rgba(46, 91, 255, 0.5);
    backdrop-filter: blur(8px);
}
.btn-outline-blue:hover {
    background: var(--primary);
    color: var(--foreground);
    border-color: var(--primary);
    box-shadow: 0 0 30px var(--glow);
}
.btn-white {
    background: var(--foreground);
    color: var(--background);
    box-shadow: var(--shadow);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(244, 247, 250, 0.2);
}

/* ---------- Header ---------- */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: var(--transition);
    background: transparent;
}
.header.scrolled {
    background: rgba(10, 12, 16, 0.85);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    height: 68px;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}
.logo-icon {
    width: 40px; height: 40px;
    color: var(--primary);
    filter: drop-shadow(0 0 12px var(--glow));
}
.logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--foreground);
}
.nav { display: flex; gap: 4px; }
.nav-link {
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 9999px;
    color: var(--muted-foreground);
    transition: var(--transition);
}
.nav-link:hover {
    color: var(--foreground);
    background: rgba(255, 255, 255, 0.06);
}
.nav-link.active {
    color: var(--foreground);
    background: rgba(46, 91, 255, 0.15);
}
.header-actions { display: flex; gap: 10px; align-items: center; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}
.mobile-toggle span {
    width: 26px; height: 2.5px;
    border-radius: 2px;
    background: var(--foreground);
    transition: var(--transition);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 140px 0 220px;
    overflow: hidden;
    isolation: isolate;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('https://media.base44.com/images/public/6a9da8f53c15084347d7b7b1/db98a2bb3_generated_3002e826.jpg') center 40%/cover no-repeat;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(10, 12, 16, 0.75) 0%, rgba(10, 12, 16, 0.55) 40%, rgba(10, 12, 16, 0.9) 100%);
}
.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 300px;
    background: linear-gradient(to bottom, rgba(10, 12, 16, 0.55), transparent);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 9999px;
    color: var(--foreground);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    animation: fadeInDown 0.8s ease;
}
.hero-badge i { color: var(--accent); }
.hero-title {
    font-size: clamp(42px, 7vw, 78px);
    font-weight: 800;
    color: var(--foreground);
    line-height: 1.04;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s both;
}
.hero-title .hero-accent {
    background: linear-gradient(100deg, var(--foreground) 20%, #CBD5E1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: clamp(15px, 1.8vw, 19px);
    color: var(--muted-foreground);
    max-width: 700px;
    margin: 0 auto 36px;
    line-height: 1.65;
    animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s both;
}

/* Booking Box */
.booking-box {
    position: relative;
    z-index: 10;
    background: rgba(16, 19, 24, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 32px;
    max-width: 1160px;
    margin: -70px auto 0;
    animation: fadeInUp 1s ease 0.5s both;
}
.booking-tabs {
    display: flex;
    gap: 4px;
    background: var(--muted);
    padding: 4px;
    border-radius: 9999px;
    margin-bottom: 24px;
    width: fit-content;
}
.booking-tab {
    padding: 9px 22px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    background: transparent;
    color: var(--muted-foreground);
    transition: var(--transition);
}
.booking-tab.active {
    background: var(--accent);
    color: var(--accent-foreground);
}
.booking-fields {
    display: grid;
    grid-template-columns: 1fr 1fr 0.8fr 0.8fr 1.2fr auto;
    gap: 16px;
    align-items: end;
}
.booking-field label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--muted-foreground);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.booking-field label i { color: var(--accent); margin-right: 4px; }
.booking-field input,
.booking-field select {
    width: 100%;
    padding: 14px 16px;
    background: var(--input);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    color: var(--foreground);
    transition: var(--transition);
}
.booking-field select option { background: var(--card); }
.booking-field input::placeholder { color: var(--muted-foreground); }
.booking-field input:focus,
.booking-field select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(46, 91, 255, 0.15), 0 0 30px rgba(46, 91, 255, 0.1);
    background: var(--card);
}
.booking-btn { height: 50px; padding: 0 30px; }

/* Hero Stats */
.hero-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 52px auto 0;
    text-align: center;
    animation: fadeInUp 1s ease 0.7s both;
}
.stat-number {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--foreground);
}
.stat-suffix {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
}
.stat-label {
    display: block;
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: 4px;
}

/* ---------- Trusted By ---------- */
.trusted-by {
    padding: 48px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.trusted-label {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 28px;
}
.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 56px;
    flex-wrap: wrap;
    opacity: 0.6;
}
.trusted-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 700;
    color: var(--foreground);
    transition: var(--transition);
    filter: grayscale(1);
}
.trusted-logo:hover { filter: grayscale(0); opacity: 1; }
.trusted-logo i { font-size: 20px; }

/* ---------- About ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-text { font-size: 16px; color: var(--muted-foreground); margin-bottom: 16px; line-height: 1.8; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0 32px; }
.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--foreground);
}
.about-feature i { color: var(--accent); font-size: 18px; }
.about-visual { position: relative; }
.about-image-box { position: relative; }
.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--card);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.about-img-main:hover img { transform: scale(1.05); }
.about-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(16, 19, 24, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
.about-float-card i { font-size: 26px; color: var(--accent); }
.about-float-card strong { font-size: 14px; color: var(--foreground); }
.about-float-card small { font-size: 12px; color: var(--muted-foreground); }
.about-float-1 { bottom: -18px; left: -18px; animation: float 3s ease-in-out infinite; }
.about-float-2 { top: -18px; right: -18px; animation: float 3s ease-in-out infinite 1s; }

/* ---------- Services ---------- */
.services { background: var(--background-alt); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.service-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(46, 91, 255, 0.4);
    box-shadow: 0 0 40px rgba(46, 91, 255, 0.12), var(--shadow);
    background: var(--card-hover);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    background: rgba(46, 91, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--foreground);
    box-shadow: 0 0 30px var(--glow);
}
.service-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--foreground);
}
.service-card p {
    font-size: 13px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}
.service-card .btn {
    padding: 8px 18px;
    font-size: 12px;
}

/* ---------- Why Choose Us ---------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.why-card {
    padding: 32px 26px;
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
}
.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(46, 91, 255, 0.12), var(--shadow);
    border-color: rgba(46, 91, 255, 0.4);
    background: var(--card-hover);
}
.why-icon {
    width: 68px; height: 68px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(46, 91, 255, 0.15), rgba(255, 183, 0, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px;
    color: var(--accent);
    transition: var(--transition);
}
.why-card:hover .why-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 0 30px rgba(255, 183, 0, 0.2);
}
.why-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--foreground);
}
.why-card p {
    font-size: 13.5px;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* ---------- How It Works ---------- */
.steps-grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
}
.step-card {
    flex: 1;
    max-width: 260px;
    text-align: center;
    padding: 32px 20px;
    position: relative;
}
.step-number {
    font-size: 64px;
    font-weight: 800;
    background: var(--gradient-word);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}
.step-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: var(--foreground);
    box-shadow: 0 0 30px var(--glow);
}
.step-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--foreground);
}
.step-card p {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.6;
}
.step-connector {
    display: flex;
    align-items: center;
    padding-top: 100px;
    color: var(--border);
    font-size: 20px;
}

/* ---------- For Customers ---------- */
.for-customers { background: var(--background-alt); }
.customers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.customer-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0 32px;
}
.customer-cat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    background: var(--card);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.customer-cat:hover {
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(46, 91, 255, 0.15);
}
.customer-cat i { color: var(--accent); font-size: 16px; }
.customers-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}
.customer-feature {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.customer-feature:last-child { border-bottom: none; }
.cf-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: rgba(46, 91, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent);
    flex-shrink: 0;
}
.customer-feature strong {
    font-size: 15px;
    color: var(--foreground);
    display: block;
    margin-bottom: 2px;
}
.customer-feature p {
    font-size: 13px;
    color: var(--muted-foreground);
    margin: 0;
}

/* ---------- For Drivers ---------- */
.for-drivers {
    background:
        linear-gradient(to right, rgba(10, 12, 16, 0.92) 0%, rgba(10, 12, 16, 0.6) 50%, rgba(10, 12, 16, 0.35) 100%),
        url('https://media.base44.com/images/public/6a9da8f53c15084347d7b7b1/a303d4c38_generated_e8d46fba.jpg') center/cover no-repeat;
}
.drivers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.drivers-visual-inner { position: relative; }
.drivers-big-card {
    background: rgba(16, 19, 24, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    color: var(--foreground);
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.drivers-big-card > i { font-size: 52px; color: var(--accent); margin-bottom: 16px; }
.drivers-big-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}
.earnings-display { margin-bottom: 12px; }
.earn-amount {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -0.03em;
    display: block;
    background: var(--gradient-word);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.earn-period {
    font-size: 14px;
    color: var(--muted-foreground);
}
.drivers-big-card p {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: 8px;
}
.driver-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0 32px;
}
.driver-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(16, 19, 24, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
}
.driver-benefit i { color: var(--accent); font-size: 16px; }

/* ---------- Business Solutions ---------- */
.business {
    position: relative;
    background:
        linear-gradient(to top, rgba(10, 12, 16, 0.88) 30%, rgba(10, 12, 16, 0.65) 100%),
        url('https://media.base44.com/images/public/6a9da8f53c15084347d7b7b1/232688e55_generated_849b7b99.jpg') center/cover no-repeat;
}
.business-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.business-card {
    background: rgba(16, 19, 24, 0.85);
    backdrop-filter: blur(12px);
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
}
.business-card:hover {
    transform: translateY(-5px);
    border-color: rgba(46, 91, 255, 0.4);
    box-shadow: 0 0 40px rgba(46, 91, 255, 0.15), var(--shadow);
}
.business-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 24px;
    color: var(--foreground);
    box-shadow: 0 0 30px var(--glow);
}
.business-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--foreground);
}
.business-card p {
    font-size: 13.5px;
    color: var(--muted-foreground);
    line-height: 1.6;
}
.business-cta { text-align: center; margin-top: 48px; }

/* ---------- Global Locations ---------- */
.world-map-container {
    max-width: 960px;
    margin: 0 auto 40px;
}
.world-map {
    position: relative;
    width: 100%;
    padding-top: 55%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    background:
        linear-gradient(to top, rgba(10, 12, 16, 0.6) 0%, rgba(10, 12, 16, 0.3) 50%, rgba(10, 12, 16, 0.55) 100%),
        url('https://media.base44.com/images/public/6a9da8f53c15084347d7b7b1/5fb47b851_generated_9ed048f4.jpg') center/cover no-repeat;
    box-shadow: var(--shadow-lg);
}
.map-dot {
    position: absolute;
    width: 16px; height: 16px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
    box-shadow: 0 0 15px var(--primary);
}
.map-dot::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: rgba(46, 91, 255, 0.25);
    animation: pulse 2s ease-in-out infinite;
}
.map-dot:hover { transform: scale(1.4); box-shadow: 0 0 25px var(--primary); }
.map-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 12px;
    background: var(--accent);
    color: var(--accent-foreground);
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    margin-bottom: 8px;
}
.map-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--accent);
}
.map-dot:hover .map-tooltip { opacity: 1; }
.locations-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}
.location-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
    transition: var(--transition);
}
.location-pill:hover {
    background: var(--accent);
    color: var(--accent-foreground);
    border-color: var(--accent);
    transform: translateY(-2px);
}
.location-pill i { color: var(--accent); }
.location-pill:hover i { color: var(--accent-foreground); }

/* ---------- Safety ---------- */
.safety { background: var(--background-alt); }
.safety-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}
.safety-features { margin-top: 28px; }
.safety-feature {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.safety-feature:last-child { border-bottom: none; }
.sf-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--foreground);
    flex-shrink: 0;
    box-shadow: 0 0 20px var(--glow);
}
.safety-feature h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 2px;
}
.safety-feature p {
    font-size: 13px;
    color: var(--muted-foreground);
}
.safety-visual {
    position: relative;
}
.safety-visual-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}
.safety-visual-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.safety-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(10, 12, 16, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 14px;
}
.safety-badge i { font-size: 22px; color: var(--accent); }
.safety-badge strong { font-size: 13px; color: var(--foreground); display: block; }
.safety-badge small { font-size: 11px; color: var(--muted-foreground); }

/* ---------- Driver Categories ---------- */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.category-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--border);
}
.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.category-card:hover img { transform: scale(1.06); }
.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 12, 16, 0.92) 0%, rgba(10, 12, 16, 0.1) 60%);
    transition: var(--transition);
}
.category-card:hover .cat-overlay { background: linear-gradient(to top, rgba(30, 63, 204, 0.85) 0%, rgba(10, 12, 16, 0.15) 70%); }
.cat-content {
    position: relative;
    z-index: 2;
    color: var(--foreground);
    padding: 24px;
    width: 100%;
}
.cat-content i {
    font-size: 26px;
    margin-bottom: 10px;
    color: var(--accent);
    display: block;
}
.cat-content h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}
.cat-content p { font-size: 12.5px; color: var(--muted-foreground); }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--background-alt); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.testimonial-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 30px;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 40px rgba(46, 91, 255, 0.1), var(--shadow);
    border-color: rgba(46, 91, 255, 0.35);
}
.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
    color: var(--accent);
    font-size: 14px;
}
.testimonial-text {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    flex-grow: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
    flex-shrink: 0;
}
.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-author strong {
    font-size: 14px;
    color: var(--foreground);
    display: block;
}
.testimonial-author span {
    font-size: 12px;
    color: var(--muted-foreground);
}

/* ---------- CTA Section ---------- */
.cta-section {
    position: relative;
    padding: 110px 0;
    text-align: center;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(46, 91, 255, 0.28) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(255, 183, 0, 0.12) 0%, transparent 60%),
        linear-gradient(to bottom, var(--background), var(--background));
}
.cta-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
}
.cta-content { position: relative; z-index: 2; }
.cta-title {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--foreground);
    margin-bottom: 16px;
}
.cta-text {
    font-size: 18px;
    color: var(--muted-foreground);
    margin-bottom: 36px;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Blog ---------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.blog-card {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 40px rgba(46, 91, 255, 0.1), var(--shadow);
    border-color: rgba(46, 91, 255, 0.35);
}
.blog-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-card:hover .blog-image img { transform: scale(1.06); }
.blog-body { padding: 24px; }
.blog-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(46, 91, 255, 0.15);
    color: #8FA8FF;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}
.blog-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--foreground);
    line-height: 1.4;
}
.blog-card p {
    font-size: 13px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 12px;
}
.blog-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.blog-link:hover { gap: 10px; }

/* ---------- FAQ ---------- */
.faq { background: var(--background-alt); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
    background: var(--card);
    border-radius: var(--radius);
    margin-bottom: 14px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(46, 91, 255, 0.12);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px;
    background: none;
    cursor: pointer;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
    color: var(--foreground);
    transition: var(--transition);
}
.faq-question i {
    color: var(--muted-foreground);
    transition: var(--transition);
    font-size: 14px;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--accent-foreground); background: var(--accent); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p {
    padding: 0 26px 22px;
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 60px;
    align-items: start;
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--input);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    color: var(--foreground);
    transition: var(--transition);
    resize: vertical;
}
.form-group select option { background: var(--card); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted-foreground); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(46, 91, 255, 0.15), 0 0 30px rgba(46, 91, 255, 0.1);
    background: var(--card);
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
    padding: 24px;
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.contact-info-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(46, 91, 255, 0.12);
}
.ci-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--foreground);
    font-size: 20px;
    margin-bottom: 12px;
    box-shadow: 0 0 20px var(--glow);
}
.contact-info-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--foreground);
}
.contact-info-card p {
    font-size: 13px;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* ---------- Footer ---------- */
.footer {
    background: #08090C;
    border-top: 1px solid var(--border);
    color: var(--muted-foreground);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-logo .logo-icon { color: var(--primary); filter: drop-shadow(0 0 12px var(--glow)); }
.footer-logo .logo-text { color: var(--foreground); }
.footer-tagline {
    font-size: 16px;
    font-weight: 700;
    color: var(--foreground);
    margin: 12px 0;
}
.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--muted-foreground);
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: var(--muted);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--muted-foreground);
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--primary);
    color: var(--foreground);
    transform: translateY(-2px);
    box-shadow: 0 0 25px var(--glow);
}
.footer-links h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 20px;
}
.footer-links a {
    display: block;
    font-size: 14px;
    color: var(--muted-foreground);
    padding: 6px 0;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--accent); transform: translateX(4px); }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}
.footer-bottom p {
    font-size: 13px;
    color: var(--muted-foreground);
}
.footer-bottom-links {
    display: flex;
    gap: 24px;
}
.footer-bottom-links a {
    font-size: 13px;
    color: var(--muted-foreground);
}
.footer-bottom-links a:hover { color: var(--accent); }

/* ---------- Scroll to Top ---------- */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px; height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--foreground);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 0 30px var(--glow);
    border: none;
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top:hover { transform: translateY(-4px); }

/* ---------- Mobile Overlay ---------- */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

/* ---------- Animations ---------- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.8); opacity: 0; }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1280px) {
    .container { padding: 0 32px; }
}

@media (max-width: 1200px) {
    .services-grid, .why-grid, .business-grid, .blog-grid, .testimonials-grid, .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 1024px) {
    .nav { display: none; }
    .header-actions { display: none; }
    .mobile-toggle { display: flex; }
    .nav.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--background);
        padding: 100px 32px 40px;
        z-index: 1000;
        overflow-y: auto;
    }
    .nav.active .nav-link {
        color: var(--foreground);
        font-size: 18px;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .header-actions.mobile-show {
        display: flex;
        flex-direction: column;
        position: fixed;
        bottom: 0; left: 0; right: 0;
        padding: 20px 24px;
        background: var(--background);
        z-index: 1001;
        gap: 10px;
        border-top: 1px solid var(--border);
    }
    .booking-fields { grid-template-columns: 1fr 1fr; }
    .about-grid, .customers-grid, .drivers-grid, .safety-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .step-connector { display: none; }
    .steps-grid { flex-wrap: wrap; gap: 20px; }
    .step-card { max-width: 100%; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 72px 0; }
    .section-header { margin-bottom: 40px; }
    .services-grid, .why-grid, .business-grid, .blog-grid, .testimonials-grid, .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .hero { padding: 120px 0 180px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .booking-fields, .contact-form .form-row { grid-template-columns: 1fr; }
    .booking-box { padding: 24px; margin: -60px 16px 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-features, .customer-categories, .driver-benefits {
        grid-template-columns: 1fr;
    }
    .hero-buttons { flex-direction: column; align-items: center; }
    .about-float-card { position: relative; bottom: auto; left: auto; top: auto; right: auto; margin-top: 16px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
    .services-grid, .why-grid, .business-grid, .blog-grid, .testimonials-grid, .categories-grid {
        grid-template-columns: 1fr;
    }
    .hero-title { font-size: 36px; }
    .container { padding: 0 20px; }
    .trusted-logos { gap: 24px; }
    .trusted-logo { font-size: 14px; }
}