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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Top Bar */
.top-bar {
    background: #374151;
    color: white;
    padding: 8px 20px;
    text-align: center;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.top-bar .close-btn {
    position: absolute;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s ease;
}

.header:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo a {
    font-size: 26px;
    font-weight: bold;
    color: #D70026;
    text-decoration: none;
}

.nav-desktop {
    display: none;
    gap: 30px;
    align-items: center;
}

.nav-desktop a, .nav-desktop .nav-link-btn {
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-desktop a:hover, .nav-desktop .nav-link-btn:hover,
.nav-desktop a.active {
    color: #D70026;
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

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

.menu-btn span {
    width: 24px;
    height: 3px;
    background: #1f2937;
    display: block;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid #e5e7eb;
    padding: 20px;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a, .mobile-menu button {
    display: block;
    padding: 12px 0;
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.mobile-menu a:hover, .mobile-menu button:hover {
    color: #D70026;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #D70026 0%, #A00020 100%);
    color: white;
    border-color: #D70026;
    box-shadow: 0 4px 15px rgba(215, 0, 38, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(215, 0, 38, 0.4);
}

.btn-secondary {
    background: white;
    color: #D70026;
    border-color: #D70026;
    box-shadow: 0 2px 8px rgba(215, 0, 38, 0.15);
}

.btn-secondary:hover {
    background: #fef2f2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(215, 0, 38, 0.25);
}

.btn-secondary-dark {
    background: #7f1d1d;
    color: white;
    box-shadow: 0 4px 15px rgba(127, 29, 29, 0.3);
}

.btn-secondary-dark:hover {
    background: #991b1b;
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: #D70026;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.btn-white:hover {
    background: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.25);
}

.btn-outline {
    background: white;
    color: #D70026;
    border-color: #D70026;
    box-shadow: 0 2px 8px rgba(215, 0, 38, 0.15);
}

.btn-outline:hover {
    background: #D70026;
    color: white;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 18px;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #D70026, #7f1d1d);
    padding: 60px 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(180,0,30,0.3), transparent);
    pointer-events: none;
}

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

.hero h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.hero-small {
    padding: 80px 20px;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 60px;
    flex-wrap: wrap;
    gap: 30px;
}

.hero-text-content {
    flex: 1;
    min-width: 300px;
    color: white;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin: 20px 0 30px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-feature-item {
    text-align: center;
}

.feature-number {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.feature-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.call-box {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    min-width: 320px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.call-label {
    color: #6b7280;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.phone-number {
    font-size: 36px;
    font-weight: bold;
    background: linear-gradient(135deg, #D70026 0%, #A00020 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.phone-number:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.call-info {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 15px;
}

/* Booking Form */
.booking-form {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

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

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:hover, .form-group select:hover {
    border-color: #d1d5db;
    background: white;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: #D70026;
    background: white;
    box-shadow: 0 0 0 4px rgba(215,0,38,0.1);
    transform: translateY(-1px);
}

.input-group {
    display: flex;
    gap: 10px;
}

.input-group input {
    flex: 1;
}

.form-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
    margin-bottom: 20px;
}

.form-submit {
    text-align: right;
}

/* Breadcrumb */
.breadcrumb {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 15px 20px;
}

.breadcrumb a {
    color: #6b7280;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #D70026;
}

/* Country Selector */
.country-selector {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px;
}

.country-selector label {
    font-size: 14px;
    font-weight: 500;
    margin-right: 10px;
}

.country-selector .required {
    color: #D70026;
}

.country-selector select {
    padding: 8px 35px 8px 15px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
}

/* Sections */
.section {
    padding: 60px 20px;
}

.vehicles-section {
    background: #f9fafb;
    padding: 60px 20px;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 40px;
}

/* Vehicle Grid */
.vehicles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.vehicle-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
    position: relative;
    overflow: hidden;
}

.vehicle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D70026, #A00020);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.vehicle-card:hover {
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    transform: translateY(-5px);
    border-color: #e5e7eb;
}

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

.vehicle-category {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.vehicle-name {
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.vehicle-image {
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.vehicle-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(215,0,38,0.05), transparent);
}

.vehicle-image img {
    max-width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1;
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.1) rotate(2deg);
}

.vehicle-specs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #6b7280;
}

.vehicle-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #D70026, #7f1d1d);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.cta-banner h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-top: 4px solid #D70026;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(215,0,38,0.05), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

/* Deals Grid */
.deals-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 40px 0;
}

.deal-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.deal-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    transform: translateY(-8px) scale(1.02);
    border-color: #D70026;
}

.deal-header {
    background: linear-gradient(135deg, #D70026 0%, #A00020 100%);
    color: white;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.deal-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.deal-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.deal-header h3 {
    font-size: 24px;
}

.deal-card p {
    padding: 20px;
    color: #6b7280;
}

.deal-savings {
    background: #dcfce7;
    border: 1px solid #86efac;
    padding: 15px;
    margin: 0 20px 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #15803d;
}

.deal-card button {
    margin: 0 20px 20px;
}

/* Alert Box */
.alert-box {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: 6px;
    color: #92400e;
}

/* Content Section */
.content-section {
    background: #f9fafb;
    padding: 60px 20px;
}

.content-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 40px 20px;
}

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

.footer-grid h3 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-grid a, .footer-grid button {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    padding: 0;
}

.footer-grid a:hover, .footer-grid button:hover {
    color: white;
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0 20px;
}

.footer-disclaimer p {
    font-size: 12px;
    line-height: 1.6;
    color: #9ca3af;
    margin: 0;
}

.footer-disclaimer strong {
    color: #D1D5DB;
    font-weight: 700;
}

.footer-disclaimer a {
    color: #ef4444;
    text-decoration: underline;
}

.footer-disclaimer a:hover {
    color: #dc2626;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #9ca3af;
}

.footer-bottom .phone-link {
    color: #ef4444;
    font-weight: 600;
    text-decoration: none;
}

.footer-bottom .small {
    font-size: 12px;
    margin-top: 10px;
}

/* Sticky Elements */
.sticky-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    display: none;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D70026 0%, #A00020 100%);
    color: white;
    border: none;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(215,0,38,0.5);
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
    position: relative;
}

.floating-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D70026, #A00020);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-btn:hover::before {
    opacity: 0.5;
    animation: ripple 1s ease-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 25px rgba(215,0,38,0.5); }
    50% { transform: scale(1.1); box-shadow: 0 12px 35px rgba(215,0,38,0.6); }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 4px solid #D70026;
    padding: 15px;
    display: flex;
    gap: 10px;
    z-index: 98;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s;
}

.modal-lg {
    max-width: 800px;
}

.modal-scroll {
    max-height: 90vh;
    overflow-y: auto;
}

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    cursor: pointer;
    color: #9ca3af;
}

.modal-close:hover {
    color: #1f2937;
}

.modal-icon {
    font-size: 64px;
    text-align: center;
    margin-bottom: 20px;
}

.modal h2 {
    text-align: center;
    margin-bottom: 15px;
}

.modal p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 20px;
}

.modal-header-colored {
    background: #D70026;
    color: white;
    padding: 25px;
    margin: -40px -40px 30px -40px;
    border-radius: 16px 16px 0 0;
    position: relative;
}

.modal-header-colored .modal-close {
    color: white;
}

.modal-body {
    padding: 0 10px;
}

.modal-body h3 {
    font-size: 18px;
    margin: 20px 0 10px;
}

.modal form input,
.modal form select,
.modal form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
}

.modal form input:focus,
.modal form select:focus,
.modal form textarea:focus {
    outline: none;
    border-color: #D70026;
}

.benefits {
    background: #dcfce7;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.benefits p {
    text-align: left;
    color: #15803d;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.phone-link {
    color: #D70026;
    text-decoration: none;
    font-weight: 600;
}

.phone-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .menu-btn {
        display: none;
    }
    
    .mobile-sticky-bar {
        display: none;
    }
    
    .sticky-call-btn {
        display: block;
    }
    
    .form-row {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .deals-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .vehicles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile-Specific Optimizations */
@media (max-width: 767px) {
    /* Larger touch targets for mobile */
    .btn {
        padding: 14px 20px;
        font-size: 16px;
        min-height: 48px;
        min-width: 48px;
    }
    
    .btn-lg {
        padding: 16px 24px;
        font-size: 18px;
    }
    
    /* Better mobile typography */
    body {
        font-size: 16px;
    }
    
    .hero h1 {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .phone-number {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    /* Mobile spacing */
    .hero {
        padding: 40px 15px 80px;
    }
    
    .section {
        padding: 40px 15px;
    }
    
    .vehicles-section {
        padding: 40px 15px 80px;
    }
    
    .cta-banner {
        padding: 40px 15px;
    }
    
    .content-section {
        padding: 40px 15px;
    }
    
    /* Better mobile forms */
    .booking-form {
        padding: 20px;
        border-radius: 12px;
    }
    
    .form-group input,
    .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 14px;
    }
    
    /* Mobile-friendly cards */
    .vehicle-card {
        padding: 20px;
    }
    
    .call-box {
        min-width: auto;
        width: 100%;
        padding: 25px 20px;
    }
    
    /* Mobile hero layout */
    .hero-content {
        flex-direction: column;
        margin-top: 30px;
    }
    
    .hero-text-content {
        width: 100%;
    }
    
    .hero-description {
        font-size: 16px;
        margin: 15px 0 25px;
    }
    
    .hero-features {
        gap: 20px;
        justify-content: space-between;
    }
    
    .hero-feature-item {
        flex: 1;
        min-width: 80px;
    }
    
    .feature-number {
        font-size: 28px;
    }
    
    .feature-text {
        font-size: 12px;
    }
    
    .hero-badges {
        gap: 8px;
    }
    
    .badge {
        font-size: 12px;
        padding: 8px 14px;
    }
    
    /* Bottom padding for sticky bar */
    body {
        padding-bottom: 80px;
    }
    
    /* Mobile modal */
    .modal-content {
        padding: 30px 20px;
        margin: 20px;
        max-height: 85vh;
    }
    
    .modal-lg {
        max-width: 95%;
    }
    
    /* Mobile header */
    .header-content {
        padding: 0 10px;
    }
    
    .logo a {
        font-size: 22px;
    }
    
    /* Stack buttons vertically on mobile */
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .vehicle-actions {
        grid-template-columns: 1fr;
    }
    
    .vehicle-actions .btn {
        width: 100%;
    }
    
    /* Mobile deals */
    .deal-card {
        margin-bottom: 20px;
    }
    
    /* Prevent horizontal scroll */
    .container {
        padding: 0 15px;
        overflow-x: hidden;
    }
    
    /* Mobile-optimized images */
    .vehicle-image {
        min-height: 180px;
        padding: 20px;
    }
    
    /* Larger tap targets for links */
    .mobile-menu a,
    .mobile-menu button {
        padding: 16px 0;
        font-size: 16px;
    }
    
    .footer-grid a,
    .footer-grid button {
        padding: 8px 0;
        font-size: 15px;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .phone-number {
        font-size: 24px;
    }
    
    .btn-lg {
        padding: 14px 20px;
        font-size: 16px;
    }
}

/* Landscape mobile optimization */
@media (max-width: 767px) and (orientation: landscape) {
    .hero {
        padding: 30px 15px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .modal-content {
        max-height: 90vh;
        overflow-y: auto;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .btn {
        border-width: 3px;
    }
    
    .vehicle-card {
        border: 2px solid #000;
    }
}
