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

:root {
    --primary-color: #1e40af;
    --primary-hover: #1e3a8a;
    --accent-gold: #f59e0b;
    --accent-gold-hover: #d97706;
    --text-dark: #111827;
    --text-light: #6b7280;
    --bg-light: #ffffff;
    --bg-section: #f9fafb;
    --border-color: #e5e7eb;
    --error-color: #ef4444;
    --success-color: #10b981;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    font-size: 16px;
}

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

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar {
    padding: 1.25rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
    position: static;
    height: 50px;
}

.logo img {
    height: 100%;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    flex-shrink: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-book {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white !important;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-left: 0.5rem;
}

.nav-link-book::after {
    display: none;
}

.nav-link-book:hover {
    background: linear-gradient(135deg, var(--primary-hover), var(--accent-gold));
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white !important;
}

.social-icons-header {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-shrink: 0;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-section);
    color: var(--text-dark);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hamburger Menu - Hidden by default (desktop) */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
    border-radius: var(--radius);
    transition: background-color 0.3s ease;
}

.hamburger-menu:hover {
    background-color: var(--bg-section);
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    display: block;
}

.hamburger-menu.active {
    background-color: var(--bg-section);
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
    background: var(--primary-color);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: var(--primary-color);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
    backdrop-filter: blur(4px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

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

.mobile-menu-content {
    padding: 5.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    animation: slideInLeft 0.4s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    display: block;
    padding: 1.125rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: var(--radius);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
    position: relative;
    margin: 0.25rem 0;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(30, 64, 175, 0.1), transparent);
    border-radius: var(--radius);
    transition: width 0.3s ease;
}

.mobile-nav-link:hover::before,
.mobile-nav-link:active::before {
    width: 100%;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background: linear-gradient(90deg, rgba(30, 64, 175, 0.05), transparent);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: 2rem;
    transform: translateX(4px);
}

.mobile-nav-link-book {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white !important;
    border-left-color: var(--primary-color) !important;
    text-align: center;
    margin-top: 1.5rem;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
    border-left: none !important;
}

.mobile-nav-link-book::before {
    display: none;
}

.mobile-nav-link-book:hover {
    background: linear-gradient(135deg, var(--primary-hover), var(--accent-gold));
    transform: translateY(-2px) translateX(0);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
    padding-left: 1.5rem;
}

.mobile-social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.mobile-social-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    color: var(--text-dark);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.25rem;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.mobile-social-icon:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    color: white;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 700px;
    height: 100vh;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-cars-gallery {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2px;
    z-index: 1;
    overflow: hidden;
}

.hero-car-item {
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.hero-car-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) contrast(1.1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
    transform: scale(1.05);
}

.hero-car-item:hover img {
    filter: brightness(0.8) contrast(1.2);
    transform: scale(1.1);
}

.hero-car-item:nth-child(1) img {
    animation: fadeInScale 1.2s ease-out;
}

.hero-car-item:nth-child(2) img {
    animation: fadeInScale 1.4s ease-out;
}

.hero-car-item:nth-child(3) img {
    animation: fadeInScale 1.6s ease-out;
}

.hero-car-item:nth-child(4) img {
    animation: fadeInScale 1.8s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(1.15);
    }
    to {
        opacity: 1;
        transform: scale(1.05);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.35), rgba(15, 23, 42, 0.45));
    z-index: 3;
}

.hero-car-item:nth-child(1) img {
    animation: slideInLeft 1s ease-out;
}

.hero-car-item:nth-child(2) img {
    animation: slideInUp 1.2s ease-out;
}

.hero-car-item:nth-child(3) img {
    animation: slideInDown 1.4s ease-out;
}

.hero-car-item:nth-child(4) img {
    animation: slideInRight 1.6s ease-out;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-hover));
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    border-radius: 2px;
}

/* Fleet Section */
.fleet-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

/* Fleet Filters Section */
.fleet-filters-section {
    margin: 2.5rem 0 3rem;
    padding: 0;
    background: transparent;
    width: 100%;
}

.vehicle-types-filter {
    margin-bottom: 2rem;
    text-align: left;
    width: 100%;
}

.filter-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.filter-section-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    border-radius: 2px;
}

.filter-section-title::after {
    display: none;
}

.vehicle-types-grid-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    width: 100%;
}

.vehicle-type-filter-card {
    background: white;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius);
    border: 2px solid var(--border-color);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.vehicle-type-filter-card:hover {
    border-color: var(--primary-color);
    background: var(--bg-section);
    transform: translateY(-2px);
}

.vehicle-type-filter-card.active {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}

.vehicle-type-filter-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.vehicle-type-filter-card:hover .vehicle-type-filter-icon,
.vehicle-type-filter-card.active .vehicle-type-filter-icon {
    transform: scale(1.1);
}

.vehicle-type-filter-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.vehicle-type-filter-card.active .vehicle-type-filter-name {
    color: var(--accent-gold-hover);
}

.vehicle-type-filter-desc {
    display: none;
}

/* Seating Filter */
.seating-filter {
    text-align: left;
    width: 100%;
}

.seating-filter .seating-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    width: 100%;
}

.seating-filter .seating-badge {
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--text-dark);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    cursor: pointer;
    font-family: inherit;
    position: relative;
    flex-shrink: 0;
}

.seating-filter .seating-badge:hover {
    border-color: var(--primary-color);
    background: var(--bg-section);
    transform: translateY(-2px);
    color: var(--primary-color);
}

.seating-filter .seating-badge.active {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-hover));
    color: white;
    border-color: var(--accent-gold);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.car-card {
    transition: all 0.3s ease;
}

.car-card.hidden {
    display: none;
}

.fleet-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.2), transparent);
}

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

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 1rem auto 0;
    line-height: 1.7;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.premium-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px 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.06);
    position: relative;
    display: flex;
    flex-direction: column;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.premium-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(30, 64, 175, 0.2);
}

.premium-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.2);
}

.premium-card.featured::before {
    opacity: 1;
}

.premium-card.luxury {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

.car-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.car-badge.best-value {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.car-badge.popular {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
}

.car-badge.luxury-badge {
    background: linear-gradient(135deg, var(--accent-gold), #d97706);
    color: white;
}

.car-badge.premium-badge {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.car-badge.family-badge {
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: white;
}

.car-badge.eco-badge {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    color: white;
}

.car-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}

.car-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-card:hover .car-image img {
    transform: scale(1.15);
}

.car-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.premium-card:hover .car-image-overlay {
    opacity: 1;
}

.car-category {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.car-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.car-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.car-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.car-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(245, 158, 11, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.car-rating i {
    font-size: 0.75rem;
    color: var(--accent-gold);
}

.car-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

.car-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.spec-item i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1rem;
}

.spec-item span {
    font-weight: 500;
    color: var(--text-dark);
}

.car-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

@media (max-width: 640px) {
    .car-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
}

.car-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.price-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price-amount .currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.price-amount .amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.price-amount .period {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.btn-fleet {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.25);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-fleet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-hover), var(--accent-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-fleet span,
.btn-fleet i {
    position: relative;
    z-index: 1;
}

.btn-fleet:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.35);
}

.btn-fleet:hover::before {
    opacity: 1;
}

.btn-fleet i {
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

.btn-fleet:hover i {
    transform: translateX(3px);
}

/* Services Section */
.services-section {
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.services-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.services-subtitle {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.services-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    border-radius: 2px;
}

.vehicle-options {
    text-align: center;
}

.seating-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.seating-badge {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    min-width: 100px;
    text-align: center;
}

.seating-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-hover));
}

.vehicle-types {
    text-align: center;
}

.vehicle-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.vehicle-type-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.vehicle-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.vehicle-type-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.vehicle-type-card:hover .vehicle-type-icon {
    transform: scale(1.1) rotate(5deg);
}

.vehicle-type-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.vehicle-type-desc {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

.services-offered {
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Pricing Table Section */
.pricing-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.pricing-table-wrapper {
    max-width: 900px;
    margin: 3rem auto 0;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.pricing-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
}

.pricing-table th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.pricing-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

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

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

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

.pricing-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.pricing-table td:nth-child(2) {
    color: var(--text-light);
    font-weight: 500;
}

.pricing-table td:last-child {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.car-type-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-note {
    padding: 1.5rem;
    background: #fef3c7;
    border-top: 2px solid var(--accent-gold);
    text-align: center;
}

.pricing-note p {
    margin: 0;
    color: #92400e;
    font-size: 0.95rem;
    font-weight: 500;
}

.pricing-note strong {
    color: #78350f;
}

@media (max-width: 768px) {
    .pricing-table {
        font-size: 0.9rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 1rem;
    }
    
    .pricing-table th {
        font-size: 1rem;
    }
    
    .pricing-table td:last-child {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .pricing-table {
        font-size: 0.85rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .pricing-table th {
        font-size: 0.9rem;
    }
    
    .pricing-table td:last-child {
        font-size: 0.95rem;
    }
}

/* Why Choose Us Section */
.why-choose-section {
    background-color: var(--bg-section);
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.2), transparent);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(30, 64, 175, 0.2);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    z-index: 1;
    position: relative;
}

.testimonial-rating i {
    color: var(--accent-gold);
    font-size: 1rem;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.25rem 0;
}

.testimonial-location {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

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

.feature-block {
    background-color: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.25rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-icon .inr-icon {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

.feature-block:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.feature-description {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Booking Section */
.booking-section {
    background-color: var(--bg-light);
}

.form-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

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

.required {
    color: var(--error-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group input[type="number"] {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.autocomplete-wrapper {
    position: relative;
}

.autocomplete-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    box-shadow: var(--shadow-lg);
}

.autocomplete-list.show {
    display: block;
}

.autocomplete-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid var(--border-color);
}

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

.autocomplete-item:hover,
.autocomplete-item.selected {
    background-color: var(--bg-section);
    color: var(--primary-color);
}

.autocomplete-item strong {
    color: var(--primary-color);
}


.form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.autocomplete-wrapper input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input.error {
    border-color: var(--error-color);
}

.error-message {
    color: var(--error-color);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    min-height: 1.25rem;
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

/* Messages */
.message {
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.message-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.message-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.message i {
    font-size: 1.25rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section {
    text-align: left;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    border-radius: 2px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.social-icons-footer {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-icon-footer {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.social-icon-footer:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.contact-item i {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-gold);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding-left: 0.5rem;
    position: relative;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--accent-gold);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 1.25rem;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-bottom a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Design */
/* Desktop - Ensure proper layout (769px and above) */
@media (min-width: 769px) {
    .hamburger-menu {
        display: none !important;
    }

    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }

    .nav-links {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-direction: row !important;
    }

    .social-icons-header {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .logo {
        position: static !important;
        transform: none !important;
        margin: 0 !important;
        left: auto !important;
        height: 45px !important;
    }
    
    .logo img {
        max-width: 180px !important;
    }

    .nav-content {
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
        position: relative !important;
        align-items: center !important;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }

    .nav-content {
        flex-wrap: nowrap;
        justify-content: center;
        position: relative;
        min-height: 40px;
    }

    .logo {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        margin: 0 !important;
        height: 40px !important;
    }
    
    .logo img {
        max-width: 150px !important;
    }

    .nav-links {
        display: none !important;
    }

    .social-icons-header {
        display: none !important;
    }

    .hamburger-menu {
        display: flex !important;
        position: absolute;
        left: 0;
        margin-left: 0;
    }

    .hero {
        min-height: 600px;
        height: 100vh;
        max-height: 700px;
    }

    .hero-cars-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-title::after {
        width: 60px;
    }

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

    .fleet-header {
        margin-bottom: 3rem;
    }

    .fleet-filters-section {
        margin: 2rem 0 2.5rem;
        padding: 0;
    }

    .vehicle-types-filter {
        margin-bottom: 1.5rem;
    }

    .filter-section-title {
        font-size: 1.15rem;
        margin-bottom: 0.875rem;
    }

    .vehicle-types-grid-filter {
        gap: 0.625rem;
    }

    .vehicle-type-filter-card {
        padding: 0.75rem 1.25rem;
    }

    .vehicle-type-filter-icon {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .vehicle-type-filter-name {
        font-size: 0.9rem;
    }

    .seating-filter .seating-grid {
        gap: 0.625rem;
    }

    .seating-filter .seating-badge {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .car-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-fleet {
        width: 100%;
        justify-content: center;
    }

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

    .services-content {
        gap: 2.5rem;
    }

    .seating-grid {
        gap: 0.75rem;
    }

    .seating-badge {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
        min-width: 80px;
    }

    .vehicle-types-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.25rem;
    }

    .vehicle-type-card {
        padding: 1.5rem 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .service-item {
        padding: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

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

    .form-card {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-info {
        align-items: center;
    }

    .social-icons-footer {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-content {
        flex-wrap: nowrap;
    }

    .mobile-menu {
        max-width: 100%;
    }

    .mobile-menu-content {
        padding: 4rem 1.5rem 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1.2rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-cars-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
    }

    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .fleet-filters-section {
        margin: 1.5rem 0 2rem;
        padding: 0;
    }

    .vehicle-types-filter {
        margin-bottom: 1.25rem;
    }

    .filter-section-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .filter-section-title::before {
        height: 20px;
    }

    .vehicle-types-grid-filter {
        gap: 0.5rem;
    }

    .vehicle-type-filter-card {
        padding: 0.625rem 1rem;
        flex-direction: column;
        gap: 0.5rem;
        min-width: 80px;
    }

    .vehicle-type-filter-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .vehicle-type-filter-name {
        font-size: 0.85rem;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
    }

    .seating-filter .seating-grid {
        gap: 0.5rem;
    }

    .seating-filter .seating-badge {
        padding: 0.625rem 1rem;
        font-size: 0.85rem;
    }

    .car-image-wrapper {
        height: 240px;
    }

    .car-info {
        padding: 1.5rem;
    }

    .car-name {
        font-size: 1.25rem;
    }

    .car-specs {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1rem;
    }

    .price-amount .amount {
        font-size: 1.75rem;
    }

    .car-footer {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-fleet {
        width: 100%;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .services-subtitle {
        font-size: 1.5rem;
    }

    .seating-grid {
        gap: 0.5rem;
    }

    .seating-badge {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        min-width: 70px;
    }

    .vehicle-types-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        font-size: 0.85rem;
    }
    
    .footer-bottom p {
        line-height: 1.6;
    }
}

