/* CSS Variables for consistent theming */
:root {
    --primary-color: #00b4d8;
    --primary-dark: #0096c7;
    --primary-light: #48cae4;
    --secondary-color: #ffd60a;
    --accent-color: #ff6b35;
    --text-dark: #1a1a1a;
    --text-light: #f8f9fa;
    --text-gray: #6c757d;
    --bg-light: #ffffff;
    --bg-gray: #f8f9fa;
    --bg-dark: #212529;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
    --gradient-3: linear-gradient(135deg, #ffd60a 0%, #ffc300 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
}

/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}

/* Book Now Button in Navigation */
.nav-links .btn-primary {
    padding: 0.875rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    background: var(--gradient-2);
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 180, 216, 0.3);
    transition: all 0.3s ease;
}

.nav-links .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.5);
    background: linear-gradient(135deg, #48cae4 0%, #00b4d8 100%);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-2);
    color: var(--text-light);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0077b6 0%, #00b4d8 50%, #48cae4 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,64L48,58.7C96,53,192,43,288,48C384,53,480,75,576,80C672,85,768,75,864,58.7C960,43,1056,21,1152,21.3C1248,21,1344,43,1392,53.3L1440,64L1440,120L1392,120C1344,120,1248,120,1152,120C1056,120,960,120,864,120C768,120,672,120,576,120C480,120,384,120,288,120C192,120,96,120,48,120L0,120Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.gradient-text {
    background: linear-gradient(135deg, #ffd60a 0%, #ffc300 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-label {
    font-size: 1rem;
    opacity: 0.9;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
}

.price-period {
    font-size: 1.25rem;
    opacity: 0.8;
}

.price-note {
    font-size: 0.8125rem;
    opacity: 0.75;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.02em;
    margin-top: 0.25rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--text-light);
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    opacity: 0.7;
}

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

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--bg-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Vehicles Section */
.vehicles {
    padding: 6rem 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.vehicle-card {
    position: relative;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.vehicle-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-3);
    color: var(--text-dark);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.vehicle-badge-blue {
    background: var(--gradient-2);
    color: var(--text-light);
}

.vehicle-image {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
    transition: var(--transition);
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.05);
}

.vehicle-info {
    padding: 2rem;
}

.vehicle-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.vehicle-edition {
    font-size: 0.9375rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-style: italic;
}

.vehicle-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.experience-highlights {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.experience-highlights h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.vehicle-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.vehicle-features li {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.vehicle-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 2px solid var(--bg-gray);
}

.vehicle-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.price-prefix {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.vehicle-price .price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.vehicle-price .price-period {
    font-size: 1.25rem;
    color: var(--text-gray);
}

/* Pricing Tiers Section */
.pricing-tiers {
    padding: 5rem 0;
    background: var(--bg-gray);
}

.pricing-table-wrapper {
    max-width: 900px;
    margin: 0 auto 2rem;
    overflow-x: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.pricing-table {
    width: 100%;
    background: var(--bg-light);
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.pricing-table thead {
    background: var(--gradient-2);
    color: var(--text-light);
}

.pricing-table th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-table tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: var(--transition);
}

.pricing-table tbody tr:hover {
    background: #f8f9fa;
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table td {
    padding: 1rem 1.5rem;
    color: var(--text-dark);
}

.pricing-table td strong {
    font-weight: 600;
}

.featured-row {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.08) 0%, rgba(72, 202, 228, 0.08) 100%);
    border: 2px solid var(--primary-light);
}

.featured-row:hover {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.12) 0%, rgba(72, 202, 228, 0.12) 100%);
}

.best-value {
    display: inline-block;
    font-size: 0.8125rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-left: 0.5rem;
}

.discount-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: #e9ecef;
    color: var(--text-gray);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.discount-5 {
    background: rgba(255, 214, 10, 0.2);
    color: #d4a500;
}

.discount-10 {
    background: rgba(255, 214, 10, 0.3);
    color: #c49500;
}

.discount-15 {
    background: rgba(255, 107, 53, 0.2);
    color: #e85a1f;
}

.discount-18 {
    background: rgba(255, 107, 53, 0.25);
    color: #d94e12;
}

.discount-22 {
    background: rgba(255, 107, 53, 0.3);
    color: #c73e05;
}

.discount-25 {
    background: var(--gradient-3);
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.rate-cell {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--primary-color);
}

.total-cell {
    font-weight: 600;
    color: var(--text-dark);
}

.example-text {
    font-size: 0.8125rem;
    color: var(--text-gray);
    font-weight: 400;
}

.pricing-note {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 1rem 1.5rem;
    background: rgba(0, 180, 216, 0.08);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.pricing-note p {
    color: var(--text-dark);
    font-size: 0.9375rem;
    margin: 0;
}

/* Price Calculator */
.price-calculator {
    margin-top: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-light);
}

.price-calc-header {
    background: var(--gradient-2);
    padding: 1rem 1.5rem;
    color: var(--text-light);
}

.price-calc-header h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.price-calc-body {
    padding: 1.5rem;
}

.price-calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #dee2e6;
}

.price-calc-row:last-child {
    border-bottom: none;
}

.price-calc-row span:first-child {
    color: var(--text-gray);
    font-size: 0.9375rem;
}

.price-calc-row strong,
.price-calc-row span:last-child {
    font-weight: 600;
    color: var(--text-dark);
}

.price-calc-subtotal {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 2px solid #dee2e6;
}

.price-calc-total {
    background: var(--primary-light);
    padding: 1rem;
    margin: 0 -1.5rem -1.5rem;
    border-top: 2px solid var(--primary-color);
}

.price-calc-total span:first-child {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.price-calc-total strong {
    font-size: 1.75rem;
    color: var(--primary-dark);
}

.price-calc-savings {
    background: var(--gradient-3);
    padding: 1rem;
    margin: 1rem -1.5rem 0;
    text-align: center;
    font-size: 1rem;
    color: var(--text-dark);
    border-radius: var(--border-radius);
}

.price-calc-savings strong {
    font-size: 1.25rem;
}

.discount-text {
    color: var(--accent-color);
}

/* Driver Service Section */
.driver-service {
    padding: 6rem 0;
    background: var(--bg-light);
}

.driver-service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.driver-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.driver-features {
    display: grid;
    gap: 1.5rem;
}

.driver-feature-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.driver-feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1) 0%, rgba(72, 202, 228, 0.1) 100%);
    border-radius: var(--border-radius);
}

.driver-feature-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.driver-feature-content p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.driver-service-pricing {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.driver-price-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 2px solid #e9ecef;
    transition: var(--transition);
    position: relative;
}

.driver-price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.driver-price-featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.driver-price-featured:hover {
    box-shadow: var(--shadow-xl);
}

.driver-popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-3);
    color: var(--text-dark);
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

.driver-price-header {
    background: var(--gradient-2);
    color: var(--text-light);
    padding: 1.5rem;
    text-align: center;
}

.driver-price-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.driver-duration {
    font-size: 0.9375rem;
    opacity: 0.9;
    margin: 0;
}

.driver-price-body {
    padding: 2rem 1.5rem;
}

.driver-price-amount {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.driver-price-amount .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.driver-price-amount .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.driver-includes {
    list-style: none;
    margin-bottom: 2rem;
}

.driver-includes li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
    color: var(--text-gray);
    font-size: 0.9375rem;
}

.driver-includes li:last-child {
    border-bottom: none;
}

.driver-info-banner {
    background: linear-gradient(135deg, rgba(255, 214, 10, 0.15) 0%, rgba(255, 195, 0, 0.15) 100%);
    border-radius: var(--border-radius);
    padding: 1.5rem 2rem;
    text-align: center;
    border-left: 4px solid var(--secondary-color);
}

.driver-info-banner p {
    margin: 0;
    color: var(--text-dark);
    font-size: 1rem;
}

/* Premium Services Grid */
.premium-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin: 3rem 0;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-light);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.service-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.service-tagline {
    font-size: 1rem;
    color: var(--text-gray);
    font-style: italic;
    margin: 0;
}

.service-content {
    margin-bottom: 2rem;
}

.service-description {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-options h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.delivery-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    transition: all 0.2s ease;
}

.delivery-option:hover {
    background: #e0f2fe;
}

.option-name {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-dark);
}

.option-icon {
    font-size: 1.25rem;
}

.option-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-pricing {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.price-display {
    margin-bottom: 0.5rem;
}

.price-display .price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

.price-display .price-period {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.service-pricing .price-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.service-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefit-item {
    font-size: 0.9375rem;
    color: var(--text-dark);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.service-cta {
    text-align: center;
}

.service-cta .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

.services-info-banner {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 2rem;
}

.services-info-banner p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-dark);
}

/* Chauffeur Benefits Grid */
.chauffeur-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.chauffeur-benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.chauffeur-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.chauffeur-benefit-card h3 {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.chauffeur-benefit-card p {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Chauffeur Pricing Box */
.chauffeur-pricing-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    color: white;
}

.pricing-highlight {
    text-align: center;
    margin-bottom: 2.5rem;
}

.pricing-highlight h3 {
    font-size: 1.75rem;
    color: white;
    margin-bottom: 0.5rem;
}

.pricing-highlight p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.pricing-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.pricing-rate {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rate-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.rate-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.rate-period {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.rate-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.pricing-includes h4 {
    font-size: 1.125rem;
    color: white;
    margin-bottom: 1rem;
}

.pricing-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-includes li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

.pricing-cta {
    text-align: center;
}

.pricing-cta .btn-primary {
    background: white;
    color: var(--primary-color);
    font-weight: 700;
    padding: 1rem 3rem;
    font-size: 1.125rem;
}

.pricing-cta .btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.pricing-cta .pricing-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--bg-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9375rem;
}

.about-image-card {
    padding: 3rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-card img {
    max-width: 100%;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
}

/* Booking Calendar Styles */
.booking-calendar-section {
    margin: 1.5rem 0;
}

.calendar-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-top: 1.5rem;
    box-shadow: var(--shadow-md);
}

.calendar-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.calendar-header h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.calendar-instructions {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin: 0;
}

.calendar-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
}

.calendar-nav-btn {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.calendar-month-year {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
}

.calendar-grid {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 1rem;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.calendar-weekday {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-gray);
    padding: 0.5rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    background: var(--bg-light);
}

.calendar-day.other-month {
    color: #cbd5e0;
    cursor: default;
}

.calendar-day.past {
    color: #cbd5e0;
    cursor: not-allowed;
    text-decoration: line-through;
}

.calendar-day.available:hover {
    background: rgba(0, 180, 216, 0.1);
    border-color: var(--primary-light);
    transform: scale(1.05);
}

.calendar-day.reserved {
    background: linear-gradient(135deg, #ffcdd2 0%, #ef9a9a 100%);
    color: #c62828;
    cursor: not-allowed;
    position: relative;
}

.calendar-day.reserved::after {
    content: '✕';
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.3;
}

.calendar-day.selected {
    background: var(--gradient-2);
    color: var(--text-light);
    font-weight: 700;
    border-color: var(--primary-color);
}

.calendar-day.in-range {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.2) 0%, rgba(72, 202, 228, 0.2) 100%);
    color: var(--primary-dark);
    font-weight: 600;
}

.calendar-day.today {
    border: 2px solid var(--accent-color);
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-gray);
}

.legend-box {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid transparent;
}

.legend-available {
    background: var(--bg-light);
    border-color: #e9ecef;
}

.legend-reserved {
    background: linear-gradient(135deg, #ffcdd2 0%, #ef9a9a 100%);
}

.legend-selected {
    background: var(--gradient-2);
}

.legend-range {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.2) 0%, rgba(72, 202, 228, 0.2) 100%);
}

.selected-dates-display {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-around;
    box-shadow: var(--shadow-sm);
}

.selected-date-item {
    text-align: center;
}

.selected-date-item strong {
    display: block;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 0.25rem;
}

.selected-date-item span {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--bg-light);
}

/* Centered Contact Info Header */
.contact-info-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.contact-info-header p {
    color: var(--text-gray);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-top: 1rem;
}

/* Scarcity Alert */
.scarcity-alert {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 2rem auto 3rem;
    max-width: 700px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.scarcity-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.scarcity-content {
    flex: 1;
}

.scarcity-content strong {
    display: block;
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.scarcity-content p {
    margin: 0;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
}

/* Full Width Booking Calendar Container */
.booking-calendar-container {
    width: 100%;
}

.booking-form-fullwidth {
    width: 100%;
}

/* Vehicle Selector Inline */
.vehicle-selector-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.vehicle-selector-inline label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.vehicle-selector-inline select {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    background: white;
    color: var(--text-dark);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.vehicle-selector-inline select:hover {
    border-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(0, 180, 216, 0.2);
}

/* Calendar Wrapper Full Width */
.calendar-wrapper-fullwidth {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

/* Calendar Main Grid - Split Layout */
.calendar-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    min-height: 600px;
}

/* Calendar Section (Left Side) */
.calendar-section {
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.calendar-section .calendar-header h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.calendar-section .calendar-instructions {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.calendar-sync-status {
    font-size: 0.8125rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.calendar-sync-status.synced {
    color: #10b981;
}

/* Rental Summary Sidebar (Right Side) */
.rental-summary-sidebar {
    padding: 2rem;
    background: var(--gradient-1);
    color: white;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.summary-header h4 {
    font-size: 1.5rem;
    color: white;
    margin: 0 0 1.5rem 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.selected-vehicle-display,
.selected-dates-summary {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.25rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.summary-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
}

.summary-date-item {
    margin-bottom: 1rem;
}

.summary-date-item:last-child {
    margin-bottom: 0;
}

/* Price Summary */
.price-summary {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: auto;
    color: white;
}

.price-summary .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    color: white;
    font-size: 0.9375rem;
}

.price-summary .price-row span,
.price-summary .price-row strong {
    color: white;
}

.price-summary .price-row strong.discount-highlight {
    color: #fdba74 !important;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(253, 186, 116, 0.4);
}

.price-summary .price-row.price-subtotal {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 0.5rem;
    padding-top: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.price-summary .price-row.price-subtotal span,
.price-summary .price-row.price-subtotal strong {
    color: rgba(255, 255, 255, 0.6);
}

.price-summary .price-row.price-total {
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.price-summary .price-row.price-total span {
    color: white;
}

.price-summary .price-row.price-total strong {
    color: #86efac;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(134, 239, 172, 0.5);
}


.price-savings {
    background: rgba(255, 193, 7, 0.2);
    padding: 0.75rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9375rem;
    color: white;
}

.price-savings strong {
    color: #86efac;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(134, 239, 172, 0.5);
}

.rental-summary-sidebar .btn-primary {
    margin-top: 1.5rem;
    background: white;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1rem;
}

.rental-summary-sidebar .btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Old Contact Styles (Keep for backwards compatibility) */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.contact-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--border-radius);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-gray);
    margin: 0;
}

.contact-form-wrapper {
    background: var(--bg-gray);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Payment Policy Section */
.payment-policy {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.policy-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.policy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.policy-card.highlight {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.policy-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.policy-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.policy-card p {
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.policy-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9375rem;
    color: #374151;
}

.policy-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.policy-note {
    font-size: 0.875rem;
    color: #6b7280;
    font-style: italic;
    margin-top: 1rem;
}

.policy-footer {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.policy-footer p {
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.policy-footer p:first-child {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    .policy-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

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

.footer-column h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .vehicles-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    /* Stack calendar on tablets */
    .calendar-main-grid {
        grid-template-columns: 1fr;
    }
    
    .rental-summary-sidebar {
        min-height: auto;
    }
}

/* Mobile Booking Calendar - Hidden on Desktop */
.mobile-booking-calendar {
    display: none;
}

.mobile-calendar-header {
    text-align: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.mobile-calendar-header h3 {
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.mobile-sync-status {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin: 0;
}

.mobile-sync-status.synced {
    color: #10b981;
}

.mobile-vehicle-selector {
    margin-bottom: 1.25rem;
}

.mobile-vehicle-selector label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.mobile-vehicle-selector select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9375rem;
    background: white;
    color: var(--text-dark);
}

/* Mobile Calendar Container */
.mobile-calendar-container {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.mobile-calendar-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.mobile-cal-nav {
    background: var(--gradient-1);
    color: white;
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 8px;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.mobile-cal-nav:active {
    transform: scale(0.95);
}

.mobile-month-year {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.mobile-calendar-grid {
    margin-bottom: 0.75rem;
}

.mobile-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.mobile-weekdays div {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-gray);
    padding: 0.25rem 0;
}

.mobile-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
}

.mobile-cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.mobile-cal-day.other-month {
    color: #d1d5db;
    cursor: default;
}

.mobile-cal-day.past {
    color: #9ca3af;
    background: #f9fafb;
    cursor: not-allowed;
}

.mobile-cal-day.available {
    background: white;
    border-color: #e5e7eb;
    color: var(--text-dark);
}

.mobile-cal-day.available:active {
    background: #f3f4f6;
    transform: scale(0.95);
}

.mobile-cal-day.reserved {
    background: #fee2e2;
    color: #991b1b;
    cursor: not-allowed;
    position: relative;
}

.mobile-cal-day.selected {
    background: var(--gradient-1);
    color: white;
    font-weight: 700;
    border-color: var(--primary);
}

.mobile-cal-day.in-range {
    background: #dbeafe;
    color: var(--primary);
}

.mobile-cal-day.today {
    font-weight: 700;
}

/* Mobile Calendar Legend */
.mobile-calendar-legend {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.mobile-legend-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--text-gray);
}

.mobile-legend-box {
    width: 1rem;
    height: 1rem;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
}

.mobile-legend-box.available {
    background: white;
}

.mobile-legend-box.reserved {
    background: #fee2e2;
    border-color: #fecaca;
}

.mobile-legend-box.selected {
    background: var(--gradient-1);
    border-color: var(--primary);
}

/* Mobile Booking Summary */
.mobile-booking-summary {
    background-color: #2563eb !important;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%) !important;
    border-radius: 12px;
    padding: 1.25rem;
}

.mobile-booking-summary h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ffffff !important;
}

.mobile-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.mobile-summary-item .label {
    font-size: 0.875rem;
    opacity: 0.9;
    color: #ffffff !important;
}

.mobile-summary-item .value {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff !important;
}

.mobile-summary-dates {
    margin-bottom: 0.75rem;
}

.mobile-price-summary {
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 0.75rem;
    margin: 1rem 0;
}

.mobile-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.375rem 0;
    font-size: 0.875rem;
}

.mobile-price-row span {
    color: #ffffff !important;
}

.mobile-price-row strong {
    color: #ffffff !important;
}

.mobile-price-row #mobileDays,
.mobile-price-row #mobileDailyRate {
    color: #ffffff !important;
}

.mobile-price-row .discount-text {
    color: #fb923c !important;
    font-weight: 700;
}

/* Subtotal row - gray color like desktop */
.mobile-price-row:has(#mobileSubtotal) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 0.5rem;
    padding-top: 0.5rem;
}

.mobile-price-row:has(#mobileSubtotal) span,
.mobile-price-row #mobileSubtotal {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Total row - green amount */
.mobile-price-row.total-row {
    font-size: 1rem;
    font-weight: 700;
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.3);
}

.mobile-price-row.total-row > span:first-child {
    color: #ffffff !important;
}

.mobile-price-row.total-row #mobileTotal {
    color: #10b981 !important;
    font-size: 1.25rem;
    font-weight: 700;
}

.mobile-savings-row {
    background: rgba(34, 197, 94, 0.3);
    padding: 0.5rem;
    border-radius: 6px;
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.mobile-savings-row span {
    color: #ffffff !important;
}

.mobile-savings-row strong {
    color: #ffffff !important;
}

.mobile-savings-row .savings-text {
    color: #6ee7b7 !important;
    font-weight: 700;
}

.mobile-reserve-btn {
    width: 100%;
    margin-top: 1rem;
}

.mobile-reserve-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.mobile-deposit-note {
    text-align: center;
    font-size: 0.875rem;
    margin-top: 0.75rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 500;
    line-height: 1.4;
}

.mobile-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.mobile-form-group input,
.mobile-form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
}

.mobile-form-group input:focus,
.mobile-form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

.mobile-time-note {
    font-size: 0.8125rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.mobile-pricing-display {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 1.25rem;
    margin: 1.5rem 0;
}

.mobile-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-price-row:last-child {
    border-bottom: none;
}

.mobile-price-row.total-row {
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 2px solid rgba(0, 0, 0, 0.2);
}

.mobile-price-row span {
    font-size: 0.9375rem;
    color: var(--text-dark);
}

.mobile-price-row strong {
    font-size: 1.125rem;
    font-weight: 700;
}

.discount-text {
    color: #fdba74 !important;
}

.total-amount {
    color: #86efac !important;
    font-size: 1.5rem !important;
}

.savings-amount {
    color: #86efac !important;
}

.mobile-book-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 1.25rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.mobile-deposit-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-gray);
    margin-top: 1rem;
}

.mobile-reserved-display {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #ef4444;
}

.mobile-reserved-display h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: #991b1b;
}

.reserved-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.reserved-date-item {
    background: white;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #7f1d1d;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reserved-date-item::before {
    content: "📅";
    font-size: 1rem;
}

.loading-text {
    color: #991b1b;
    font-size: 0.875rem;
    text-align: center;
    margin: 0;
}

.no-reservations {
    color: #059669;
    font-size: 0.875rem;
    text-align: center;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    /* Show mobile calendar, hide desktop calendar */
    .mobile-booking-calendar {
        display: block;
        padding: 1.25rem;
        background: white;
        border-radius: 12px;
        box-shadow: var(--shadow-md);
    }
    
    .desktop-calendar {
        display: none !important;
    }
    
    /* Disable animations on mobile to prevent glitches */
    * {
        animation: none !important;
        transition: none !important;
    }
    
    .scroll-indicator {
        animation: none !important;
    }
    
    .feature-card:hover,
    .vehicle-card:hover,
    .chauffeur-benefit-card:hover,
    .driver-price-card:hover {
        transform: none !important;
    }
    
    .btn-primary:hover,
    .nav-links .btn-primary:hover {
        transform: none !important;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-light);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease !important;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vehicles-grid {
        grid-template-columns: 1fr;
    }
    
    .vehicle-features {
        grid-template-columns: 1fr;
    }
    
    .scarcity-alert {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1.5rem;
    }
    
    .scarcity-icon {
        font-size: 2rem;
    }
    
    .scarcity-content strong {
        font-size: 1.125rem;
    }
    
    .experience-highlights {
        padding: 1.25rem;
    }
    
    /* Fix pricing table for mobile */
    .pricing-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0;
        padding: 0;
        width: 100%;
    }
    
    .pricing-table {
        font-size: 0.875rem;
        min-width: auto;
        width: 100%;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.875rem 0.5rem;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .discount-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
        display: inline-block;
    }
    
    .best-value {
        display: block;
        margin-left: 0;
        margin-top: 0.5rem;
        font-size: 0.75rem;
    }
    
    /* Fix pricing note spacing */
    .pricing-note {
        margin: 2rem 1rem 0;
        padding: 1rem;
    }
    
    .pricing-note p {
        font-size: 0.875rem;
    }
    
    .driver-service-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .chauffeur-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .premium-services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .price-display .price-amount {
        font-size: 2.5rem;
    }
    
    .pricing-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .chauffeur-pricing-box {
        padding: 1.5rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Mobile calendar adjustments - make it much smaller */
    .calendar-main-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .vehicle-selector-inline {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .vehicle-selector-inline label {
        text-align: center;
        font-size: 0.875rem;
    }
    
    .vehicle-selector-inline select {
        width: 100%;
        padding: 0.75rem;
    }
    
    .calendar-section {
        padding: 1rem;
    }
    
    .calendar-header h4 {
        font-size: 1.125rem;
    }
    
    .calendar-instructions {
        font-size: 0.75rem;
    }
    
    .calendar-controls {
        padding: 0.75rem 0;
    }
    
    .calendar-month-year {
        font-size: 1rem;
    }
    
    .calendar-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }
    
    .calendar-weekday {
        font-size: 0.75rem;
        padding: 0.5rem 0.25rem;
    }
    
    .calendar-day {
        min-height: 40px;
        font-size: 0.875rem;
        padding: 0.25rem;
    }
    
    .rental-summary-sidebar {
        padding: 1rem;
    }
    
    .summary-header h4 {
        font-size: 1.125rem;
    }
    
    .booking-calendar-container {
        overflow-x: hidden;
        padding: 0;
    }
    
    .calendar-wrapper-fullwidth {
        margin: 0;
        border-radius: 0;
    }
    
    .calendar-grid {
        overflow-x: visible;
    }
    
    .calendar-days {
        min-width: auto;
        width: 100%;
    }
    
    .calendar-legend {
        flex-wrap: wrap;
        gap: 0.75rem;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .legend-item {
        font-size: 0.75rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Checkout Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    overflow-y: auto;
}

.modal-container {
    background: white;
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 2px solid #e5e7eb;
}

.modal-header h2 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: #f3f4f6;
    color: var(--text-dark);
}

.modal-body {
    padding: 2rem;
}

.checkout-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.checkout-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.checkout-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.summary-item .label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.summary-item .value {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.form-grid .form-group:nth-child(3n+1) {
    grid-column: 1 / -1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.info-text {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 4px;
}

.addon-option {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.addon-option:hover {
    border-color: var(--primary-color);
    background: #f0f9ff;
}

.addon-option input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.addon-option label {
    cursor: pointer;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.addon-option label strong {
    font-size: 1.0625rem;
    color: var(--text-dark);
}

.addon-price {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.addon-description {
    font-size: 0.9375rem;
    color: #6b7280;
    margin: 0;
}

/* Upsells Grid */
.upsells-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.upsell-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.upsell-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 180, 216, 0.15);
    transform: translateY(-2px);
}

.upsell-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.upsell-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.upsell-description {
    font-size: 0.9375rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.upsell-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    font-size: 0.875rem;
    color: #374151;
}

.upsell-includes li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.upsell-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.upsell-pricing-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
}

.radio-option:hover {
    border-color: var(--primary-color);
    background: #f0f9ff;
}

.radio-option input[type="radio"] {
    margin-right: 0.75rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.radio-option input[type="radio"]:checked + span,
.radio-option:has(input[type="radio"]:checked) {
    font-weight: 600;
    color: var(--primary-color);
}

.radio-option:has(input[type="radio"]:checked) {
    border-color: var(--primary-color);
    background: #f0f9ff;
}

.radio-option.recommended {
    border-color: #f59e0b;
    background: #fffbeb;
}

.radio-option.recommended:hover {
    background: #fef3c7;
}

.save-badge {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

.popular-badge {
    display: inline-block;
    background: #f59e0b;
    color: white;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

/* Hide vehicle upgrade card by default - show via JS */
#vehicleUpgradeCard {
    display: none;
}

@media (max-width: 768px) {
    .upsells-grid {
        grid-template-columns: 1fr;
    }
}

.stripe-card-element {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    transition: var(--transition);
}

.stripe-card-element:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

.card-errors {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    min-height: 20px;
}

.price-breakdown {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 1.5rem !important;
    border-radius: 12px;
}

.price-rows {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    color: var(--text-dark);
    gap: 1rem;
}

.price-row > span:first-child {
    flex: 1;
    word-wrap: break-word;
}

.price-row.discount-row {
    color: #059669;
}

.discount-amount {
    color: #059669;
    font-weight: 600;
}

.price-row.subtotal-row {
    padding-top: 0.875rem;
    border-top: 1px solid #cbd5e1;
    margin-top: 0.5rem;
}

.price-row.deposit-row {
    color: #6b7280;
    font-size: 0.9375rem;
}

.price-row.total-row {
    font-size: 1.25rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    margin-top: 0.75rem;
    box-shadow: var(--shadow-sm);
}

.deposit-notice {
    margin-top: 1rem;
    padding: 1rem;
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 6px;
    font-size: 0.9375rem;
    color: #78350f;
    line-height: 1.6;
}

.btn-full {
    width: 100%;
    margin-top: 1.5rem;
}

#submitPayment:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-container {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
    
    .summary-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .checkout-section h3 {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .vehicles-grid {
        grid-template-columns: 1fr;
    }
    
    .vehicle-card {
        min-width: unset;
    }
    
    .hero-price {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .vehicle-pricing {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .vehicle-pricing .btn-primary {
        width: 100%;
        text-align: center;
    }
    
    .chauffeur-benefits {
        grid-template-columns: 1fr;
    }
    
    .rate-amount {
        font-size: 2.5rem;
    }
}

/* Protection Packages Section */
.protection-packages-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.protection-comparison-table {
    margin: 3rem 0;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.protection-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.protection-table thead tr {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.protection-table th {
    padding: 1.5rem 1rem;
    text-align: center;
    color: white;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.protection-table th:last-child {
    border-right: none;
}

.protection-table th.feature-column {
    text-align: left;
    font-weight: 600;
    font-size: 0.9375rem;
    background: #1e3a8a;
}

.protection-table th.package-column {
    min-width: 160px;
    position: relative;
}

.protection-table th.basic-col {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%);
}

.protection-table th.standard-col {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.protection-table th.premium-col {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.protection-table th.ultimate-col {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.package-name {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.package-deductible {
    font-size: 0.8125rem;
    opacity: 0.95;
    font-weight: 500;
}

.table-badge {
    position: absolute;
    top: -8px;
    right: 10px;
    background: white;
    color: #1e3a8a;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.table-badge.popular {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #78350f;
}

.table-badge.best {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    color: #064e3b;
}

.protection-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.protection-table tbody tr:hover {
    background: #f9fafb;
}

.protection-table tbody tr:last-child {
    border-bottom: none;
}

.protection-table td {
    padding: 1rem;
    text-align: center;
    vertical-align: middle;
}

.protection-table td.feature-name {
    text-align: left;
    font-weight: 600;
    color: #1f2937;
    font-size: 0.9375rem;
    background: #f9fafb;
}

.protection-table td.coverage-cell {
    font-size: 1.5rem;
    font-weight: 600;
}

.protection-table tr.exclusions-row {
    background: #fef3c7;
}

.protection-table tr.exclusions-row td.feature-name {
    background: #fde68a;
    color: #92400e;
}

.protection-table td.exclusions-cell {
    text-align: left;
    padding: 1.25rem 1rem;
    font-size: 0.8125rem;
    vertical-align: top;
}

.exclusion-item {
    margin-bottom: 0.5rem;
    color: #92400e;
    font-weight: 500;
}

.exclusion-item:last-child {
    margin-bottom: 0;
}

.protection-note {
    margin-top: 2rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 12px;
    text-align: center;
    border: 2px solid #3b82f6;
}

.protection-note p {
    margin: 0;
    color: #1e3a8a;
    font-size: 1rem;
}

.protection-footnote {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #64748b;
}

.protection-footnote p {
    margin: 0;
    color: #475569;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Insurance Options in Checkout */
.insurance-options {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.insurance-option-card {
    position: relative;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.insurance-option-card:has(input:checked) {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
}

.insurance-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 20px;
    height: 20px;
    top: 1.25rem;
    right: 1.25rem;
    cursor: pointer;
}

.insurance-option-card label {
    cursor: pointer;
    padding-right: 2rem;
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.option-header strong {
    font-size: 1.0625rem;
    color: var(--text-dark);
}

.option-badge {
    padding: 0.25rem 0.75rem;
    background: #10b981;
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.option-badge.price-badge {
    background: var(--primary-color);
}

.option-description {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.insurance-fields {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.section-description {
    font-size: 0.9375rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* Protection Packages Grid in Checkout */
.protection-packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.protection-package-card {
    position: relative;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.protection-package-card:has(input:checked) {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 180, 216, 0.15);
    transform: translateY(-2px);
}

.protection-package-card.popular:has(input:checked) {
    border-color: #f59e0b;
}

.protection-package-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 20px;
    height: 20px;
    top: 1.25rem;
    right: 1.25rem;
    cursor: pointer;
}

.protection-package-card label {
    cursor: pointer;
}

.protection-package-card .package-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #78350f;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.protection-package-card .package-badge.best {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    color: #064e3b;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.package-header.basic {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%);
}

.package-header.standard {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.package-header.premium {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.package-header.ultimate {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.package-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.package-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
}

.package-details {
    padding: 0 0.5rem;
}

.package-deductible {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    font-size: 0.8125rem;
    color: #6b7280;
    padding: 0.25rem 0;
}

/* Rental Agreement Box */
.rental-agreement-box {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.agreement-content {
    max-height: 400px;
    overflow-y: auto;
    padding: 1.5rem;
    background: #f9fafb;
}

.agreement-content h4 {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.agreement-content h5 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.agreement-content p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 1rem;
}

.agreement-content ul {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
}

.agreement-content li {
    font-size: 0.875rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.agreement-acceptance {
    background: white;
    padding: 1.5rem;
    border-top: 2px solid #e5e7eb;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.25rem;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-group label {
    font-size: 0.9375rem;
    cursor: pointer;
    user-select: none;
}

@media (max-width: 768px) {
    .protection-comparison-table {
        overflow-x: scroll;
    }
    
    .protection-table {
        min-width: 800px;
    }
    
    .protection-table th.package-column {
        min-width: 140px;
    }
    
    .protection-packages-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
    }
}
