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

:root {
    /* Ultra-Luxurious Color Palette */
    --primary-color: #B8860B; /* Rich Dark Goldenrod */
    --primary-dark: #9A7209;
    --primary-light: #D4AF37; /* Classic Gold */
    --primary-glow: #F4D03F; /* Bright Gold Accent */
    --secondary-color: #1C1C1E; /* Deep Charcoal */
    --accent-gold: #C9A961; /* Warm Antique Gold */
    --accent-platinum: #F5F5F0; /* Soft Platinum */
    --accent-burgundy: #8B4513; /* Rich Saddle Brown */
    
    /* Text Colors */
    --text-dark: #0F0F0F; /* Deep Black */
    --text-medium: #3D3D3D; /* Charcoal Gray */
    --text-light: #6B6B6B; /* Medium Gray */
    --text-white: #FFFFFF;
    --text-gold: #B8860B;
    
    /* Background Colors */
    --bg-cream: #FFFEF8; /* Pure Ivory */
    --bg-white: #F5F5F5; /* Light Gray/Silver */
    --bg-card: #E8E8E8; /* Silver Gray */
    --bg-dark: #0A0A0A; /* Near Black */
    --bg-gradient: linear-gradient(135deg, #0A0A0A 0%, #1C1C1E 50%, #0F0F0F 100%);
    --bg-gradient-gold: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    
    /* Borders & Shadows */
    --border-color: #E8E6E0; /* Soft Ivory Border */
    --border-gold: rgba(184, 134, 11, 0.4);
    --border-gold-strong: rgba(184, 134, 11, 0.6);
    --shadow-soft: 0 4px 25px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 6px 35px rgba(0, 0, 0, 0.1);
    --shadow-luxury: 0 12px 50px rgba(0, 0, 0, 0.18);
    --shadow-gold: 0 10px 40px rgba(184, 134, 11, 0.35);
    --shadow-gold-strong: 0 15px 60px rgba(184, 134, 11, 0.45);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-white);
    background: linear-gradient(135deg, #0A0A0A 0%, #1C1C1E 30%, #0F0F0F 70%, #0A0A0A 100%);
    background-attachment: fixed;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

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

/* Navigation */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

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

.nav-brand h1 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin: 0;
    background: linear-gradient(135deg, #8B6914 0%, #B8860B 25%, #D4AF37 50%, #F4D03F 75%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 6px rgba(184, 134, 11, 0.25));
    position: relative;
    text-shadow: 0 0 20px rgba(184, 134, 11, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--accent-platinum);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-light);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--accent-platinum);
    transition: all 0.3s;
}

/* Hero Section - Luxurious */
.hero {
    background: linear-gradient(135deg, #0A0A0A 0%, #1C1C1E 30%, #0F0F0F 70%, #0A0A0A 100%);
    color: var(--text-white);
    padding: 8rem 0 10rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Safety banner */
.safety-banner {
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.28) 0%, rgba(10, 10, 10, 0.96) 70%);
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.55);
    box-shadow: 0 14px 40px rgba(0,0,0,0.45);
}

.safety-banner p {
    margin: 0;
    text-align: center;
    color: var(--accent-platinum);
    font-size: 1.05rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.safety-banner .safety-emphasis {
    color: var(--primary-light);
    font-weight: 700;
    margin-right: 0.35rem;
    text-shadow: 0 0 14px rgba(212, 175, 55, 0.75);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(184, 134, 11, 0.15) 0%, rgba(212, 175, 55, 0.08) 50%, transparent 80%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(184, 134, 11, 0.03) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-light);
    letter-spacing: -1px;
    line-height: 1.2;
    text-shadow: 0 4px 25px rgba(184, 134, 11, 0.5), 0 8px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--accent-platinum);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 3rem;
    color: var(--accent-platinum);
    font-weight: 300;
}

.btn-hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--text-white);
    padding: 1.25rem 3.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1rem;
    letter-spacing: 0.8px;
    box-shadow: var(--shadow-gold-strong);
    border: 2px solid var(--primary-light);
    text-transform: uppercase;
}

.btn-hero-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 60px rgba(184, 134, 11, 0.5);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-glow) 100%);
    border-color: var(--primary-glow);
}

/* Booking Section - Luxurious */
.booking-section {
    padding: 4rem 0 6rem;
    background: transparent;
    position: relative;
    margin-top: -6rem;
}

.booking-wrapper {
    position: relative;
    z-index: 10;
}

.booking-form-card {
    background-color: var(--bg-card);
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-luxury);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.booking-form-card h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

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

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

.form-group label {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select {
    padding: 1rem 1.25rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-body);
    background: var(--bg-white);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.1);
    background: var(--bg-white);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444 !important;
    border-width: 2px !important;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.error-message {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
    font-family: var(--font-body);
}

.form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-body);
    resize: vertical;
    transition: all 0.3s ease;
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
}

.error-message {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: none;
}

/* Autocomplete Styles */
.autocomplete-wrapper {
    position: relative;
}

.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    border: 2px solid var(--primary-color);
    border-top: none;
    border-radius: 0 0 10px 10px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: none;
    margin-top: -2px;
}

.suggestion-item {
    padding: 1rem 1.25rem;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    color: #1A1A1A;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: #FFFFFF;
}

.suggestion-item:hover {
    background-color: rgba(184, 134, 11, 0.1);
    color: #1A1A1A;
}

.suggestion-item:last-child {
    border-bottom: none;
    border-radius: 0 0 10px 10px;
}

.suggestion-item strong {
    color: #1A1A1A;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.suggestion-item small {
    color: #4A4A4A;
    font-size: 0.85rem;
    display: block;
}

.suggestion-item.fallback-item {
    cursor: pointer;
    color: #1A1A1A;
    font-weight: 500;
    background-color: #FFFFFF;
}

.suggestion-item.fallback-item:hover {
    background-color: rgba(184, 134, 11, 0.1);
    color: #1A1A1A;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--text-white);
    padding: 1rem 2.5rem;
    border: 2px solid var(--primary-light);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    margin-top: 1.5rem;
    letter-spacing: 0.8px;
    box-shadow: var(--shadow-gold-strong);
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.95rem;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-glow) 100%);
    border-color: var(--primary-glow);
    transform: translateY(-3px);
    box-shadow: 0 18px 60px rgba(184, 134, 11, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 0.875rem 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.8px;
    font-family: var(--font-body);
    text-transform: uppercase;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-strong);
    border-color: var(--primary-light);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    display: block;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    display: block;
}

.form-message.info {
    background-color: #dbeafe;
    color: #1e40af;
    display: block;
}

/* Services Preview */
.services-preview {
    padding: 5rem 0;
    background: transparent;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-light);
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.service-card {
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3), 0 5px 20px rgba(184, 134, 11, 0.2);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(184, 134, 11, 0.3);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Airport Services - Airplane Background */
.service-card-airport {
    background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-color: transparent;
}

.service-card-airport::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(232, 232, 232, 0.65) 0%, rgba(245, 245, 245, 0.75) 100%);
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.service-card-airport:hover::after {
    opacity: 0.9;
}

/* Outstation Cabs - Luxury Mercedes-Benz Car Background */
.service-card-outstation {
    background-image: url('https://images.unsplash.com/photo-1617531653332-bd46c24f2068?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-color: transparent;
}

.service-card-outstation::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(232, 232, 232, 0.65) 0%, rgba(245, 245, 245, 0.75) 100%);
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.service-card-outstation:hover::after {
    opacity: 0.9;
}

/* Local Trips - World Map Background */
.service-card-local {
    background-image: url('https://images.unsplash.com/photo-1526304640581-d334cdbbf45e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-color: transparent;
}

.service-card-local::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(232, 232, 232, 0.65) 0%, rgba(245, 245, 245, 0.75) 100%);
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.service-card-local:hover::after {
    opacity: 0.9;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-glow) 100%);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(184, 134, 11, 0.5);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 10px 30px rgba(184, 134, 11, 0.3);
    border-color: var(--primary-light);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: grayscale(0.2) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(184, 134, 11, 0.2);
}

.service-card:hover .service-icon {
    filter: grayscale(0) drop-shadow(0 6px 12px rgba(184, 134, 11, 0.4));
    transform: scale(1.1) rotate(5deg);
    border-color: var(--primary-light);
    background: rgba(184, 134, 11, 0.1);
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 12px rgba(255, 255, 255, 1), 0 0 25px rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.5) 100%);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    display: inline-block;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(184, 134, 11, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.service-card:hover h3 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.6) 100%);
    border-color: var(--primary-light);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.2);
    transform: translateY(-2px);
}

.service-card p {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    font-weight: 600;
    font-size: 1rem;
    text-shadow: 0 1px 8px rgba(255, 255, 255, 1), 0 0 15px rgba(255, 255, 255, 0.8);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.45) 100%);
    padding: 0.5rem 1.25rem;
    border-radius: 10px;
    display: inline-block;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(184, 134, 11, 0.15);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.service-card .price {
    font-weight: 700;
    font-size: 1.5rem;
    margin: 1.5rem 0;
    font-family: var(--font-heading);
    position: relative;
    z-index: 1;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    display: inline-block;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(184, 134, 11, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.5) 100%);
    color: var(--primary-color);
    text-shadow: 0 2px 8px rgba(184, 134, 11, 0.3);
}

.service-card:hover .price {
    border-color: var(--primary-light);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.2);
    color: var(--primary-light);
    text-shadow: 0 3px 12px rgba(184, 134, 11, 0.5);
}

.service-card .btn-secondary {
    position: relative;
    z-index: 1;
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    padding: 0.875rem 2rem;
    transition: all 0.4s ease;
}

.service-card .btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
    border-color: var(--primary-light);
}

/* Highlights - Luxurious */
.highlights {
    padding: 5rem 0;
    background: transparent;
}

.highlights h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-light);
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.highlight-item {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-luxury);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-luxury);
    border-color: var(--border-gold);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: grayscale(0.2);
    transition: filter 0.3s ease;
}

.highlight-item:hover .highlight-icon {
    filter: grayscale(0);
}

.highlight-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

.highlight-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* About Section - Luxurious */
.about {
    padding: 5rem 0;
    background: transparent;
}

.about h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-light);
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: var(--accent-platinum);
    text-align: center;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: transparent;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-light);
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-form-wrapper {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-luxury);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form-wrapper h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

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

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-item {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-luxury);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-luxury);
    border-color: var(--border-gold);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: grayscale(0.2);
    transition: filter 0.3s ease;
}

.contact-item:hover .contact-icon {
    filter: grayscale(0);
}

.contact-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

.contact-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0A0A0A 0%, #1C1C1E 50%, #0F0F0F 100%);
    color: var(--text-white);
    padding: 4rem 0 2rem;
    border-top: 2px solid rgba(184, 134, 11, 0.3);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

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

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.25rem;
}

.footer-section p {
    color: var(--accent-platinum);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--accent-platinum);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    text-decoration: none;
    font-size: 1.2rem;
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #d1d5db;
}

/* Page Header - luxe black & gold hero style for inner pages */
.page-header {
    position: relative;
    background: linear-gradient(135deg, #0A0A0A 0%, #1C1C1E 30%, #0F0F0F 70%, #050505 100%);
    color: var(--text-white);
    padding: 5rem 0 6rem;
    text-align: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 40%, rgba(184, 134, 11, 0.18) 0%, rgba(212, 175, 55, 0.06) 40%, transparent 75%);
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.75);
}

.page-header p {
    font-size: 1.05rem;
    opacity: 0.95;
    color: var(--accent-platinum);
}

/* Service Detail - dark, classy sections with luminous cards */
.service-detail {
    padding: 4rem 0;
    background: radial-gradient(circle at top center, rgba(184, 134, 11, 0.06) 0%, rgba(5, 5, 5, 1) 55%, rgba(0, 0, 0, 1) 100%);
}

.service-detail.alt {
    background: radial-gradient(circle at 20% 0%, rgba(184, 134, 11, 0.10) 0%, transparent 55%), radial-gradient(circle at 80% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 55%), #050505;
}

.service-detail h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.1rem;
    font-family: var(--font-heading);
    letter-spacing: -0.4px;
    color: var(--primary-light);
}

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

.service-description h3 {
    color: var(--accent-platinum);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.service-description p {
    color: var(--accent-platinum);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-top: 1rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--accent-platinum);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-pricing {
    display: grid;
    gap: 1rem;
}

.pricing-card {
    background-color: var(--bg-card);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-luxury);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pricing-card .price {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-card .price-note {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.pricing-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.service-detail .btn-primary {
    display: block;
    text-align: center;
    text-decoration: none;
    max-width: 200px;
    margin: 2rem auto 0;
}

/* Bookings Section */
.bookings-section {
    padding: 4rem 0 5rem;
    min-height: 60vh;
    background: radial-gradient(circle at top center, rgba(184, 134, 11, 0.10) 0%, rgba(5, 5, 5, 1) 55%, rgba(0, 0, 0, 1) 100%);
}

.bookings-controls {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.search-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
}

.bookings-list {
    max-width: 1000px;
    margin: 0 auto;
}

.booking-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 1.75rem;
    border-radius: 16px;
    box-shadow: var(--shadow-luxury);
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--border-gold);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--accent-platinum);
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.booking-id {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.booking-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.booking-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.booking-detail-item.full-width {
    grid-column: 1 / -1;
}

.booking-detail-item {
    display: flex;
    flex-direction: column;
}

.booking-detail-label {
    font-size: 0.85rem;
    color: var(--accent-platinum);
    margin-bottom: 0.25rem;
}

.booking-detail-value {
    color: var(--accent-platinum);
    font-weight: 500;
}

.booking-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.btn-delete {
    background-color: #ef4444;
    color: var(--white);
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-delete:hover {
    background-color: #dc2626;
}

.no-bookings {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

.no-bookings a {
    color: var(--primary-color);
    text-decoration: none;
}

.no-bookings a:hover {
    text-decoration: underline;
}

/* Search Results Section */
.search-results-section {
    padding: 3rem 0;
    background: transparent;
}

.search-results-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-light);
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.distance-info {
    text-align: center;
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.distance-info strong {
    color: var(--primary-color);
}

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

.result-card {
    background-color: var(--bg-card);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-luxury);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    text-align: center;
}

.result-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.result-vehicle h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.result-type {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.result-price {
    margin: 1.5rem 0;
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.price-note {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

.btn-book-now {
    width: 100%;
    margin-top: 1rem;
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Thank You Page */
.thank-you-section {
    padding: 4rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thank-you-card {
    background-color: var(--bg-card);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-luxury);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
    font-weight: bold;
}

.thank-you-card h1 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.thank-you-message {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.booking-id-display {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.booking-id-label {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.booking-id-value {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.thank-you-actions .btn-primary,
.thank-you-actions .btn-secondary {
    min-width: 150px;
}

.thank-you-note {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1.5rem;
    font-style: italic;
}

/* Booking Confirmation Modal */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
}

.booking-modal {
    background-color: var(--white);
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

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

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

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

.modal-body {
    padding: 1.5rem;
}

.booking-summary {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.booking-summary h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.summary-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: start;
}

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

.summary-item strong {
    color: var(--text-dark);
    min-width: 120px;
}

.summary-item.price-item {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--primary-color);
    font-size: 1.1rem;
}

.total-price {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.modal-footer button {
    min-width: 120px;
}

/* Mobile-First Responsive Design */
/* Base styles are mobile-first, then enhanced for larger screens */

/* Small mobile devices (up to 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-brand h1 {
        font-size: 1.2rem;
    }

    .hero {
        padding: 4rem 0 6rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-hero-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .booking-section {
        margin-top: -2rem;
        padding: 1.5rem 0 3rem;
    }

    .booking-form-card {
        padding: 1.25rem;
    }

    .booking-form-card h2 {
        font-size: 1.5rem;
    }

    .service-cards,
    .highlight-grid,
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card,
    .highlight-item {
        padding: 1.5rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .booking-modal {
        max-width: 95%;
        margin: 1rem;
    }

    .modal-body {
        padding: 1rem;
    }

    .booking-summary {
        padding: 1rem;
    }

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

    .summary-item strong {
        min-width: auto;
    }

    .modal-footer {
        flex-direction: column;
        padding: 1rem;
    }

    .modal-footer button {
        width: 100%;
    }
}

/* Tablets and small screens (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

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

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .service-content {
        grid-template-columns: 1fr;
    }

    .bookings-controls {
        flex-direction: column;
    }
    
    .bookings-controls button {
        width: 100%;
    }
    
    .booking-section {
        margin-top: -2rem;
    }
    
    .booking-form-card {
        padding: 1.5rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
    }
    
    .thank-you-actions .btn-primary,
    .thank-you-actions .btn-secondary {
        width: 100%;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .booking-header {
        flex-direction: column;
    }

    .booking-details {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop and larger screens (769px and above) */
@media (min-width: 769px) {
    .hamburger {
        display: none;
    }

    .nav-menu {
        display: flex;
    }

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

    .service-content {
        grid-template-columns: 1fr 1fr;
    }

    .results-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large screens (1024px and above) */
@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* Ensure modal is scrollable on small screens */
@media (max-width: 768px) {
    .booking-modal {
        max-height: 95vh;
        overflow-y: auto;
    }

    .modal-body {
        overflow-y: auto;
    }
}

/* Billing table responsive styles */
.billing-breakdown {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.billing-breakdown th,
.billing-breakdown td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.billing-breakdown th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.billing-breakdown tr:last-child td {
    border-bottom: none;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.billing-breakdown .text-right {
    text-align: right;
}

@media (max-width: 480px) {
    .billing-breakdown {
        font-size: 0.9rem;
    }

    .billing-breakdown th,
    .billing-breakdown td {
        padding: 0.5rem;
    }

    .billing-breakdown th:first-child,
    .billing-breakdown td:first-child {
        padding-left: 0.5rem;
    }

    .billing-breakdown th:last-child,
    .billing-breakdown td:last-child {
        padding-right: 0.5rem;
    }
}

/* START: vehicle-selection styles */
.vehicle-card { 
    transition: transform .14s ease, box-shadow .14s ease; 
    border-radius: 12px; 
    padding: 20px; 
    background: rgba(255,255,255,0.02); 
    border: 1px solid rgba(255,255,255,0.03); 
}

.vehicle-card.selected {
    box-shadow: 0 18px 40px rgba(214,188,134,0.18), 0 6px 18px rgba(0,0,0,0.6);
    transform: translateY(-6px);
    border: 1px solid rgba(214,188,134,0.12);
    outline: 3px solid rgba(214,188,134,0.06);
}

.choose-vehicle { 
    cursor: pointer; 
    border-radius: 40px; 
    padding: 12px 28px; 
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); 
    border: 2px solid var(--primary-color); 
    color: var(--text-white); 
    font-weight: 700; 
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.choose-vehicle:hover {
    background: linear-gradient(180deg, rgba(212,175,55,0.1), rgba(212,175,55,0.05));
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212,175,55,0.2);
}

.vehicle-price { 
    font-weight: 700; 
    color: var(--primary-color); 
    margin-top: 8px; 
}

.vehicles-section {
    padding: 4rem 0;
    background: var(--bg-gradient);
}

.vehicles-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
/* END: vehicle-selection styles */

/* START: Billing Summary Modal Styles */
.billing-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

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

.billing-modal-content {
    position: relative;
    background: var(--bg-card);
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-gold);
    z-index: 10001;
}

.billing-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.billing-modal-header h2 {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0;
}

.billing-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.billing-modal-close:hover {
    background: rgba(184, 134, 11, 0.1);
    color: var(--primary-color);
}

.billing-modal-body {
    padding: 1.5rem;
}

.billing-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.billing-label {
    font-weight: 600;
    color: var(--text-medium);
    min-width: 120px;
}

.billing-value {
    color: var(--text-dark);
    font-weight: 500;
    flex: 1;
}

.distance-badge {
    background: rgba(184, 134, 11, 0.15);
    color: var(--primary-color);
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
}

.billing-breakdown {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
}

.billing-line-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.billing-line-item.billing-total {
    margin-top: 1rem;
    padding-top: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.billing-error {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 8px;
    color: #d32f2f;
    font-size: 0.9rem;
}

.billing-modal-footer {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    justify-content: flex-end;
}

.billing-modal-footer .btn-primary,
.billing-modal-footer .btn-secondary {
    min-width: 150px;
}

@media (max-width: 768px) {
    .billing-modal-content {
        max-width: 95%;
        margin: 1rem;
    }

    .billing-modal-header,
    .billing-modal-body,
    .billing-modal-footer {
        padding: 1rem;
    }

    .billing-info-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .billing-label {
        min-width: auto;
    }

    .billing-modal-footer {
        flex-direction: column;
    }

    .billing-modal-footer .btn-primary,
    .billing-modal-footer .btn-secondary {
        width: 100%;
    }
}
/* END: Billing Summary Modal Styles */

