/**
 * AAN Rent-a-Car - Public Website Styles
 * Modern, mobile-first responsive design with 2025 aesthetics
 */

/* ============================================
   DESIGN SYSTEM - CSS VARIABLES
   ============================================ */
:root {
    /* Primary Colors - Professional Blue */
    --primary: #1976d2;
    --primary-dark: #1565c0;
    --primary-light: #42a5f5;
    --primary-hover: #1e88e5;

    /* Accent - Luxury Gold */
    --accent: #ffa726;
    --accent-dark: #f57c00;
    --accent-light: #ffb74d;

    /* Status Colors */
    --success: #4caf50;
    --success-dark: #388e3c;
    --warning: #ff9800;
    --error: #f44336;
    --info: #2196f3;

    /* Neutral Grays */
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;

    /* Typography Scale */
    --font-xs: 0.75rem;    /* 12px */
    --font-sm: 0.875rem;   /* 14px */
    --font-base: 1rem;     /* 16px */
    --font-lg: 1.125rem;   /* 18px */
    --font-xl: 1.25rem;    /* 20px */
    --font-2xl: 1.5rem;    /* 24px */
    --font-3xl: 2rem;      /* 32px */
    --font-4xl: 2.5rem;    /* 40px */

    /* Spacing Scale */
    --space-xs: 0.25rem;   /* 4px */
    --space-sm: 0.5rem;    /* 8px */
    --space-md: 1rem;      /* 16px */
    --space-lg: 1.5rem;    /* 24px */
    --space-xl: 2rem;      /* 32px */
    --space-2xl: 3rem;     /* 48px */

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Z-Index Scale */
    --z-base: 1;
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* ============================================
   BASE STYLES & RESETS
   ============================================ */
* {
    box-sizing: border-box;
}

body {
    font-size: var(--font-base);
    line-height: 1.6;
    color: var(--gray-900);
    background-color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Touch-friendly minimum sizes */
.btn,
button,
input[type="submit"] {
    min-height: 44px;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

input,
select,
textarea {
    min-height: 44px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    box-shadow: var(--shadow-md);
    background-color: white !important;
    padding: 1rem 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    font-weight: 700;
    font-size: var(--font-xl);
    color: var(--primary) !important;
    transition: color var(--transition-base);
}

.navbar-brand:hover {
    color: var(--primary-dark) !important;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
}

.nav-link {
    color: var(--gray-700) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
    background-color: var(--gray-100);
}

/* Mobile menu improvements */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: white;
        padding: 1rem;
        margin-top: 1rem;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        animation: slideDown var(--transition-base);
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        border-bottom: 1px solid var(--gray-200);
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }

    .navbar-nav .btn {
        margin-top: 0.5rem;
        width: 100%;
    }
}

/* ============================================
   HERO SECTION - MODERN GRADIENT
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    opacity: 0.3;
}

.hero-section .container {
    position: relative;
    z-index: var(--z-base);
}

.hero-section h1 {
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s var(--transition-base);
}

.hero-section .lead {
    opacity: 0.95;
    animation: fadeInUp 1s var(--transition-base);
}

.hero-section .btn {
    animation: fadeInUp 1.2s var(--transition-base);
}

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

@media (max-width: 767px) {
    .hero-section {
        padding: 2.5rem 0;
        text-align: center;
    }

    .hero-section h1 {
        font-size: var(--font-3xl);
    }

    .hero-section .lead {
        font-size: var(--font-base);
    }

    .hero-section .btn-lg {
        width: 100%;
        margin-top: 1rem;
    }
}

/* ============================================
   DUAL CURRENCY DISPLAY
   ============================================ */
.price-display {
    border-top: 1px solid var(--gray-200);
    padding-top: 1rem;
}

.dual-currency-price {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.usd-price {
    font-size: var(--font-2xl);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.dop-price {
    font-size: var(--font-base);
    font-weight: 400;
    color: var(--gray-600);
}

/* Inline dual currency */
.dual-currency-inline {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.dual-currency-inline .usd-price {
    font-size: var(--font-xl);
}

.dual-currency-inline .dop-price {
    font-size: var(--font-sm);
}

/* ============================================
   VEHICLE CARDS - MODERN DESIGN
   ============================================ */
.vehicle-card {
    transition: all var(--transition-base);
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.vehicle-card .card-img-top {
    height: 220px;
    object-fit: cover;
    background-color: var(--gray-200);
    transition: transform var(--transition-slow);
}

.vehicle-card:hover .card-img-top {
    transform: scale(1.05);
}

.vehicle-card .card-body {
    padding: 1.5rem;
}

.vehicle-card .card-title {
    font-weight: 600;
    font-size: var(--font-lg);
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.vehicle-features {
    font-size: var(--font-sm);
    color: var(--gray-600);
}

.vehicle-features i {
    color: var(--primary);
    margin-right: var(--space-xs);
}

/* Skeleton loading state */
.skeleton-card {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: var(--radius-lg);
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Mobile vehicle card adjustments */
@media (max-width: 575px) {
    .vehicle-card .card-img-top {
        height: 180px;
    }
}

/* ============================================
   VEHICLE DETAIL PAGE
   ============================================ */
.vehicle-detail-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.vehicle-detail-carousel {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.vehicle-detail-carousel .carousel-item img {
    height: 450px;
    object-fit: cover;
}

@media (max-width: 767px) {
    .vehicle-detail-carousel .carousel-item img {
        height: 250px;
    }
}

.spec-item {
    padding: 1rem;
    background-color: var(--gray-50);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
}

.spec-item:hover {
    background-color: white;
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.spec-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 1rem;
    min-width: 24px;
}

.spec-item strong {
    display: block;
    font-size: var(--font-sm);
    color: var(--gray-600);
    font-weight: 600;
}

.spec-item span {
    display: block;
    font-size: var(--font-base);
    font-weight: 500;
    color: var(--gray-900);
}

/* ============================================
   AVAILABILITY CALENDAR
   ============================================ */
.availability-calendar {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-lg);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--gray-200);
}

.calendar-header h3 {
    font-size: var(--font-xl);
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.calendar-nav-btn {
    background: var(--gray-100);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    color: var(--gray-700);
    font-size: var(--font-lg);
}

.calendar-nav-btn:hover:not(:disabled) {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.calendar-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: var(--space-sm);
}

.calendar-weekdays div {
    text-align: center;
    font-size: var(--font-sm);
    font-weight: 600;
    color: var(--gray-700);
    padding: var(--space-sm);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: var(--font-sm);
    font-weight: 500;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
    background: white;
    position: relative;
}

.calendar-day.empty {
    cursor: default;
    opacity: 0;
}

.calendar-day.past {
    color: var(--gray-400);
    cursor: not-allowed;
    text-decoration: line-through;
}

.calendar-day.today {
    border-color: var(--primary);
    font-weight: 700;
}

.calendar-day.available:hover {
    background: var(--primary-light);
    color: white;
    transform: scale(1.1);
}

.calendar-day.reserved {
    background: var(--gray-300);
    color: var(--gray-600);
    cursor: not-allowed;
    position: relative;
}

.calendar-day.reserved::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--gray-600);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.calendar-day.maintenance {
    background: var(--warning);
    color: white;
    cursor: not-allowed;
}

.calendar-day.maintenance::before {
    content: '🔧';
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 10px;
}

.calendar-day.selected {
    background: var(--primary);
    color: white;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.calendar-day.in-range {
    background: var(--primary-light);
    color: white;
}

.calendar-day.range-start,
.calendar-day.range-end {
    background: var(--primary);
    color: white;
    font-weight: 700;
}

.calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gray-200);
    font-size: var(--font-sm);
}

.calendar-legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.legend-dot {
    width: 16px;
    height: 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-300);
}

.legend-dot.available {
    background: white;
}

.legend-dot.reserved {
    background: var(--gray-300);
}

.legend-dot.maintenance {
    background: var(--warning);
}

.legend-dot.selected {
    background: var(--primary);
}

.selected-range-info {
    margin-top: var(--space-lg);
    padding: var(--space-lg);
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 2px solid var(--primary-light);
}

.selected-range-info h4 {
    font-size: var(--font-lg);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.selected-range-info .info-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--gray-200);
}

.selected-range-info .info-row:last-child {
    border-bottom: none;
    padding-top: var(--space-md);
    margin-top: var(--space-sm);
    font-size: var(--font-lg);
    font-weight: 700;
}

/* Mobile calendar */
@media (max-width: 575px) {
    .calendar-day {
        font-size: var(--font-xs);
    }

    .calendar-weekdays div {
        font-size: var(--font-xs);
        padding: var(--space-xs);
    }
}

/* ============================================
   BOOKING FORM & SUMMARY
   ============================================ */
.booking-summary {
    position: sticky;
    top: 100px;
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

@media (max-width: 991px) {
    .booking-summary {
        position: static;
        margin-bottom: 2rem;
    }
}

.booking-summary .summary-title {
    font-size: var(--font-xl);
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary);
    color: var(--gray-900);
}

.booking-summary .summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

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

.booking-summary .summary-total {
    font-size: var(--font-2xl);
    font-weight: 700;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--gray-300);
    text-align: center;
}

.booking-summary .summary-total .usd-price {
    color: var(--primary);
}

.booking-summary .summary-total .dop-price {
    color: var(--gray-600);
    font-size: var(--font-lg);
}

/* ============================================
   FORM ELEMENTS - MODERN STYLING
   ============================================ */
.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
    font-size: var(--font-sm);
}

.form-control,
.form-select {
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    transition: all var(--transition-base);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
    outline: none;
}

.form-control.is-invalid {
    border-color: var(--error);
}

.form-control.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.1);
}

.form-control.is-valid {
    border-color: var(--success);
}

.form-control.is-valid:focus {
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.invalid-feedback {
    color: var(--error);
    font-size: var(--font-sm);
    margin-top: var(--space-xs);
}

.valid-feedback {
    color: var(--success);
    font-size: var(--font-sm);
    margin-top: var(--space-xs);
}

/* ============================================
   BUTTONS - MODERN DESIGN
   ============================================ */
.btn {
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(0);
}

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

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
    background-color: var(--success);
    border-color: var(--success);
    color: white;
    font-weight: 600;
}

.btn-whatsapp:hover {
    background-color: var(--success-dark);
    border-color: var(--success-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp i {
    font-size: 1.25rem;
    vertical-align: middle;
}

/* ============================================
   BADGES & STATUS
   ============================================ */
.badge-available {
    background-color: var(--success);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: var(--font-sm);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.badge-unavailable {
    background-color: var(--error);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: var(--font-sm);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

/* ============================================
   FILTERS - MODERN SIDEBAR
   ============================================ */
.filters-card {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.filters-card .card-header {
    background: var(--primary);
    color: white;
    padding: 1rem 1.5rem;
    font-weight: 600;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.feature-icon {
    transition: transform var(--transition-base);
}

.why-choose-us .col-md-3:hover .feature-icon i {
    transform: scale(1.2) rotate(5deg);
    color: var(--primary-dark);
}

@media (max-width: 767px) {
    .why-choose-us .row > div {
        margin-bottom: 2rem;
    }

    .why-choose-us .row > div:last-child {
        margin-bottom: 0;
    }
}

/* ============================================
   LOADING STATES
   ============================================ */
.loading-spinner {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: var(--radius-full);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--success);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-xl);
    z-index: var(--z-fixed);
    transition: all var(--transition-base);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-2xl);
    color: white;
}

/* ============================================
   STICKY MOBILE BUTTON
   ============================================ */
@media (max-width: 767px) {
    .sticky-mobile-btn {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: var(--z-sticky);
        padding: 1rem;
        background-color: white;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
        animation: slideUp var(--transition-base);
    }

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

    .sticky-mobile-btn .btn {
        width: 100%;
        font-size: var(--font-lg);
    }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-truncate-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Fade in animation utility */
.fade-in {
    animation: fadeIn 0.5s var(--transition-base);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Slide in from left */
.slide-in-left {
    animation: slideInLeft 0.5s var(--transition-base);
}

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

/* Slide in from right */
.slide-in-right {
    animation: slideInRight 0.5s var(--transition-base);
}

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

/* ============================================
   RESPONSIVE GRID ADJUSTMENTS
   ============================================ */

/* Mobile: 1 column */
@media (max-width: 575px) {
    .vehicle-grid .col-md-4,
    .vehicle-grid .col-md-6 {
        margin-bottom: 1.5rem;
    }
}

/* Tablet: 2 columns */
@media (min-width: 576px) and (max-width: 991px) {
    .vehicle-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Desktop: 3 columns */
@media (min-width: 992px) {
    .vehicle-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .navbar,
    .whatsapp-float,
    .sticky-mobile-btn,
    .mobile-filters-toggle,
    footer {
        display: none !important;
    }

    .container {
        max-width: 100%;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

/* Focus visible for keyboard navigation */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

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