/* ============================================
   ACRUX INVESTMENT LIMITED - Car Rental System
   Primary: #008000 (Emerald Green)
   Dark: #1F2937
   Light: #F5F7FA
   ============================================ */

:root {
    /* Bootstrap Overrides */
    --bs-primary: #008000;
    --bs-primary-rgb: 0, 128, 0;
    --bs-link-color: #008000;
    --bs-link-hover-color: #006400;

    /* Custom Theme Variables */
    --primary: #008000;
    --primary-dark: #006400;
    --primary-light: #00a300;
    --primary-rgb: 0, 128, 0;
    --secondary: #1F2937;
    --accent: #F59E0B;
    --light: #F5F7FA;
    --dark: #111827;
    --gray: #6B7280;
    --gray-light: #9CA3AF;
    --border: #E5E7EB;
    --success: #10B981;
    --danger: #EF4444;
    --warning: #F59E0B;
    --info: #3B82F6;
    --body-bg: #ffffff;
    --body-color: #374151;
    --heading-color: #1F2937;
    --box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --box-shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
* { box-sizing: border-box; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--body-bg);
    color: var(--body-color);
    overflow-x: hidden;
    scroll-behavior: smooth;
}
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
::selection { background: var(--primary); color: white; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 { font-weight: 700; color: var(--heading-color); }
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 { font-weight: 800; }
.section-title { font-size: 2rem; font-weight: 800; margin-bottom: 0.5rem; }
.section-subtitle { color: var(--gray); font-size: 1.1rem; max-width: 600px; }
.section-header { margin-bottom: 3rem; }

/* ===== BOTONES ===== */
.btn {
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-size: 0.9rem;
}
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}
.btn-primary:hover, .btn-primary:focus {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.4);
}
.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}
.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}
.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; border-radius: var(--radius); }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.8rem; }
.btn-accent { background: var(--accent); border-color: var(--accent); color: #1F2937; }
.btn-accent:hover { background: #D97706; border-color: #D97706; color: white; }
.btn-outline-light { border-color: rgba(255,255,255,0.5); color: white; }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: white; color: white; }

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--secondary);
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    padding: 8px 0;
    position: relative;
    z-index: 1030;
}
.top-bar-info span { margin-right: 1.5rem; }
.top-bar-info i { margin-right: 5px; color: var(--primary-light); }
.btn-top-bar {
    background: rgba(255,255,255,0.1);
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}
.btn-top-bar:hover { background: var(--primary); color: white; }
.top-bar-social a:hover { color: var(--primary-light) !important; }

/* ===== NAVBAR ===== */
.navbar { padding: 0.75rem 0; transition: var(--transition); }
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1) !important; }
.navbar .brand-name { font-weight: 800; font-size: 1.4rem; color: var(--secondary); line-height: 1.1; }
.navbar .brand-tagline { font-size: 0.6rem; color: var(--primary); letter-spacing: 1px; font-weight: 600; }
.nav-link {
    font-weight: 500;
    color: var(--secondary) !important;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--primary) !important; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.content-card {
    background-color: #ffffff;
}
.nav-cta {
    background: var(--primary) !important;
    color: white !important;
    border: 2px solid var(--primary) !important;
}
.nav-cta:hover { background: var(--primary-dark) !important; border-color: var(--primary-dark) !important; }

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--secondary);
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}
.hero-section .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}
.hero-section .container { position: relative; z-index: 3; }
.hero-car-parallax {
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 55%;
    z-index: 2;
    pointer-events: none;
    transition: transform 0.1s ease-out;
}
.hero-car-parallax img.parallax-car {
    width: 100%;
    height: auto;
    filter: drop-shadow(-20px 20px 30px rgba(0,0,0,0.6));
    transform-origin: center center;
}
.hero-content { max-width: 720px; }
.hero-content .hero-badge {
    display: inline-block;
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--primary-light);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    backdrop-filter: blur(10px);
}
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 1rem;
}
.hero-content p.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}
.hero-buttons { margin-top: 2rem; }
.hero-content .hero-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}
.hero-content .hero-services span {
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    border: 1px solid rgba(255,255,255,0.15);
}

/* ===== SEARCH BAR ===== */
.search-bar {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}
.search-bar .search-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border: 1px solid var(--border);
}
.search-bar .form-label { font-weight: 600; color: var(--secondary); font-size: 0.85rem; }
.search-bar .form-control, .search-bar .form-select {
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    transition: var(--transition);
}
.search-bar .form-control:focus, .search-bar .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

/* ===== SECTION COMMON ===== */
.section-padding { padding: 5rem 0; }
.bg-light-custom { background: var(--light); }
.bg-dark-custom { background: var(--secondary); }

/* ===== FEATURES ===== */
.feature-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--primary);
}
.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(var(--primary-rgb), 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}
.feature-card:hover .feature-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}
.feature-card h5 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.feature-card p { color: var(--gray); font-size: 0.9rem; margin: 0; }

/* ===== VEHICLE CARDS ===== */
.vehicle-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}
.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}
.vehicle-card .vehicle-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--light);
}
.vehicle-card .vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.vehicle-card:hover .vehicle-image img { transform: scale(1.08); }
.vehicle-card .vehicle-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}
.vehicle-card .vehicle-badge.available { background: var(--success); color: white; }
.vehicle-card .vehicle-badge.booked { background: var(--warning); color: #1F2937; }
.vehicle-card .vehicle-badge.maintenance { background: var(--danger); color: white; }
.vehicle-card .vehicle-price {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    z-index: 2;
}
.vehicle-card .vehicle-price small { font-weight: 400; font-size: 0.7rem; }
.vehicle-card .vehicle-body { padding: 1.25rem; }
.vehicle-card .vehicle-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.3rem; }
.vehicle-card .vehicle-category { color: var(--primary); font-size: 0.8rem; font-weight: 600; }
.vehicle-card .vehicle-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 0.75rem 0;
}
.vehicle-card .vehicle-specs span {
    font-size: 0.8rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 4px;
}
.vehicle-card .vehicle-specs i { color: var(--primary); }

/* ===== SERVICES CARDS ===== */
.service-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
}
.service-card .service-img {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: var(--secondary);
}
.service-card .service-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}
.service-card .service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    color: white;
}
.service-card .service-content h4 { color: white; font-weight: 700; }
.service-card .service-content p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--box-shadow-hover); }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.testimonial-card:hover {
    box-shadow: var(--box-shadow-hover);
    border-color: var(--primary);
}
.testimonial-card .stars { color: var(--accent); margin-bottom: 1rem; }
.testimonial-card .testimonial-text {
    font-style: italic;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-card .testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--secondary);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.03"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.5;
}
.cta-section .container { position: relative; z-index: 1; }

/* ===== CONTACT SECTION ===== */
.contact-card {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}
.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}
.contact-card .contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(var(--primary-rgb), 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary);
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--secondary);
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
    z-index: 0;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: white; font-weight: 900; font-size: 2.5rem; }
.page-header p { color: rgba(255,255,255,0.8); }
.page-header .breadcrumb { background: transparent; padding: 0; margin: 0; }
.page-header .breadcrumb-item a { color: rgba(255,255,255,0.7); }
.page-header .breadcrumb-item.active { color: var(--primary-light); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ===== FILTERS ===== */
.filters-sidebar {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
    position: sticky;
    top: 90px;
}
.filters-sidebar .filter-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}
.filters-sidebar .filter-group { margin-bottom: 1.5rem; }
.filters-sidebar .form-check-label { font-size: 0.9rem; color: var(--body-color); }
.filters-sidebar .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* ===== BOOKING FORM ===== */
.booking-step {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
}
.booking-step .step-number {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.booking-step .step-title { font-weight: 700; font-size: 1.1rem; }
.booking-nav { display: flex; justify-content: space-between; margin-top: 2rem; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}
.whatsapp-float:hover {
    background: #128C7E;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    display: none;
    z-index: 999;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== FOOTER ===== */
.footer { background: var(--secondary); color: rgba(255,255,255,0.8); }
.footer-main { padding: 3rem 0 2rem; }
.footer-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    font-size: 0.9rem;
}
.footer-links a:hover { color: var(--primary-light); padding-left: 3px; }
.footer-links i { font-size: 0.6rem; margin-right: 6px; color: var(--primary); }
.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
.footer-contact i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 4px;
    flex-shrink: 0;
}
.social-link {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    margin-right: 6px;
    transition: var(--transition);
}
.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.25rem 0;
    font-size: 0.85rem;
}

/* ===== PAGE HEADER BG ===== */
.page-header-bg { background-size: cover; background-position: center; }

/* ===== VEHICLE DETAILS GALLERY ===== */
.gallery-main { border-radius: var(--radius); overflow: hidden; margin-bottom: 1rem; }
.gallery-main img { width: 100%; height: 450px; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 0.5rem; }
.gallery-thumbs img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}
.gallery-thumbs img:hover, .gallery-thumbs img.active { border-color: var(--primary); }

/* ===== SPECS TABLE ===== */
.specs-table td { padding: 0.75rem 1rem; border: 1px solid var(--border); }
.specs-table td:first-child { font-weight: 600; color: var(--secondary); width: 40%; background: var(--light); }

/* ===== FEATURES LIST ===== */
.features-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.features-list li {
    background: var(--light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}
.features-list li i { color: var(--primary); }

/* ===== PRICING BOX ===== */
.pricing-box { background: white; border-radius: var(--radius); padding: 2rem; border: 1px solid var(--border); text-align: center; }
.pricing-box .price { font-size: 2.5rem; font-weight: 900; color: var(--primary); }
.pricing-box .price small { font-size: 1rem; font-weight: 400; color: var(--gray); }

/* ===== ABOUT PAGE ===== */
.value-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border);
    height: 100%;
    transition: var(--transition);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--box-shadow-hover); }
.value-card .value-icon {
    width: 65px;
    height: 65px;
    background: rgba(var(--primary-rgb), 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.6rem;
    color: var(--primary);
}

/* ===== MAP CONTAINER ===== */
.map-container { border-radius: var(--radius); overflow: hidden; height: 400px; }
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* ===== AUTH PAGES ===== */
.auth-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border);
}

/* ===== ADMIN COMMON ===== */
.admin-body { background: var(--light); }
.admin-wrapper { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 260px;
    background: var(--secondary);
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
    overflow-y: auto;
    transition: var(--transition);
}
.admin-sidebar .sidebar-brand {
    padding: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}
.admin-sidebar .sidebar-brand img { width: 40px; height: 40px; }
.admin-sidebar .sidebar-brand span { color: white; font-weight: 700; font-size: 1rem; }
.admin-sidebar .nav-item { width: 100%; }
.admin-sidebar .nav-link {
    color: rgba(255,255,255,0.7) !important;
    padding: 0.75rem 1.25rem !important;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 3px solid transparent;
    font-size: 0.9rem;
}
.admin-sidebar .nav-link:hover, .admin-sidebar .nav-link.active {
    color: white !important;
    background: rgba(255,255,255,0.05);
    border-left-color: var(--primary);
}
.admin-sidebar .nav-link i { width: 20px; text-align: center; }
.admin-main {
    margin-left: 260px;
    flex: 1;
    padding: 1.5rem;
}
.admin-header {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.stat-card {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.stat-card:hover { box-shadow: var(--box-shadow); }
.stat-card .stat-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.stat-card .stat-number { font-size: 1.8rem; font-weight: 800; color: var(--secondary); }
.stat-card .stat-label { color: var(--gray); font-size: 0.85rem; }

/* ===== DATA TABLE ===== */
.data-table { font-size: 0.9rem; }
.data-table thead { background: var(--secondary); color: white; }
.data-table th { font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; padding: 0.75rem !important; }
.data-table td { vertical-align: middle; padding: 0.75rem !important; }

/* ===== LOGIN MODAL INLINE ===== */
.auth-divider { display: flex; align-items: center; gap: 1rem; color: var(--gray); }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; border-top: 1px solid var(--border); }

/* ===== RESPONSIVE OVERRIDES ===== */
@media (max-width: 1199.98px) {
    .hero-content h1 { font-size: 2.8rem; }
}
@media (max-width: 991.98px) {
    .navbar .nav-link::after { display: none; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content .hero-services span { font-size: 0.8rem; }
    .search-bar { margin-top: -40px; }
    .admin-sidebar { transform: translateX(-100%); }
    .admin-sidebar.show { transform: translateX(0); }
    .admin-main { margin-left: 0; }
    .gallery-main img { height: 300px; }
}
@media (max-width: 767.98px) {
    .hero-section { min-height: 80vh; }
    .hero-content h1 { font-size: 1.8rem; }
    .hero-content p.hero-subtitle { font-size: 1rem; }
    .section-title { font-size: 1.5rem; }
    .section-padding { padding: 3rem 0; }
    .page-header { padding: 3rem 0 2rem; }
    .page-header h1 { font-size: 1.8rem; }
    .top-bar { display: none; }
    .search-bar { margin-top: -30px; }
    .search-bar .search-card { padding: 1.25rem; }
    .vehicle-card .vehicle-image { height: 180px; }
    .gallery-main img { height: 220px; }
}

/* ===== LOADING ===== */
.loading-spinner {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== BADGE CUSTOM ===== */
.badge-available { background: #dcfce7; color: #166534; }
.badge-booked { background: #fef3c7; color: #92400e; }
.badge-maintenance { background: #fee2e2; color: #991b1b; }

/* ===== FORM STYLING ===== */
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

/* ===== TOAST / NOTIFICATION ===== */
.toast-container { position: fixed; top: 80px; right: 20px; z-index: 9999; }

/* ===== VEHICLE SELECT (Booking) ===== */
.vehicle-select-card input[type="radio"]:checked + .vehicle-card { border-color: var(--primary) !important; box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.3); }
.vehicle-select-card .vehicle-card { transition: var(--transition); cursor: pointer; }
.vehicle-select-card .vehicle-card:hover { border-color: var(--primary); }

/* ===== RATING STARS ===== */
.rating-stars .form-check-inline { margin-right: 0; }
.rating-stars .form-check-input:checked ~ .form-check-label { color: var(--accent); }

/* ===== DRIVER OPTION SELECT ===== */
.booking-step input[type="radio"]:checked + div { border-color: var(--primary) !important; background: rgba(var(--primary-rgb), 0.03); }
.booking-step label > div { border-color: var(--border); transition: var(--transition); cursor: pointer; }
.booking-step label > div:hover { border-color: var(--primary); }

/* ===== PAYMENT METHOD SELECT ===== */
.booking-step input[type="radio"]:checked + div h6 { color: var(--primary); }

/* ===== STEP INDICATOR ===== */
.step-indicator { cursor: pointer; }
.step-indicator .step-number { transition: var(--transition); }
.step-indicator:hover .step-number:not(.bg-primary) { border-color: var(--primary); }

/* ===== HERE MAPS AUTOCOMPLETE ===== */
.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 99999 !important;
    max-height: 250px;
    overflow-y: auto;
    display: none;
}
.autocomplete-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--body-color);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.autocomplete-item:last-child {
    border-bottom: none;
}
.autocomplete-item:hover, .autocomplete-item.active {
    background: rgba(var(--primary-rgb), 0.05);
    color: var(--primary);
}
.autocomplete-item i {
    color: var(--gray-light);
    margin-right: 8px;
}
