:root {
    --color-bg: #f9f7f4;
    --color-primary: #e51d27;
    --color-dark: #111111;
    --color-grey: #6b6b6b;
    --color-white: #ffffff;
    --radius-card: 18px;
    --shadow-soft: 0 18px 45px rgba(0,0,0,0.08);
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--color-dark);
    background: var(--color-bg);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.sticky {
    background: white;
    box-shadow: var(--shadow-soft);
}

.nav {
    padding: 1rem 0;
    border-bottom: 1px solid #e1e1e1;
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h2 {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--color-dark);
}

.logo-image {
    height: 25px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    vertical-align: middle;
}

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

.nav-link {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.btn-nav {
    padding: 0.5rem 1.5rem;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: #e6a01d;
    color: white;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    transition: background-image 0.5s ease-in-out;
}

.hero-slide {
    width: 100%;
    max-width: 600px;
    max-height: 400px;
    height: auto;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-slide.active {
    opacity: 1;
    position: relative;
}

#hero-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero-slider .slider-indicator {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

#hero-slider .slider-indicator .scroll-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid var(--color-primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

#hero-slider .slider-indicator .scroll-dot:hover {
    background: var(--color-primary);
    transform: scale(1.2);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 50 Q25 30 50 50 T100 50 V100 H0 Z' fill='%23e51d2708'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='150' height='150' viewBox='0 0 150 150' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 75 Q37.5 45 75 75 T150 75 V150 H0 Z' fill='%23e51d2705'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 100 Q50 60 100 100 T200 100 V200 H0 Z' fill='%23e51d2703'/%3E%3C/svg%3E");
    background-size: 100px 100px, 150px 150px, 200px 200px;
    background-position: 0 20%, 50% 40%, 100% 60%;
    background-repeat: repeat-x;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: 
        url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 60 Q30 36 60 60 T120 60 V120 H0 Z' fill='%23e51d2706'/%3E%3C/svg%3E");
    background-size: 120px 120px;
    background-position: 0 30%;
    background-repeat: repeat-x;
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
}

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

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

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 12px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    max-width: 400px;
    line-height: 1.5;
    font-weight: 400;
}

.booking-widget {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    max-width: 480px;
    position: relative;
}

.return-fields {
    display: none;
}

.booking-tabs {
    display: flex;
    margin-bottom: 1.5rem;
    background: #f8f9fa;
    padding: 0.3rem;
    border-radius: 8px;
    gap: 0.3rem;
}

.tab-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: var(--color-grey);
    flex: 1;
}

.tab-btn.active {
    background: var(--color-primary);
    color: white;
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    overflow: visible;
}

.return-fields {
    transition: all 0.3s ease;
    overflow: hidden;
}

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

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

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

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.85rem;
}

.form-input {
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    background: white;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(229, 29, 39, 0.2);
}

.btn-search {
    padding: 1rem 2rem;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 1rem;
}

.btn-search:hover {
    background: #c41e3a;
    transform: translateY(-2px);
}

.hero-car {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-car img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 10;
    display: flex;
    gap: 8px;
}

.scroll-indicator .scroll-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator .scroll-dot.active {
    background: #fff;
    border-color: #fff;
    box-shadow: 0 2px 12px rgba(255, 255, 255, 0.4);
}

.scroll-indicator .scroll-dot:hover {
    background: #fff;
    border-color: #fff;
    transform: scale(1.2);
}

.scroll-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.slider-indicator {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-indicator .scroll-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid var(--color-primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-indicator .scroll-dot:hover {
    background: var(--color-primary);
    transform: scale(1.2);
}

/* Intro Section */
.intro {
    padding: 80px 0;
    background: white;
}

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

.intro-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.intro-text p {
    color: var(--color-grey);
    margin-bottom: 1rem;
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--color-dark);
    color: white;
}

.intro-image img {
    width: 100%;
    border-radius: var(--radius-card);
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background: var(--color-bg);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

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

.category-card {
    position: relative;
    height: 300px;
    border-radius: var(--radius-card);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 2rem;
    color: white;
}

.category-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Find Cars Section */
.find-cars {
    padding: 80px 0;
    background: white;
}

.find-cars-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.find-cars-text p {
    font-size: 1.1rem;
    color: var(--color-grey);
}

.phone-mockup {
    background: var(--color-primary);
    padding: 2rem;
    border-radius: var(--radius-card);
    text-align: center;
}

.phone-mockup img {
    width: 200px;
    border-radius: 15px;
}

/* Existing Search & Cars Grid */
.existing-search-grid {
    margin-top: 4rem;
}

.search-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.search-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    margin-bottom: 3rem;
}

.search-form-inline {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 1rem;
    align-items: end;
}

.search-input {
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
}

.btn-search-inline {
    padding: 0.75rem 1.5rem;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    padding: 1rem 0;
}

.vehicle-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

.vehicle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--color-primary), #c41e3a);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vehicle-card:hover::before {
    opacity: 1;
}

.vehicle-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 80px rgba(0,0,0,0.15);
}

.vehicle-image {
    position: relative;
    overflow: hidden;
    height: 240px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #ff6347 0%, #e53e3e 100%);
    color: white;
    padding: 4px 10px 4px 12px;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    z-index: 15;
    border-radius: 0 0 0 8px;
    box-shadow: 0 2px 8px rgba(229, 62, 62, 0.4);
    transform: translateZ(0);
    transition: all 0.3s ease;
}

.vehicle-tag::before {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 0;
    height: 0;
    border-left: 8px solid #c53030;
    border-bottom: 8px solid transparent;
}

.vehicle-card:hover .vehicle-tag {
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.5);
}

.vehicle-image img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.1));
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.05);
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.15));
}

.vehicle-info {
    padding: 2rem;
}

.vehicle-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.vehicle-details {
    display: none !important;
}

.vehicle-specs {
    color: var(--color-grey);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vehicle-specs svg {
    vertical-align: middle;
}

.vehicle-locations {
    display: none;
}

.vehicle-pricing {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.price strong {
    font-size: 1.2rem;
    color: var(--color-dark);
    display: block;
}

.price small {
    display: block;
    color: var(--color-grey);
    font-weight: normal;
}

.btn-book {
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #c41e3a 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-book:hover {
    background: linear-gradient(135deg, #c41e3a 0%, var(--color-primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    color: white;
}

/* Dream Car Section */
.dream-car {
    padding: 80px 0;
    background: var(--color-bg);
    text-align: center;
}

.car-showcase {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.car-showcase img {
    width: 250px;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius-card);
}

.car-specs {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.spec-item i {
    font-size: 2rem;
    color: var(--color-primary);
}

.price-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    max-width: 800px;
    margin: 0 auto;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-dark);
}

.price-actions {
    display: flex;
    gap: 1rem;
}

.btn-outline {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary {
    padding: 1rem 2rem;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
}

/* Stories Section */
.stories {
    padding: 80px 0;
    background: white;
}

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

.story-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.story-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-primary);
    color: white;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.story-content {
    padding: 20px;
}

.story-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.4;
    color: #333;
}

.story-meta {
    color: #999;
    font-size: 0.8rem;
    margin: 0;
}

.story-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Brands Section */
.brands {
    padding: 40px 0;
    background: var(--color-bg);
}

.brand-list {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.brand-item {
    padding: 1rem 2rem;
    background: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
}

/* Mobile App Section */
.mobile-app {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    padding: 80px 0;
    color: white;
}

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

.app-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.app-text p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.app-buttons {
    display: flex;
    gap: 1rem;
}

.app-btn {
    padding: 1rem 2rem;
    background: white;
    color: var(--color-dark);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
}

.phone-large img {
    width: 300px;
    border-radius: 20px;
}

/* Footer */
.footer {
    background: var(--color-dark);
    color: white;
}

.newsletter {
    background: #222;
    padding: 2rem 0;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 25px;
    width: 300px;
}

.newsletter-form button {
    padding: 0.75rem 2rem;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
}

.footer-main {
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

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

.link-column h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.link-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.link-column a:hover {
    color: var(--color-primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .booking-widget {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav .container {
        padding: 0 15px;
        position: relative;
    }
    
    .nav-brand h2 {
        font-size: 1rem;
    }
    
    .logo-image {
        height: 22px;
        max-width: 80px;
    }
    
    .nav-actions {
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
        gap: 0.5rem;
    }
    
    .nav-toggle {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .user-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .btn-nav {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-soft);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 1001;
    }
    
    .nav-menu.active {
        max-height: 400px;
        opacity: 1;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .hero-car,
    #hero-slider,
    .scroll-indicator {
        display: none;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    .booking-widget {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .booking-form {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .location-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .datetime-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .btn-search {
        grid-column: span 1;
        margin-top: 0.5rem;
    }
    
    .intro-content,
    .find-cars-content,
    .app-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .search-form-inline {
        grid-template-columns: 1fr;
    }
    
    .vehicles-grid {
        grid-template-columns: 1fr;
    }
    
    .car-showcase {
        flex-direction: column;
        align-items: center;
    }
    
    .car-specs {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .price-bar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

.btn-sold-out {
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    color: white;
    text-decoration: none;
    border: none !important;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: not-allowed;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
    transition: all 0.3s ease;
}
.btn-book {
    border: none !important;
}
.vehicle-pricing {
    min-height: 60px;
}

.price {
    flex: 1;
    min-width: 0;
}

.price small {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-book, .btn-sold-out {
    flex-shrink: 0;
    min-width: 100px;
}
.btn-book[disabled] {
    background: #6c757d !important;
    background-color: #6c757d !important;
    color: white !important;
    cursor: not-allowed !important;
    border: none !important;
}