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

/* VIP Promotion Banner Styles */
.vip-promotion-banner {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%) !important;
    padding: 20px 0 !important;
    margin: 40px 0 !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3) !important;
    display: block !important;
    visibility: visible !important;
}

.vip-promo-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.vip-promo-text h3 {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

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

.btn-vip-promo {
    background: #333;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-vip-promo:hover {
    background: #222;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .vip-promo-content {
        text-align: center;
        flex-direction: column;
    }
    
    .vip-promo-text h3 {
        font-size: 20px;
    }
    
    .vip-promo-text p {
        font-size: 14px;
    }
}

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

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

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

.business-images img {
    width: 100%;
    height: auto;
    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;
    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 */
.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;
}

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

.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: 9999 !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;
    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;
}

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

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

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

.footer-logo {
    height: 60px;
    width: auto;
    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: 1136px) {
    .nav-links {
        display: flex;
        align-items: center;
        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;
    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;
    cursor: pointer;
    transition: background-color 200ms ease;
}

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

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

@media screen and (min-width: 1136px) {
    .mobile-menu-btn {
        display: none;
    }
}

.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: 60vh;
    display: flex;
    position: relative;
    padding-top: 80px;
}

.hero-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    gap: 36px;
    grid-template-columns: repeat(4, 1fr);
    padding: 32px 24px;
}

@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 {
    grid-column: 1 / -1;
    display: grid;
}

@media screen and (min-width: 1136px) {
    .hero-content {
        grid-column: span 5;
    }
}

.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;
}

@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: 400px;
    margin-top: 28px;
    position: relative;
}

.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: 4px;
    margin-bottom: 16px;
}

.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::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: 14px 25px;
    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: 10000;
    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: 10000 !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: 9999 !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: 10000;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.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);
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on iOS */
    min-height: 44px; /* iOS minimum touch target */
}

.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: 4000;
    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);
}

@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);
}

.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);
}

@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;
}

@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%;
    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);
}

@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;
}

.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);
}

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

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

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

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

.membership-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    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: left;
}

.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;
}

@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;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .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 - keeping existing modal functionality */
.modal {
    display: none !important;
    position: fixed !important;
    z-index: 2000 !important;
    left: 0;
    top: 0;
    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 or inline style */
.modal.show,
.modal[style*="display: block"] {
    display: block !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);
    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;
}

.medical-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

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

.medical-image img {
    width: 100%;
    height: auto;
    max-width: 480px;
    border-radius: 12px;
    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;
}

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

.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 {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .medical-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .membership-content {
        grid-template-columns: 1fr;
        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);
    object-fit: cover;
}

