/* USA CAB Custom Font Stack */
/* Using fonts that match the clean, bold style of the USA CAB logo */

/* Z-Index Management System */
/* 
   1000-1999: Navigation and fixed headers
   2000-2999: Modals and overlays
   3000-3999: Dropdowns and menus
   4000-4999: Tooltips and notifications
   5000+: Emergency/critical overlays
*/

/* 🎨 PREMIUM MICRO-INTERACTIONS & ANIMATIONS */
/* Smooth transitions for professional feel */
:root {
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-fast: 150ms var(--ease-out-quart);
    --transition-medium: 250ms var(--ease-out-quart);
    --transition-slow: 400ms var(--ease-out-quart);
}

/* Enhanced button interactions with premium feel */
.btn-login, .btn-signup, .request-ride-btn, .dropdown-btn {
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    transition: all var(--transition-medium), transform var(--transition-fast);
}

.btn-login:hover, .btn-signup:hover, .request-ride-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-login:active, .btn-signup:active, .request-ride-btn:active {
    transform: translateY(0px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 100ms var(--ease-in-out);
}

/* Premium ripple effect for buttons */
.btn-login::before, .btn-signup::before, .request-ride-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width var(--transition-medium), height var(--transition-medium);
    pointer-events: none;
}

.btn-login:active::before, .btn-signup:active::before, .request-ride-btn:active::before {
    width: 300px;
    height: 300px;
}

/* Smooth dropdown animations */
.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all var(--transition-medium);
    transform-origin: top center;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Enhanced input focus states */
.location-input, input[type="text"], input[type="email"], input[type="tel"] {
    transition: all var(--transition-medium);
    position: relative;
}

.location-input:focus, input:focus {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* Smooth card hover effects */
.booking-widget, .suggestion-card, .recent-activity {
    transition: all var(--transition-medium);
}

.booking-widget:hover, .suggestion-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Enhanced navbar interactions */
.nav-link, .navbar a {
    position: relative;
    transition: all var(--transition-medium);
}

.nav-link::after, .navbar a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width var(--transition-medium);
}

.nav-link:hover::after, .navbar a:hover::after {
    width: 100%;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* 💀 SKELETON LOADING SCREENS */
/* Premium loading animations for perceived performance */
@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.skeleton {
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.1) 25%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0.1) 75%
    );
    background-size: 200px 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    border-radius: 4px;
}

.skeleton-text {
    height: 16px;
    margin-bottom: 8px;
}

.skeleton-text:last-child {
    width: 60%;
}

.skeleton-button {
    height: 44px;
    border-radius: 8px;
}

.skeleton-input {
    height: 48px;
    border-radius: 8px;
    margin-bottom: 12px;
}

/* Loading spinner for buttons */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: spin 0.8s linear infinite;
}

/* Progressive loading dots */
@keyframes dot-pulse {
    0%, 20% { opacity: 0; }
    50% { opacity: 1; }
    80%, 100% { opacity: 0; }
}

.loading-dots {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.loading-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    animation: dot-pulse 1.4s ease-in-out infinite;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

/* Form validation feedback animations */
@keyframes shake {
    0%, 20%, 50%, 80%, 100% { transform: translateX(0); }
    10% { transform: translateX(-10px); }
    30% { transform: translateX(10px); }
    60% { transform: translateX(-5px); }
    90% { transform: translateX(5px); }
}

.input-error {
    animation: shake 0.5s ease-in-out;
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}

.input-success {
    border-color: #28a745 !important;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1) !important;
}

/* Premium fade-in animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s var(--ease-out-quart) forwards;
}

/* Staggered animations for lists */
.animate-list > * {
    opacity: 0;
    animation: fadeInUp 0.6s var(--ease-out-quart) forwards;
}

.animate-list > *:nth-child(1) { animation-delay: 0.1s; }
.animate-list > *:nth-child(2) { animation-delay: 0.2s; }
.animate-list > *:nth-child(3) { animation-delay: 0.3s; }
.animate-list > *:nth-child(4) { animation-delay: 0.4s; }
.animate-list > *:nth-child(5) { animation-delay: 0.5s; }

/* Smooth page load animation */
.page-loading {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.page-loaded {
    opacity: 1;
}

/* 🔔 PREMIUM NOTIFICATION SYSTEM */
/* Toast notifications with smooth animations */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(400px);
    opacity: 0;
    transition: all var(--transition-medium);
    z-index: 5000;
    max-width: 300px;
    border-left: 4px solid #28a745;
}

.notification.error {
    border-left-color: #dc3545;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification i {
    font-size: 18px;
    color: #28a745;
}

.notification.error i {
    color: #dc3545;
}

.notification span {
    font-family: "Nordic", "Futura", "Century Gothic", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* Form feedback positioning */
.form-feedback {
    position: absolute;
    bottom: -25px;
    left: 0;
    font-size: 12px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-10px);
    transition: all var(--transition-medium);
    pointer-events: none;
}

.form-feedback.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.form-feedback.error {
    color: #dc3545;
}

.form-feedback.success {
    color: #28a745;
}

/* Reset and Base Styles */
html, body, #root {
    min-height: 100%;
}

/* 🎯 GLOBAL CENTERING STYLES */
/* Ensure all main content areas are centered */
.suggestions h2, .plan-later h2, .recent-activity h3, .driver-earnings h2, .business-section h2 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.suggestions p, .plan-later p, .recent-activity p, .driver-earnings p, .business-section p {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Center all button containers */
.suggestions .btn, .plan-later .btn, .recent-activity .btn, .driver-earnings .btn, .business-section .btn, .membership .btn, .btn-signup-save {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/* Driver Section Image Sizing */
.driver-image img {
    width: 100%;
    height: auto;
    max-width: 480px;
    border-radius: 8px;
    -o-object-fit: cover;
       object-fit: cover;
}

/* Business Section Image Sizing */
.business-images {
    display: flex;
    justify-content: center;
    align-items: center;
}

.business-images img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Plan Later Section Image Sizing */
.plan-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.plan-image {
    flex: 1;
    max-width: 50%;
}

.plan-image img {
    width: 100%;
    height: auto;
    max-width: 480px;
    border-radius: 8px;
    -o-object-fit: cover;
       object-fit: cover;
}

.plan-text {
    flex: 1;
    max-width: 50%;
}

@media (max-width: 768px) {
    .business-images {
        justify-content: center;
    }
    
    .business-images img {
        max-width: none !important;
        width: 100% !important;
    }
    
    .driver-image img {
        max-width: 320px;
    }
    
    .plan-content {
        flex-direction: column;
    }
    
    .plan-image,
    .plan-text {
        max-width: 100%;
    }
    
    .plan-image img {
        max-width: 320px;
    }
}

/* Phone Authentication Modal Styles - Using consolidated modal styles below */

.modal-content {
    background-color: #fff !important;
    margin: auto !important;
    padding: 20px !important;
    border-radius: 8px !important;
    width: 90% !important;
    max-width: 400px !important;
    position: relative !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

.close {
    color: #aaa !important;
    float: right !important;
    font-size: 28px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    position: absolute !important;
    top: 10px !important;
    right: 15px !important;
}

.close:hover,
.close:focus {
    color: #000 !important;
    text-decoration: none !important;
}

#phone-auth-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}

#phone-auth-form h2 {
    margin: 0 0 15px 0 !important;
    text-align: center !important;
    color: #333 !important;
}

#phone-input-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

#phone-number {
    padding: 12px !important;
    border: 2px solid #ddd !important;
    border-radius: 4px !important;
    font-size: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

#phone-number:focus {
    border-color: #007bff !important;
    outline: none !important;
}

#recaptcha-container {
    display: flex !important;
    justify-content: center !important;
    margin: 15px 0 !important;
    min-height: 78px !important;
}

#send-otp-btn {
    background-color: #007bff !important;
    color: white !important;
    padding: 12px 20px !important;
    border: none !important;
    border-radius: 4px !important;
    font-size: 16px !important;
    cursor: pointer !important;
    width: 100% !important;
}

#send-otp-btn:hover {
    background-color: #0056b3 !important;
}

#send-otp-btn:disabled {
    background-color: #ccc !important;
    cursor: not-allowed !important;
}

.captcha-instruction {
    color: #666 !important;
    font-size: 14px !important;
    text-align: center !important;
    margin: 10px 0 !important;
    display: block !important;
    visibility: visible !important;
}

.error-message {
    color: #dc3545 !important;
    background-color: #f8d7da !important;
    border: 1px solid #f5c6cb !important;
    border-radius: 4px !important;
    padding: 10px !important;
    margin: 10px 0 !important;
    text-align: center !important;
    display: block !important;
    visibility: visible !important;
}

/* Date Time Input Styling */
.date-time-inputs {
    display: flex;
    gap: 16px;
    margin: 16px 0;
    flex-wrap: wrap;
}

.input-with-icon {
    position: relative;
    flex: 1;
    min-width: 200px;
}

.input-with-icon i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 18px;
    z-index: 2;
    pointer-events: none;
}

.input-with-icon input {
    width: 100%;
    padding: 12px 45px 12px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.input-with-icon input:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.input-with-icon input:hover {
    border-color: #666;
}

@media (max-width: 768px) {
    .date-time-inputs {
        flex-direction: column;
    }
    
    .input-with-icon {
        min-width: 100%;
    }
}

/* Dropdown Modal Styles */
.dropdown-modal-content {
    max-width: 400px;
    width: 90%;
}

.dropdown-modal-options {
    margin: 20px 0;
}

.dropdown-modal-option {
    width: 100%;
    padding: 16px 20px;
    border: none;
    background: white;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s;
}

.dropdown-modal-option:hover {
    background: #f0f0f0;
}

.dropdown-modal-option:last-child {
    border-bottom: none;
}

/* Ensure modal appears above other content */
#dropdownModal {
    z-index: 2100 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.5) !important;
    display: none !important;
}

#dropdownModal.show {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Ensure modal content is properly styled */
.modal-content {
    background: white !important;
    border-radius: 8px !important;
    padding: 20px !important;
    position: relative !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
}

.dropdown-modal-option:hover {
    background-color: #f9fafb;
}

.dropdown-modal-option:last-child {
    border-bottom: none;
    border-radius: 0 0 8px 8px;
}

.dropdown-modal-option:first-child {
    border-radius: 8px 8px 0 0;
}

.option-text {
    flex: 1;
}

.option-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
}

.option-subtitle {
    font-size: 14px;
    color: #666;
}

.dropdown-modal-option i {
    width: 20px;
    text-align: center;
    color: #666;
}

html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
       -moz-text-size-adjust: 100%;
            text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    margin: 0;
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}

* {
    box-sizing: border-box;
}

/* Navigation Styles - Exact Uber Match */
.navbar {
    background-color: rgb(0, 0, 0) !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 16px;
    min-height: 80px;
    box-sizing: border-box;
}

.nav-container {
    max-width: 1136px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    min-height: 80px;
    position: relative;
}

.nav-brand .brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo {
    height: 48px;
    width: auto;
    -o-object-fit: contain;
       object-fit: contain;
}

.footer-logo {
    height: 60px;
    width: auto;
    -o-object-fit: contain;
       object-fit: contain;
    filter: invert(1);
}

.brand-name {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Arial Black", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-links {
    display: none;
}

@media screen and (min-width: 768px) {
    .nav-links {
        display: flex;
        align-items: center;
        gap: 24px;
        margin-right: 24px;
    }
}

@media screen and (min-width: 1136px) {
    .nav-links {
        gap: 32px;
        margin-right: 32px;
    }
}

.nav-link {
    color: rgb(255, 255, 255);
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 200ms ease;
}

.nav-link:hover {
    color: rgb(203, 203, 203);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-help {
    display: none;
}

@media screen and (min-width: 1136px) {
    .btn-help {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        color: rgb(255, 255, 255);
        font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
        font-size: 16px;
        font-weight: 500;
        border-radius: 50%;
        padding: 14px;
        cursor: pointer;
        transition: background-color 200ms ease;
    }
    
    .btn-help:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
}

.btn-login {
    background-color: rgb(0, 0, 0);
    border: none;
    color: rgb(255, 255, 255);
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    padding: 16px 20px;
    min-height: 44px;
    cursor: pointer;
    transition: background-color 200ms ease;
}

.btn-login:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-signup {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border: none;
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    padding: 16px 20px;
    min-height: 44px;
    cursor: pointer;
    transition: background-color 200ms ease;
}

.btn-signup:hover {
    background-color: rgb(243, 243, 243);
}

.btn-logout {
    background-color: rgb(220, 53, 69);
    color: rgb(255, 255, 255);
    border: none;
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    padding: 16px 20px;
    cursor: pointer;
    transition: background-color 200ms ease;
}

.btn-logout:hover {
    background-color: rgb(200, 35, 51);
}

.mobile-menu-btn {
    display: none; /* Hidden by default on desktop */
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 1001; /* Ensure it's above other nav elements */
}

@media screen and (max-width: 767px) {
    .mobile-menu-btn {
        display: none !important; /* Hide mobile hamburger menu - using bottom nav instead */
    }
    
    .nav-menu {
        display: flex; /* Show nav-menu container on mobile for mobile menu button */
        justify-content: flex-end; /* Align mobile menu button to right */
    }
    
    .nav-links {
        display: none; /* Hide desktop nav links on mobile */
    }
    
    .nav-actions {
        display: flex; /* Ensure nav-actions is visible on mobile for menu button */
    }
    
    /* Hide drawer menu system - replaced with bottom navigation */
    .drawer-menu,
    .drawer-overlay {
        display: none !important;
    }
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background: rgb(255, 255, 255);
}

/* Hero Section - Exact Uber Match */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../../images/photo.png') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 80px;
    text-align: center;
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding-top: 60px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 70vh;
        padding-top: 60px;
    }
}

.hero-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    padding: 32px 24px;
    text-align: center;
}

@media screen and (min-width: 600px) {
    .hero-container {
        gap: 36px;
        grid-template-columns: repeat(8, 1fr);
        padding: 40px 32px;
    }
}

@media screen and (min-width: 1136px) {
    .hero-container {
        gap: 36px;
        grid-template-columns: repeat(12, 1fr);
        padding: 48px;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

/* Hero content is now centered by default */

.hero-title {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Arial Black", sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    color: rgb(255, 255, 255);
    margin: 0 0 24px 0;
    text-align: center;
    width: 100%;
}

@media screen and (min-width: 600px) {
    .hero-title {
        font-size: 44px;
        line-height: 52px;
    }
}

@media screen and (min-width: 1136px) {
    .hero-title {
        font-size: 52px;
        line-height: 64px;
    }
}

.hero-subtitle {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: rgb(0, 0, 0);
    margin: 0 0 20px 0;
}

/* Booking Widget - Exact Uber Match */
.booking-widget {
    background: rgb(255, 255, 255);
    background-size: cover;
    background-color: rgb(255, 255, 255);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 500px;
    margin: 40px auto;
    position: relative;
    width: 100%;
}

.widget-header {
    background: rgb(255, 255, 255);
    border-bottom: none;
}

.tab-buttons {
    display: flex;
}

.tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 200ms ease;
}

.tab-btn.active {
    border-bottom-color: rgb(0, 0, 0);
}

.widget-content {
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 1;
}

.location-inputs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background-color: rgb(243, 243, 243);
    border-radius: 8px;
    border: 2px solid rgb(243, 243, 243);
    transition: all 200ms ease;
    cursor: text;
}

.input-wrapper:focus-within {
    border-color: rgb(0, 0, 0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.location-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0 12px;
    flex-shrink: 0;
}

.pickup-dot {
    background: rgb(0, 0, 0);
}

.destination-dot {
    background: rgb(94, 94, 94);
}

.location-input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: rgb(0, 0, 0);
    outline: none;
    padding: 10px 0 10px 36px;
}

.location-input::-moz-placeholder {
    color: rgb(94, 94, 94);
}

.location-input::placeholder {
    color: rgb(94, 94, 94);
}

.current-location-btn {
    background: none;
    border: none;
    color: rgb(94, 94, 94);
    cursor: pointer;
    padding: 12px;
    margin-right: 8px;
    transition: color 200ms ease;
}

.current-location-btn:hover {
    color: rgb(0, 0, 0);
}

.clear-location-btn {
    background: none;
    border: none;
    color: rgb(94, 94, 94);
    cursor: pointer;
    padding: 12px;
    margin-right: 4px;
    transition: color 200ms ease;
    font-size: 18px;
}

.clear-location-btn:hover {
    color: rgb(204, 0, 0);
}

.datetime-section {
    margin-bottom: 16px;
}

.datetime-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.date-input, .time-input {
    display: flex;
    align-items: center;
    background-color: rgb(243, 243, 243);
    border-radius: 8px;
    padding: 12px 16px;
    gap: 8px;
    border: 2px solid transparent;
    transition: all 200ms ease;
}

.date-input:focus-within, .time-input:focus-within {
    border-color: rgb(0, 0, 0);
}

.date-input input, .time-input input {
    border: none;
    background: none;
    flex: 1;
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    color: rgb(0, 0, 0);
    outline: none;
}

/* See Prices Button - Exact Uber Match */
.request-ride-btn {
    width: 100%;
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    border: none;
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    border-radius: 8px;
    padding: 16px 25px;
    min-height: 44px;
    cursor: pointer;
    transition: background-color 200ms ease;
    margin-top: 12px;
}

.request-ride-btn:hover {
    background-color: rgb(51, 51, 51);
}

.request-ride-btn:active {
    background-color: rgb(84, 84, 84);
}

/* Trip Options - Exact Uber Match */
.trip-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}

.trip-options {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-bottom: 16px;
}

/* Dropdown Styles */
.dropdown-wrapper {
    position: relative;
    flex: 1;
}

.dropdown-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background-color: rgb(243, 243, 243);
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    cursor: pointer;
    transition: all 200ms ease;
}

.dropdown-btn:hover {
    background-color: rgb(221, 221, 221);
}

.dropdown-btn i {
    font-size: 14px;
    color: rgb(94, 94, 94);
}

.dropdown-btn .fa-chevron-down {
    font-size: 12px;
    transition: transform 200ms ease;
}

.dropdown-btn.active .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(221, 221, 221);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 3001;
    display: none;
    overflow: hidden;
}

.dropdown-menu.show {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: absolute !important;
    top: calc(100% + 4px) !important;
    left: 0 !important;
    right: 0 !important;
    background: rgb(255, 255, 255) !important;
    border: 1px solid rgb(221, 221, 221) !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    z-index: 3001 !important;
    overflow: hidden !important;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgb(0, 0, 0);
    cursor: pointer;
    transition: background-color 200ms ease;
}

.dropdown-item:hover {
    background-color: rgb(243, 243, 243);
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    color: rgb(94, 94, 94);
}

/* Suggestions List Styles */
.suggestions-list {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: white !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    max-height: 300px !important;
    overflow-y: auto !important;
    z-index: 3000 !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: none !important;
}

.suggestions-list.show {
    display: block !important;
}

.suggestion-item {
    padding: 12px 16px !important;
    cursor: pointer !important;
    border-bottom: 1px solid #f3f3f3 !important;
    background: white !important;
    color: black !important;
}

.suggestion-item:hover {
    background: #f5f5f5 !important;
}

/* Autocomplete Styles - Legacy */
.autocomplete-list {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(221, 221, 221);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 300px;
    overflow-y: auto;
    z-index: 3002;
}

.autocomplete-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgb(248, 249, 250);
    border-bottom: 1px solid rgb(243, 243, 243);
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgb(94, 94, 94);
}

.autocomplete-header i {
    color: rgb(0, 0, 0);
    font-size: 12px;
}

.autocomplete-footer {
    padding: 8px 16px;
    background: rgb(248, 249, 250);
    border-top: 1px solid rgb(243, 243, 243);
    text-align: right;
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 12px;
    color: rgb(94, 94, 94);
}

.autocomplete-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    cursor: pointer;
    transition: background-color 200ms ease;
    border-bottom: 1px solid rgb(243, 243, 243);
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover {
    background-color: rgb(243, 243, 243);
}

.autocomplete-item i {
    color: rgb(94, 94, 94);
    font-size: 16px;
}

.autocomplete-item.popular-destination {
    background: rgb(249, 250, 251);
}

.autocomplete-item.popular-destination:hover {
    background: rgb(243, 243, 243);
}

.autocomplete-item.popular-destination i {
    color: rgb(0, 0, 0);
}

.autocomplete-text {
    flex: 1;
}

.autocomplete-main {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    margin-bottom: 4px;
}

.autocomplete-sub {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgb(94, 94, 94);
}

/* Notification Styles */
.notification {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    padding: 16px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 4001;
    transition: transform 300ms ease;
}

.notification.show {
    transform: translateX(-50%) translateY(0);
}

.notification.error {
    background: rgb(204, 0, 0);
}

.notification.success {
    background: rgb(39, 158, 80);
}

.notification i {
    font-size: 18px;
}

/* Recent Activity Section - Exact Uber Match */
.recent-activity-section {
    padding: 32px 24px;
    background: rgb(255, 255, 255);
    text-align: center;
}

@media screen and (min-width: 600px) {
    .recent-activity-section {
        padding: 40px 32px;
    }
}

@media screen and (min-width: 1136px) {
    .recent-activity-section {
        padding: 48px;
    }
}

.recent-activity {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px;
    background: rgb(255, 255, 255);
    border-radius: 8px;
    border: 1px solid rgb(243, 243, 243);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.recent-activity h3 {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Arial Black", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    margin: 0 0 12px 0;
}

.activity-content p {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: rgb(94, 94, 94);
    margin: 0 0 16px 0;
}

.btn-login-activity {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    border: none;
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    padding: 12px 16px;
    cursor: pointer;
    margin-bottom: 12px;
    transition: background-color 200ms ease;
}

.btn-login-activity:hover {
    background-color: rgb(51, 51, 51);
}

.signup-text {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 14px;
    color: rgb(94, 94, 94);
    margin: 0;
}

.signup-text a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    grid-column: 1 / -1;
    display: none;
}

@media screen and (min-width: 1136px) {
    .hero-visual {
        grid-column: span 7;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.phone-mockup {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.phone-screen {
    width: 280px;
    height: 560px;
    background: rgb(0, 0, 0);
    border-radius: 32px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.app-interface {
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%),
                linear-gradient(-45deg, #f0f0f0 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, #f0f0f0 75%),
                linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-pin {
    font-size: 2rem;
    color: rgb(0, 0, 0);
    animation: bounce 2s infinite;
}

/* Suggestions Section - Exact Uber Match */
.suggestions {
    padding: 32px 24px;
    background: rgb(255, 255, 255);
    text-align: center;
}

@media screen and (min-width: 600px) {
    .suggestions {
        padding: 40px 32px;
    }
}

@media screen and (min-width: 1136px) {
    .suggestions {
        padding: 48px;
    }
}

.suggestions .container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 24px;
}

.section-header h2 {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Arial Black", sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    color: rgb(0, 0, 0);
    margin: 0;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

@media screen and (min-width: 600px) {
    .suggestions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media screen and (min-width: 1136px) {
    .suggestions-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 36px;
    }
}

.suggestion-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 32px 24px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(243, 243, 243);
    border-radius: 8px;
    transition: all 200ms ease;
}

.suggestion-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.suggestion-icon {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
}

.suggestion-icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    border-radius: 8px;
}

.suggestion-content h3 {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Arial Black", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    margin: 0 0 8px 0;
}

.suggestion-content p {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: rgb(94, 94, 94);
    margin: 0 0 12px 0;
}

.suggestion-link {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    text-decoration: none;
    background-image: linear-gradient(transparent calc(100% - 1px), rgb(0, 0, 0) 1px),
                      linear-gradient(transparent calc(100% - 1px), rgb(203, 203, 203) 1px);
    background-position: 0px bottom, 0px bottom;
    background-repeat: no-repeat;
    background-size: 0% 6px, 100% 6px;
    padding-bottom: 6px;
    transition: 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.suggestion-link:hover {
    background-size: 100% 6px, 100% 6px;
}

/* Plan for Later Section - Exact Uber Match */
.plan-later {
    padding: 64px 24px;
    background: rgb(243, 243, 243);
    text-align: center;
}

@media screen and (min-width: 600px) {
    .plan-later {
        padding: 64px 32px;
    }
}

@media screen and (min-width: 1136px) {
    .plan-later {
        padding: 48px;
    }
}

.plan-content h2 {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Arial Black", sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    color: rgb(0, 0, 0);
    margin: 0 0 20px 0;
}

.plan-tabs {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    justify-content: center;
}

.plan-tab {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(221, 221, 221);
    padding: 12px 24px;
    border-radius: 25px;
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    cursor: pointer;
    transition: all 200ms ease;
}

.plan-tab.active {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    border-color: rgb(0, 0, 0);
}

.plan-info h3 {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Arial Black", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    margin: 0 0 20px 0;
}

.plan-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media screen and (min-width: 1136px) {
    .plan-form {
        grid-template-columns: 1fr 1fr;
    }
}

.datetime-selector label {
    display: block;
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    margin-bottom: 16px;
}

.date-time-inputs {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.date-time-inputs input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgb(243, 243, 243);
    border-radius: 8px;
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    outline: none;
}

.btn-next {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    border: none;
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    padding: 12px 24px;
    cursor: pointer;
}

.benefits h4 {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Arial Black", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    margin: 0 0 16px 0;
}

.benefits ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.benefits li {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    color: rgb(94, 94, 94);
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.benefits li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgb(0, 0, 0);
}

.terms-link {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    text-decoration: underline;
}

/* Driver Earnings Section - Exact Uber Match */
.driver-earnings {
    padding: 32px 24px;
    background: rgb(255, 255, 255);
    text-align: center;
}

@media screen and (min-width: 600px) {
    .driver-earnings {
        padding: 40px 32px;
    }
}

@media screen and (min-width: 1136px) {
    .driver-earnings {
        padding: 48px;
    }
}

.driver-content {
    max-width: 600px;
    margin: 0 auto;
}

.driver-content h2 {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Arial Black", sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    color: rgb(0, 0, 0);
    margin: 0 0 16px 0;
}

.driver-content p {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: rgb(94, 94, 94);
    margin: 0 0 24px 0;
}

.btn-signup-earn {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    border: none;
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    padding: 14px 24px;
    cursor: pointer;
    margin-bottom: 16px;
    transition: background-color 200ms ease;
}

.btn-signup-earn:hover {
    background-color: rgb(51, 51, 51);
}

.signin-text {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 14px;
    color: rgb(94, 94, 94);
    margin: 0;
}

.signin-text a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-weight: 500;
}

/* Business Section - Exact Uber Match */
.business-section {
    padding: 32px 24px;
    background: rgb(243, 243, 243);
    text-align: center;
}

@media screen and (min-width: 600px) {
    .business-section {
        padding: 40px 32px;
    }
}

@media screen and (min-width: 1136px) {
    .business-section {
        padding: 48px;
    }
}

.business-content {
    max-width: 600px;
    margin: 0 auto;
}

.business-content h2 {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Arial Black", sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    color: rgb(0, 0, 0);
    margin: 0 0 16px 0;
}

.business-content p {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: rgb(94, 94, 94);
    margin: 0 0 24px 0;
}

.btn-get-started {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    border: none;
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    padding: 14px 24px;
    cursor: pointer;
    margin-right: 16px;
    transition: background-color 200ms ease;
}

.btn-get-started:hover {
    background-color: rgb(51, 51, 51);
}

.solutions-link {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    text-decoration: underline;
}

/* Membership Section - Exact Uber Match */
.membership {
    padding: 32px 0;
    background: rgb(248, 249, 250);
    text-align: center;
}

@media screen and (min-width: 600px) {
    .membership {
        padding: 32px 0;
    }
}

@media screen and (min-width: 1136px) {
    .membership {
        padding: 32px 0;
    }
}

.membership-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.membership-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.membership-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    -o-object-fit: contain;
       object-fit: contain;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.membership-image img:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.membership-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.membership-text h2 {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Arial Black", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: rgb(0, 0, 0);
    margin: 0 0 24px 0;
}

.membership-text p {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgb(94, 94, 94);
    margin: 0 0 16px 0;
}

.membership-text .price {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: rgb(0, 0, 0);
    margin: 0 0 32px 0;
    padding: 16px 24px;
    background: rgb(255, 255, 255);
    border-radius: 12px;
    border: 2px solid rgb(0, 0, 0);
    display: inline-block;
}

.btn-signup-save {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    border: none;
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    padding: 16px 32px;
    cursor: pointer;
    transition: all 200ms ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-signup-save::after {
    content: "→";
    font-size: 1.2rem;
    transition: transform 200ms ease;
}

.btn-signup-save:hover::after {
    transform: translateX(4px);
}

.btn-signup-save:hover {
    background-color: rgb(51, 51, 51);
}

/* App Download Section - Exact Uber Match */
.app-download {
    padding: 64px 24px;
    background: rgb(243, 243, 243);
    text-align: center;
}

@media screen and (min-width: 600px) {
    .app-download {
        padding: 64px 32px;
    }
}

@media screen and (min-width: 1136px) {
    .app-download {
        padding: 48px;
    }
}

.app-content h2 {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Arial Black", sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    color: rgb(0, 0, 0);
    margin: 0 0 20px 0;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.download-link {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    text-decoration: underline;
}

/* Footer - Exact Uber Match */
.footer {
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    padding: 64px 24px 32px;
    text-align: center;
}

@media screen and (min-width: 600px) {
    .footer {
        padding: 64px 32px 32px;
    }
}

@media screen and (min-width: 1136px) {
    .footer {
        padding: 64px 64px 32px;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 20px;
}

@media screen and (min-width: 1136px) {
    .footer-content {
        grid-template-columns: 1fr 3fr;
        gap: 64px;
    }
}

.footer-brand .brand-name {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Arial Black", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: rgb(0, 0, 0);
    margin-bottom: 16px;
}

.footer-brand p {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    color: rgb(94, 94, 94);
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media screen and (min-width: 1136px) {
    .footer-links {
        grid-template-columns: repeat(4, 1fr);
    }
}

.link-group h4 {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    margin: 0 0 16px 0;
}

.link-group a {
    display: block;
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 14px;
    color: rgb(94, 94, 94);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 200ms ease;
}

.link-group a:hover {
    color: rgb(0, 0, 0);
}

.footer-bottom {
    border-top: 1px solid rgb(243, 243, 243);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 14px;
    color: rgb(94, 94, 94);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 14px;
    color: rgb(94, 94, 94);
    text-decoration: none;
    transition: color 200ms ease;
}

.footer-legal a:hover {
    color: rgb(0, 0, 0);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media screen and (max-width: 599px) {
    .nav-links, .btn-help {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .suggestions-grid {
        grid-template-columns: 1fr;
    }
}

/* Confirmation Dialog Styles */
.confirmation-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dialog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.dialog-content {
    position: relative;
    background: rgb(255, 255, 255);
    border-radius: 12px;
    padding: 32px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.dialog-content h3 {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Arial Black", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: rgb(0, 0, 0);
    margin: 0 0 16px 0;
}

.dialog-content p {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: rgb(94, 94, 94);
    margin: 0 0 24px 0;
}

.dialog-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.dialog-btn {
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 200ms ease;
}

.dialog-btn.cancel {
    background: rgb(243, 243, 243);
    color: rgb(0, 0, 0);
}

.dialog-btn.cancel:hover {
    background: rgb(221, 221, 221);
}

.dialog-btn.confirm {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.dialog-btn.confirm:hover {
    background: rgb(51, 51, 51);
}

/* Modal Styles - consolidated single definition */
.modal {
    display: none !important;
    position: fixed !important;
    z-index: 2000 !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(4px);
}

/* Show modal when it has the 'show' class only - CRITICAL: No conflicting selectors */
.modal.show {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.modal-content {
    background-color: rgb(255, 255, 255) !important;
    margin: 10% auto !important;
    padding: 32px 24px !important;
    border-radius: 8px !important;
    width: 90% !important;
    max-width: 480px !important;
    position: relative !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
    z-index: 2001 !important;
}

.close {
    position: absolute;
    top: 16px;
    right: 24px;
    color: rgb(166, 166, 166);
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: color 200ms ease;
}

.close:hover {
    color: rgb(0, 0, 0);
}

.modal h2 {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Arial Black", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    margin: 0 0 8px 0;
}

.modal p {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    color: rgb(94, 94, 94);
    margin: 0 0 24px 0;
}

.phone-input-container {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.country-code {
    padding: 12px 16px;
    border: 2px solid rgb(243, 243, 243);
    border-radius: 8px;
    background: rgb(255, 255, 255);
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    outline: none;
    transition: border-color 200ms ease;
}

.country-code:focus {
    border-color: rgb(0, 0, 0);
}

.phone-input-container input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgb(243, 243, 243);
    border-radius: 8px;
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    outline: none;
    transition: border-color 200ms ease;
}

.phone-input-container input:focus {
    border-color: rgb(0, 0, 0);
}

.otp-input-container {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
}

.otp-digit {
    width: 48px;
    height: 48px;
    text-align: center;
    border: 2px solid rgb(243, 243, 243);
    border-radius: 8px;
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: border-color 200ms ease;
}

.otp-digit:focus {
    border-color: rgb(0, 0, 0);
}

.btn-primary {
    width: 100%;
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    border: none;
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    padding: 14px 20px;
    cursor: pointer;
    transition: background-color 200ms ease;
}

.btn-primary:hover {
    background-color: rgb(51, 51, 51);
}

.resend-text {
    text-align: center;
    margin-top: 16px;
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 14px;
    color: rgb(94, 94, 94);
}

.resend-text a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-weight: 500;
}

.resend-text a:hover {
    text-decoration: underline;
}

/* Dropdown Modal Styles */
.dropdown-modal-content {
    max-width: 400px;
    margin: 15% auto;
}

.dropdown-modal-options {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.dropdown-modal-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 200ms ease;
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 16px;
    color: rgb(0, 0, 0);
    margin-bottom: 4px;
}

.dropdown-modal-option:hover {
    background-color: rgb(243, 243, 243);
}

.dropdown-modal-option:last-child {
    margin-bottom: 0;
}

.dropdown-modal-option i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(94, 94, 94);
}

.dropdown-modal-option .option-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-modal-option .option-title {
    font-weight: 500;
    color: rgb(0, 0, 0);
}

.dropdown-modal-option .option-subtitle {
    font-size: 14px;
    color: rgb(94, 94, 94);
}

.dropdown-close {
    position: absolute;
    top: 16px;
    right: 20px;
    color: rgb(94, 94, 94);
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.dropdown-close:hover {
    color: rgb(0, 0, 0);
}

/* Driver Section Styles */
.driver-earnings {
    padding: 64px 0;
    background-color: rgb(255, 255, 255);
}

.driver-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.driver-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.driver-image img {
    width: 100%;
    height: auto;
    max-width: 480px;
    border-radius: 8px;
}

.driver-text {
}

.driver-text h2 {
    font-family: UberMove, system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 56px;
    color: rgb(0, 0, 0);
    margin-bottom: 24px;
}

.driver-text p {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 18px;
    line-height: 24px;
    color: rgb(94, 94, 94);
    margin-bottom: 20px;
}

/* Business Section Styles */
.business-section {
    padding: 64px 0;
    background-color: rgb(248, 248, 248);
}

.business-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.business-images {
    display: flex;
    justify-content: center;
    align-items: center;
}

.business-images img {
    width: 100%;
    height: auto;
    max-width: 480px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    -o-object-fit: cover;
       object-fit: cover;
}

.business-text {
}

.business-text h2 {
    font-family: UberMove, system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 56px;
    color: rgb(0, 0, 0);
    margin-bottom: 24px;
}

.business-text p {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 18px;
    line-height: 24px;
    color: rgb(94, 94, 94);
    margin-bottom: 20px;
}

/* Medical Transportation Section */
.medical-transport {
    padding: 32px 0;
    background: white;
    text-align: center;
}

.medical-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.medical-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.medical-image img {
    width: 100%;
    height: auto;
    max-width: 480px;
    border-radius: 12px;
    -o-object-fit: cover;
       object-fit: cover;
}

.medical-text h2 {
    color: #1d1d1d;
    margin-bottom: 16px;
    font-size: 2rem;
}

.medical-text p {
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
    font-size: 1rem;
}

.medical-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
    justify-items: center;
    text-align: center;
}

.medical-features .feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 0;
    text-align: center;
}

.medical-features .feature i {
    color: #000;
    font-size: 1.2rem;
    width: 24px;
    flex-shrink: 0;
}

.medical-features .feature span {
    color: #1d1d1d;
    font-weight: 500;
    font-size: 0.95rem;
}

.btn-medical {
    background: #000;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-medical:hover {
    background: #333;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .driver-content,
    .business-content,
    .cab-rides-content,
    .medical-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    
    .driver-text h2,
    .business-text h2,
    .cab-rides-text h2 {
        font-size: 36px;
        line-height: 44px;
    }
    
    .business-images,
    .cab-rides-image {
        justify-content: center;
    }
    
    .cab-features {
        grid-template-columns: 1fr;
        text-align: left;
        max-width: 300px;
        margin: 0 auto 30px;
    }
    
    .cab-rides-text p {
        font-size: 16px;
    }
    
    .medical-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    
    .medical-features {
        grid-template-columns: 1fr;
        gap: 12px;
        justify-items: center;
        text-align: center;
    }
    
    .membership-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
}
/* General Cab Rides Section */
.general-cab-rides {
    padding: 64px 0;
    background-color: #f7f7f7;
}

.cab-rides-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cab-rides-text {
    text-align: center;
}

.cab-rides-text h2 {
    font-family: UberMove, system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 56px;
    color: rgb(0, 0, 0);
    margin-bottom: 24px;
}

.cab-rides-text p {
    font-family: "Nordic", "Futura", "Century Gothic", "Avant Garde", "Helvetica Neue", sans-serif;
    font-size: 18px;
    line-height: 24px;
    color: rgb(94, 94, 94);
    margin-bottom: 20px;
}

.cab-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cab-features .feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cab-features .feature i {
    color: #276ef1;
    font-size: 20px;
}

.cab-features .feature span {
    font-size: 16px;
    color: #333;
}

.btn-book-cab {
    background-color: #000;
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-book-cab:hover {
    background-color: #333;
}

.cab-rides-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cab-rides-image img {
    width: 100%;
    height: 400px;
    max-width: 480px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    -o-object-fit: cover;
       object-fit: cover;
}

/* User Profile and Session Management Styles */
.user-profile {
    position: relative;
    display: inline-block;
    margin-left: 15px;
}

.user-menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #333;
}

.user-menu-btn:hover {
    background: #f8f9fa;
    border-color: #276ef1;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    -o-object-fit: cover;
       object-fit: cover;
    border: 2px solid #ddd;
}

.user-name {
    font-weight: 500;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    z-index: 1000;
    margin-top: 5px;
}

.user-dropdown a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.user-dropdown a:hover {
    background-color: #f8f9fa;
}

.user-dropdown i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
    color: #666;
}

.dropdown-divider {
    height: 1px;
    background-color: #eee;
    margin: 5px 0;
}

/* Dashboard Styles */
.dashboard-content {
    max-width: 800px;
    margin: 0 auto;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: linear-gradient(135deg, #276ef1, #1e5bc7);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(39, 110, 241, 0.2);
}

.stat-card h3 {
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.stat-number {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

.recent-rides {
    margin: 30px 0;
}

.recent-rides h3 {
    margin-bottom: 20px;
    color: #333;
}

.rides-list {
    space: 15px;
}

.ride-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #276ef1;
}

.ride-info p {
    margin: 2px 0;
    font-size: 14px;
    color: #666;
}

.ride-info strong {
    color: #333;
}

.ride-amount {
    font-size: 18px;
    font-weight: bold;
    color: #276ef1;
}

.dashboard-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

/* Profile Management Styles */
.profile-content {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #276ef1;
    box-shadow: 0 0 0 3px rgba(39, 110, 241, 0.1);
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.password-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.password-section h3 {
    margin-bottom: 20px;
    color: #333;
}

/* Remember Me Checkbox */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 15px 0;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

/* Message Styles for Forms */
.form-message {
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design for User Profile */
@media (max-width: 768px) {
    .user-name {
        display: none;
    }
    
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ride-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .dashboard-actions {
        flex-direction: column;
    }
    
    .form-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
}

/* ============================================ */
/* VIP MEMBERSHIP STYLES - FRONT PAGE INTEGRATION */
/* ============================================ */

/* VIP Promotion Banner */
.vip-promotion-banner {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    padding: 20px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vip-promotion-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.vip-promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.vip-promo-text h3 {
    margin: 0;
    color: #333;
    font-size: 24px;
    font-weight: 700;
}

.vip-promo-text p {
    margin: 5px 0 0 0;
    color: #555;
    font-size: 16px;
}

.btn-vip-promo {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.btn-vip-promo:hover {
    background-color: rgb(51, 51, 51);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-vip-promo:active {
    transform: translateY(0px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Membership Highlights Grid */
.membership-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255,255,255,0.9);
    border-radius: 8px;
    font-size: 14px;
    transition: transform 0.2s ease;
}

.highlight-item:hover {
    transform: translateY(-2px);
}

.highlight-item strong {
    color: #333;
}

/* Medical Membership Options */
.medical-membership-options {
    margin: 20px 0;
    display: grid;
    gap: 15px;
}

.membership-option {
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-left: 4px solid #007bff;
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    line-height: 1.4;
}

.membership-option strong {
    color: #007bff;
    font-weight: 600;
}

/* Business Elite Benefits */
.business-elite-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.business-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.business-benefit:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(5px);
}

.business-benefit i {
    color: #007bff;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.business-benefit strong {
    color: #333;
}

.business-elite-price {
    margin: 15px 0;
    padding: 10px;
    background: rgba(0,123,255,0.1);
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
}

.business-elite-price strong {
    color: #007bff;
}

/* Enhanced Medical Features Grid */
.medical-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.medical-features .feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.medical-features .feature:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.medical-features .feature i {
    color: #28a745;
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.medical-features .feature span {
    font-size: 14px;
    font-weight: 500;
}

/* Responsive Design for VIP Elements */
@media (max-width: 768px) {
    .vip-promo-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .vip-promo-text h3 {
        font-size: 20px;
    }
    
    .membership-highlights {
        grid-template-columns: 1fr;
        padding: 15px;
    }
    
    .business-elite-benefits {
        grid-template-columns: 1fr;
    }
    
    .medical-features {
        grid-template-columns: 1fr;
    }
    
    .btn-vip-promo {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .vip-promotion-banner {
        padding: 15px 0;
    }
    
    .vip-promo-text h3 {
        font-size: 18px;
    }
    
    .vip-promo-text p {
        font-size: 14px;
    }
    
    .highlight-item {
        font-size: 12px;
        padding: 8px;
    }
    
    .membership-option {
        padding: 12px;
        font-size: 13px;
    }
    
    .business-benefit {
        font-size: 13px;
        padding: 10px;
    }
}

/* Animation for membership elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.membership-highlights .highlight-item,
.business-elite-benefits .business-benefit,
.medical-features .feature {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.membership-highlights .highlight-item:nth-child(1) { animation-delay: 0.1s; }
.membership-highlights .highlight-item:nth-child(2) { animation-delay: 0.2s; }
.membership-highlights .highlight-item:nth-child(3) { animation-delay: 0.3s; }
.membership-highlights .highlight-item:nth-child(4) { animation-delay: 0.4s; }

/* ✅ CRITICAL: Drawer Menu Visibility Control - Fix Menu Content Issues */
/* Ensure proper menu switching between guest and authenticated states */
#drawerUserProfile {
    display: none; /* Default hidden */
}

#drawerGuestMenu {
    display: block; /* Default visible for guests */
}

#drawerUserMenu {
    display: none; /* Default hidden */
}

/* When authenticated, JavaScript will set display: flex for profile, display: block for userMenu, display: none for guestMenu */
/* Force visibility states to prevent conflicts */
.drawer-menu .user-profile[style*="display: flex"] {
    display: flex !important;
}

.drawer-menu .user-profile[style*="display: none"] {
    display: none !important;
}

#drawerGuestMenu[style*="display: block"] {
    display: block !important;
}

#drawerGuestMenu[style*="display: none"] {
    display: none !important;
}

#drawerUserMenu[style*="display: block"] {
    display: block !important;
}

#drawerUserMenu[style*="display: none"] {
    display: none !important;
}

/* ✅ CRITICAL: Mobile Menu Button Consistency Across All Pages */
/* Ensure mobile menu button appears properly in header on all pages */
.mobile-menu-btn {
    /* Override any inline styles that might be inconsistent */
    position: relative !important;
    z-index: 1001 !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 8px !important;
    flex-direction: column !important;
    gap: 4px !important;
}

.mobile-menu-btn span {
    display: block !important;
    width: 20px !important;
    height: 2px !important;
    background: white !important; /* Ensure visibility on dark header */
    transition: 0.3s !important;
}

/* Ensure nav-container has proper flex layout for mobile menu positioning */
.nav-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

/* Force proper responsive behavior */
@media screen and (min-width: 768px) {
    .mobile-menu-btn {
        display: none !important; /* Hidden on desktop */
    }
    
    .nav-menu {
        display: flex !important; /* Show desktop menu */
    }
}

@media screen and (max-width: 767px) {
    .mobile-menu-btn {
        display: none !important; /* Hide mobile hamburger menu - using bottom nav instead */
    }
    
    .nav-menu {
        display: none !important; /* Hide desktop menu */
    }
    
    .nav-links {
        display: none !important; /* Hide desktop navigation links */
    }
    
    /* Hide drawer menu system completely - replaced with bottom navigation */
    .drawer-menu,
    .drawer-overlay {
        display: none !important;
    }
}

/* ✅ DRAWER MENU STYLES - CRITICAL FIX FOR BOTTOM NAVIGATION ISSUE */
/* These styles were missing, causing navigation items to appear in bottom left corner */

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.drawer-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100%;
    background: white;
    z-index: 2000;
    transition: left 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.drawer-menu.active {
    left: 0;
}

.drawer-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    position: relative;
    background: #f8f9fa;
    flex-shrink: 0;
}

.drawer-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.drawer-close-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: #333;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 40px; /* Space for close button */
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    -o-object-fit: cover;
       object-fit: cover;
    border: 2px solid #e0e0e0;
}

.user-info {
    display: flex;
    flex-direction: column;
    min-width: 0; /* Allow text truncation */
}

.user-name {
    font-weight: 600;
    font-size: 16px;
    color: #333;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-email {
    font-size: 14px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.drawer-auth-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
    padding-right: 40px; /* Space for close button */
}

.drawer-auth-buttons .btn-login,
.drawer-auth-buttons .btn-signup {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 6px;
    font-weight: 500;
}

.drawer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.drawer-menu-item {
    border-bottom: 1px solid #f0f0f0;
}

.drawer-menu-item:last-child {
    border-bottom: none;
}

.drawer-menu-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
    font-size: 16px;
    font-weight: 500;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.drawer-menu-link:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

.drawer-menu-link i {
    width: 20px;
    text-align: center;
    color: #666;
    font-size: 18px;
}

.drawer-menu-link:hover i {
    color: #007bff;
}

.drawer-menu-item.active .drawer-menu-link {
    background-color: #e3f2fd;
    color: #1976d2;
    font-weight: 600;
}

.drawer-menu-item.active .drawer-menu-link i {
    color: #1976d2;
}

/* Responsive drawer menu */
@media screen and (max-width: 480px) {
    .drawer-menu {
        width: 280px;
        left: -280px;
    }
    
    .drawer-header {
        padding: 16px;
    }
    
    .drawer-menu-link {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .user-name {
        font-size: 15px;
    }
    
    .user-email {
        font-size: 13px;
    }
}

/* Prevent body scroll when drawer is open - but only when drawer is actually visible */
body.drawer-open:has(.drawer-menu.show) {
    overflow: hidden;
}

/* Fallback for browsers that don't support :has() - only disable scroll when overlay is visible */
@supports not (selector(:has(*))) {
    body.drawer-open .drawer-overlay {
        /* Only apply overflow hidden when overlay is actually showing */
    }
    
    body.drawer-open .drawer-overlay:not([style*="display: none"]) ~ body {
        overflow: hidden;
    }
}

/* Ensure scroll is always available when drawer is not actually showing */
body:not(.drawer-open) {
    overflow: auto !important;
}

/* Additional safeguard - remove overflow hidden if no drawer menu is visible */
body:not(:has(.drawer-menu.show)):not(:has(.drawer-overlay[style*="display: block"])) {
    overflow: auto !important;
}


