/* ============================================
   RZA Rent A Car - Modern Premium Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    --color-primary: #D4AF37;
    --color-primary-dark: #B8941F;
    --color-primary-light: #E8D5A3;
    --color-black: #000000;
    --color-black-light: #1A1A1A;
    --color-black-lighter: #2C2C2C;
    --color-white: #FFFFFF;
    --color-gray: #333333;
    --color-gray-dark: #666666;
    --color-gray-light: #4A4A4A;
    --color-text: #FFFFFF;
    --color-text-light: #CCCCCC;
    --color-text-secondary: #999999;
    --color-border: #333333;
    --color-border-light: #4A4A4A;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-black);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    background-color: var(--color-black);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding: 0.5rem 0;
}

/* Hide mobile menu icons on desktop */
.nav-menu a .mobile-menu-icon,
.nav-menu a .mobile-menu-text {
    display: none;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-primary);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
}

.btn-reserve {
    background-color: var(--color-primary);
    color: var(--color-white) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-reserve:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-reserve::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #d4af37;
    transition: var(--transition);
    border-radius: 2px;
    display: block;
}

.mobile-menu-toggle:hover span {
    background-color: #e8d5a3;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background-color: #d4af37;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background-color: #d4af37;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 26, 26, 0.1) 100%),
                url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1920&h=1080&fit=crop') center/cover;
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Quick Reservation Form */
.quick-reservation {
    background: var(--color-black-lighter);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin-top: 2rem;
    border: 1px solid var(--color-border);
}

.quick-reservation h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--color-border);
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--color-black-lighter);
    color: var(--color-text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Buttons */
.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    display: inline-block;
    width: 100%;
}

.btn-secondary:hover {
    background-color: var(--color-black-light);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    padding: 0.75rem 2rem;
    border: 2px solid var(--color-primary);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    display: inline-block;
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.vehicle-card {
    background: var(--color-black-lighter);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.vehicle-image {
    width: 100%;
    height: 240px;
    background-color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    overflow: hidden;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.05);
}

.vehicle-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.vehicle-badge-premium {
    background-color: var(--color-black);
}

.vehicle-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.vehicle-info .btn-primary,
.vehicle-info .btn-reserve {
    width: 100%;
    margin-top: auto;
}

.vehicle-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.vehicle-specs {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.spec-item {
    background-color: var(--color-black-light);
    border: 1px solid var(--color-border);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.vehicle-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-period {
    font-size: 1rem;
    color: var(--color-text-light);
}

.section-footer {
    text-align: center;
    margin-top: 2rem;
}

/* ============================================
   Why Choose Us
   ============================================ */
.why-choose-us {
    padding: 4rem 0;
    background-color: var(--color-black);
}

.why-choose-us .section-header h2 {
    color: var(--color-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ============================================
   Page Header
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* ============================================
   Vehicles Page
   ============================================ */
.filter-section {
    padding: 2rem 0;
    background-color: var(--color-black);
    border-bottom: 1px solid var(--color-border);
}

.filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.filter-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.filter-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--color-border);
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 1rem;
    background-color: var(--color-black-lighter);
    color: var(--color-text);
    cursor: pointer;
}

.vehicles-page {
    padding: 3rem 0;
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: var(--color-text-light);
    font-size: 1.1rem;
}

.no-results p {
    color: var(--color-text-light);
}

/* ============================================
   Reservation Page
   ============================================ */
.reservation-page {
    padding: 3rem 0;
}

.reservation-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.reservation-form-container {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.reservation-form-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--color-black);
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 1.5rem;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--color-primary);
}

.reservation-summary {
    background: var(--color-gray-light);
    padding: 2rem;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.reservation-summary h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-black);
}

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
}

.summary-label {
    font-weight: 500;
    color: var(--color-text);
}

.summary-value {
    color: var(--color-text-light);
    text-align: right;
}

.summary-divider {
    height: 2px;
    background-color: var(--color-primary);
    margin: 0.5rem 0;
}

.summary-total {
    border-bottom: none;
    padding-top: 1rem;
}

.summary-total .summary-label,
.summary-total .summary-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* ============================================
   Services Page
   ============================================ */
.services-page {
    padding: 3rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.service-card {
    background: var(--color-black-lighter);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid var(--color-border);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--color-text);
}

.service-card .btn-secondary {
    margin-top: auto;
}

.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.cta-section .btn-primary:hover {
    background-color: var(--color-gray-light);
}

/* ============================================
   Contact Page
   ============================================ */
.contact-page {
    padding: 3rem 0;
}

.contact-info-full {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-full h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--color-white);
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--color-black-lighter);
    border: 2px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
    text-align: center;
}

.contact-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--color-text);
    transition: var(--transition);
}

.contact-card:hover .contact-link {
    color: var(--color-primary);
}

.contact-icon-svg {
    width: 48px;
    height: 48px;
    color: var(--color-primary);
    transition: var(--transition);
}

.contact-card:hover .contact-icon-svg {
    transform: scale(1.1);
}

.contact-link h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    margin: 0;
}

.contact-link p {
    color: var(--color-text-light);
    margin: 0;
    font-size: 0.95rem;
}

.contact-card-address .contact-link p,
.contact-card-hours .contact-link p {
    margin-bottom: 0.5rem;
}

.contact-card-address .contact-link p:last-child,
.contact-card-hours .contact-link p:last-child {
    margin-bottom: 0;
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
    transition: var(--transition);
    text-decoration: none;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    opacity: 0.9;
}


.map-section {
    padding: 3rem 0;
    background-color: var(--color-black);
}

.map-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--color-white);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    border: none;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    text-decoration: none;
}

.footer-contact-link:hover {
    color: var(--color-primary);
    padding-left: 0;
}

.footer-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-address .footer-icon {
    margin-top: 2px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 968px) {
    .reservation-wrapper {
        grid-template-columns: 1fr;
    }

    .reservation-summary {
        position: static;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-toggle span {
        width: 26px;
        height: 3px;
        background-color: #d4af37;
    }

    .mobile-menu-toggle:hover span,
    .mobile-menu-toggle:focus span {
        background-color: #e8d5a3;
    }

    .mobile-menu-toggle:focus {
        outline: 2px solid rgba(212, 175, 55, 0.5);
        outline-offset: 2px;
        border-radius: 4px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 200px;
        max-width: 80vw;
        background-color: #000000;
        flex-direction: column;
        padding: 0.75rem 0;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        z-index: 1001;
        border: 1px solid #d4af37;
        border-radius: 0 0 0 8px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .nav-menu a {
        display: flex;
        align-items: center;
        padding: 1rem 1.5rem;
        color: #d4af37;
        font-weight: 600;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        transition: var(--transition);
        text-decoration: none;
        line-height: 1.5;
    }

    .mobile-menu-icon {
        width: 20px;
        height: 20px;
        margin-right: 10px;
        flex-shrink: 0;
        display: inline-block !important;
        vertical-align: middle;
        transition: transform 0.2s ease;
    }

    .mobile-menu-text {
        color: #d4af37;
        font-weight: 600;
        display: inline-block !important;
    }

    .nav-menu li:first-child a {
        padding-top: 1rem;
    }

    .nav-menu li:last-child a {
        border-bottom: none;
        padding-bottom: 1rem;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background-color: rgba(212, 175, 55, 0.2);
        color: #d4af37;
    }

    .nav-menu a:hover .mobile-menu-icon,
    .nav-menu a.active .mobile-menu-icon {
        transform: scale(1.1);
    }

    .nav-menu a:focus {
        outline: 2px solid rgba(212, 175, 55, 0.5);
        outline-offset: -2px;
    }

    .nav-menu a.active::after {
        display: none;
    }

    .logo-img {
        height: 34px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .quick-reservation {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .vehicles-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-image {
        height: 200px;
        padding: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .filters {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .quick-reservation {
        padding: 1.25rem;
    }

    .quick-reservation h2 {
        font-size: 1.25rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .vehicle-image {
        height: 180px;
        padding: 0.75rem;
    }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vehicle-card,
.service-card,
.feature-item {
    animation: fadeIn 0.6s ease-out;
}

/* ============================================
   Contact Modal
   ============================================ */
.contact-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
    animation: fadeIn 0.3s ease-out;
}

.contact-modal {
    background: var(--color-black-lighter);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.3s ease-out;
}

.contact-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-text-light);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-modal-close:hover {
    color: var(--color-black);
    transform: rotate(90deg);
}

.contact-modal h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.contact-modal > p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    transition: var(--transition);
    text-decoration: none;
    color: var(--color-text);
    background: var(--color-black-light);
}

.contact-option:hover {
    border-color: var(--color-primary);
    background-color: var(--color-gray-light);
    transform: translateX(5px);
}

.contact-option-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: var(--color-primary);
}

.contact-option-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-option-content strong {
    font-size: 1.1rem;
    color: var(--color-white);
    font-weight: 600;
}

.contact-option-content span {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.contact-option-whatsapp:hover {
    border-color: #25D366;
    background-color: rgba(37, 211, 102, 0.05);
}

.contact-option-phone:hover {
    border-color: var(--color-primary);
}

.contact-option-email:hover {
    border-color: var(--color-primary);
}

.contact-option-instagram:hover {
    border-color: transparent;
    background: linear-gradient(45deg, rgba(240, 148, 51, 0.2) 0%, rgba(230, 104, 60, 0.2) 25%, rgba(220, 39, 67, 0.2) 50%, rgba(204, 35, 102, 0.2) 75%, rgba(188, 24, 136, 0.2) 100%);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .contact-modal {
        padding: 1.5rem;
    }

    .contact-modal h3 {
        font-size: 1.5rem;
    }

    .contact-option {
        padding: 1rem;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

.logo img{
  height:42px;
  width:auto;
  display:block;
}
.hero {
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: url("./Assets/Cars/Hyundai.png") no-repeat center;
    background-size: 350px;

    opacity: 0.08;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}
