/* =============================================================================
 * CONSOLIDATED MODERN FRONTEND STYLES
 * =============================================================================
 * 
 * This file consolidates all CSS from:
 * - styles.css (main clean styles)
 * - css/custom-frontend-styles.css (theme overrides)  
 * - css/fleet-showcase.css (fleet functionality)
 * 
 * IMPORTANT: Header/Logo/Menu styles are protected - DO NOT MODIFY
 * 
 * Sections organized by:
 * 1. CSS Variables & Reset
 * 2. Navigation & Header (PROTECTED)
 * 3. Hero Section
 * 4. Fleet Showcase System
 * 5. Content Sections
 * 6. Forms & Modals
 * 7. Footer
 * 8. Animations & Effects
 * 9. Responsive Design
 * =============================================================================
 */

/* =============================================================================
 * 1. CSS VARIABLES & RESET STYLES
 * =============================================================================
 */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

:root {
    /* THEME COLORS - Orange/Amber Luxury Theme */
    --primary-color: #f59e0b;
    --secondary-color: #d97706;
    --accent-color: #92400e;
    --primary-dark: #d97706;
    --primary-light: #fbbf24;
    
    /* Neutral Colors */
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --white: #ffffff;
    --background-color: #ffffff;
    --text-color: #374151;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-500: #64748b;
    --gray-600: #6c757d;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #0f172a;
    
    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gradient-secondary: linear-gradient(135deg, #d97706 0%, #92400e 100%);
    --gradient-hero: linear-gradient(135deg, rgba(146, 64, 14, 0.9) 0%, rgba(217, 119, 6, 0.8) 100%);
    
    /* Layout & Sizing */
    --container-max-width: 1150px;
    --section-padding: 3rem;
    --element-spacing: 1.5rem;
    --border-radius: 2rem;
    --navbar-height: 65px;
    --logo-size: 80px;
    
    /* Typography */
    --font-family: 'Poppins', sans-serif;
    --title-size: 3.8rem;
    --body-size: 1.2rem;
    --line-height: 2.2;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --animation-speed: 0.3s;
}

html {
    scroll-behavior: smooth !important;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-family) !important;
    font-size: var(--body-size) !important;
    line-height: var(--line-height) !important;
    color: var(--text-color) !important;
    background-color: var(--background-color) !important;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.container {
    max-width: var(--container-max-width) !important;
    margin: 0 auto;
    padding: 0 var(--element-spacing) !important;
    width: 100%;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    width: 100%;
    overflow-x: hidden;
    padding: var(--section-padding) 0 !important;
}

/* =============================================================================
 * 2. NAVIGATION & HEADER STYLES (PROTECTED - DO NOT MODIFY)
 * =============================================================================
 */

/* PROTECTED NAVIGATION STYLES - CRITICAL FOR SITE FUNCTIONALITY */
.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background-color: #1f2937 !important;
    backdrop-filter: blur(10px);
    z-index: 1000 !important;
    transition: all var(--animation-speed) ease !important;
    border-bottom: 1px solid var(--gray-200);
    height: var(--navbar-height) !important;
    padding: 0 !important;
    width: 100% !important;
}

.nav-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    max-width: var(--container-max-width) !important;
    margin: 0 auto;
    padding: var(--spacing-md) var(--spacing-lg);
    height: var(--navbar-height) !important;
}

/* PROTECTED BRAND/LOGO STYLES - CRITICAL */
.nav-brand {
    display: flex !important;
    align-items: center !important;
    gap: var(--spacing-sm);
    height: var(--navbar-height) !important;
}

.brand-logo {
    width: 100px !important;
    height: var(--logo-size) !important;
    border-radius: var(--radius-md);
    object-fit: contain !important;
    transition: var(--transition-fast);
}

/* PROTECTED MENU STYLES - CRITICAL */
.nav-menu {
    display: flex !important;
    list-style: none;
    gap: var(--spacing-xl);
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500 !important;
    font-weight: 500;
    transition: all var(--animation-speed) ease !important;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
    transform: translateY(-1px) !important;
}

.login-btn {
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-md);
    text-decoration: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: #000000;
    padding: 12px;
    border-radius: 8px;
    z-index: 1001;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hamburger span {
    width: 28px;
    height: 4px;
    background: #ffffff !important;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

/* HAMBURGER ANIMATION */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* MOBILE MENU OVERLAY */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* =============================================================================
 * 3. HERO SECTION STYLES
 * =============================================================================
 */

.hero {
    position: relative;
    height: 600px !important;
    background-image: url('https://images.unsplash.com/photo-1563720223185-11003d516935?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') !important;
    background-size: cover !important;
    background-position: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(146, 64, 14, 0.7) !important;
    z-index: 1 !important;
}

.hero:after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    z-index: 4;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        transparent 40%, 
        rgba(255, 255, 255, 0.8) 60%, 
        rgba(255, 255, 255, 0.8) 80%, 
        transparent 100%);
    background-size: 100% 50%;
    animation: scrollIndicator 2s ease-in-out infinite;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Default gradient background when no image is uploaded */
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%);
    background-size: cover !important;
    background-position: center !important;
    /* When image is set via inline style, it will override the gradient */
}

.hero-content {
    position: relative !important;
    width: 100% !important;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 5 !important;
}

.hero-text {
    max-width: 800px;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10;
}

.hero-tagline {
    display: block;
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-size: var(--title-size) !important;
    font-weight: 900;
    margin-bottom: var(--element-spacing) !important;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3) !important;
    line-height: 0.95;
}

.hero-description {
    color: rgba(255,255,255,0.95) !important;
    font-size: calc(var(--body-size) * 1.1) !important;
    margin-bottom: calc(var(--element-spacing) * 2) !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3) !important;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 650px;
}

/* .hero-buttons - REMOVED FOR HERO SECTION DEBUGGING */

/* .hero-buttons .btn - REMOVED FOR HERO SECTION DEBUGGING */

/* =============================================================================
 * 4. FLEET SHOWCASE SYSTEM
 * =============================================================================
 */

/* Fleet Showcase Main Container */
.fleet-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    width: 100%;
}

.fleet-showcase .container {
    max-width: 100% !important;
    padding: 0 30px !important;
}

.fleet-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #6f42c1, #e83e8c, #fd7e14);
}

/* Fleet Section Header */
.fleet-showcase .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.fleet-showcase .section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color) !important;
    margin-bottom: 1rem !important;
    background: linear-gradient(135deg, #007bff, #6f42c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fleet-showcase .section-header p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Fleet Search Section */
.fleet-search-section {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Search Bar */
.search-input-wrapper {
    position: relative;
    margin-bottom: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-input-wrapper i,
.search-input-wrapper .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 1rem;
    z-index: 2;
}

.fleet-search-input {
    width: 100%;
    padding: 10px 15px 10px 40px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    font-size: 0.95rem;
    background: white;
    transition: all 0.3s ease;
    outline: none;
    height: 20px;
}

.fleet-search-input:focus {
    border-color: #007bff;
    background: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.clear-search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-search-btn:hover {
    background: #c82333;
    transform: translateY(-50%) scale(1.1);
}

/* Filter Controls */
.filter-controls {
    position: relative;
}

.filter-row {
    display: grid;
    grid-template-columns: 1.2fr 1.4fr 1fr 1fr 1.2fr;
    gap: 10px;
    margin-bottom: 15px;
    align-items: end;
}

.secondary-filters {
    display: none;
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
    margin-top: 10px;
}

/* Filter Groups */
.filter-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.filter-group label {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #495057;
    margin-bottom: 2px;
    font-size: 0.8rem;
}

.filter-group label i {
    margin-right: 8px;
    color: #007bff;
    width: 16px;
    text-align: center;
}

.filter-select {
    padding: 6px 10px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    background: #ffffff;
    font-size: 0.85rem;
    color: #495057;
    transition: all 0.3s ease;
    outline: none;
    cursor: pointer;
    height: 32px;
}

.filter-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.filter-select:hover {
    border-color: #80bdff;
}

/* Price Filter Specific */
.price-filter {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-filter label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 2px;
}

.price-range-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fleet-search-section .price-inputs,
.price-filter .price-inputs {
    display: grid !important;
    grid-template-columns: 55px auto 55px !important;
    align-items: center !important;
    gap: 6px !important;
}

.fleet-showcase .fleet-search-section .price-filter .price-inputs {
    display: grid !important;
    grid-template-columns: 55px auto 55px !important;
    align-items: center !important;
    gap: 6px !important;
    justify-content: flex-start !important;
}

.price-input {
    width: 55px;
    padding: 6px 8px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    background: #ffffff;
    font-size: 0.8rem;
    text-align: center;
    outline: none;
    transition: all 0.3s ease;
    height: 20px;
}

.price-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.price-separator {
    color: #6c757d;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Filter Actions */
.filter-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
}

.btn-more-filters,
.btn-reset-filters {
    padding: 6px 12px;
    border: none;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 28px;
    white-space: nowrap;
}

.btn-more-filters {
    background: #007bff;
    color: white;
}

.btn-more-filters:hover {
    background: #0056b3;
}

.btn-reset-filters {
    background: #6c757d;
    color: white;
}

.btn-reset-filters:hover {
    background: #545b62;
}

/* Price Display */
.price-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: #6c757d;
    margin-top: 2px;
}

.results-count {
    font-weight: 500;
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

/* Loading State */
.fleet-loading {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.loading-spinner i {
    font-size: 2rem;
    color: #007bff;
}

/* =============================================================================
 * REFERENCE WEBSITE FLEET SECTION - EXACT REPLICATION
 * =============================================================================
 */

/* Fleet Container - Dark Theme Like Reference */
.fleet-showcase-reference {
    background: #1f2937;
    padding: 80px 0;
    width: 100%;
}

.fleet-showcase-reference .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Fleet Header - Simple Title */
.fleet-header {
    text-align: center;
    margin-bottom: 50px;
}

.fleet-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

/* Perfect Grid System - Exactly Like Reference */
.fleet-grid-reference {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Responsive Grid Breakpoints - Exact Match */
@media (min-width: 640px) {
    .fleet-grid-reference {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .fleet-grid-reference {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .fleet-grid-reference {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Fleet Card - Exact Reference Website Design */
.fleet-card-reference {
    background: #000000;
    border: 1px solid #374151;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    color: #ffffff;
}

.fleet-card-reference:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

/* Card Image - Fixed Height Like Reference */
.fleet-card-image {
    position: relative;
    height: 192px;
    width: 100%;
    overflow: hidden;
}

.fleet-card-image img {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

/* Card Content - Exact Layout */
.fleet-card-content {
    padding: 16px;
}

.fleet-card-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

/* Star Rating Row - Exact Reference Style */
.fleet-card-rating {
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

/* Price Row - Exact Layout */
.fleet-card-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.fleet-card-price {
    color: #eab308;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

/* Status Badge - Exact Reference Style */
.fleet-card-status {
    padding: 4px 8px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    background: #dcfce7;
    color: #166534;
}

/* Button Actions Row - Exact Layout */
.fleet-card-actions {
    display: flex;
    gap: 8px;
}

/* Outline Button - Colorful Blue Style */
.fleet-btn-outline {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    outline: none;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    height: 40px;
    padding: 0 16px;
    font-size: 0.875rem;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.fleet-btn-outline:hover {
    background: #3b82f6;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Primary Button - Vibrant Green Style */
.fleet-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    outline: none;
    border: none;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    padding: 0 16px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.fleet-btn-primary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
}

/* No Results State */
.fleet-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: #9ca3af;
}

.fleet-no-results i {
    font-size: 3rem;
    margin-bottom: 16px;
    color: #6b7280;
}

.fleet-no-results h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.fleet-no-results p {
    font-size: 1rem;
    color: #9ca3af;
    margin: 0;
}

.fleet-showcase .car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.fleet-showcase .car-card:hover .car-image img {
    transform: scale(1.05);
}

.fleet-showcase .car-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.fleet-showcase .favorite-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.fleet-showcase .favorite-btn:hover {
    background: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fleet-showcase .favorite-btn i {
    color: #dc3545;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.fleet-showcase .favorite-btn:hover i {
    transform: scale(1.2);
}

/* Car Details - Compact for 6-Column Layout */
.fleet-showcase .car-details {
    padding: 12px;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
}

.fleet-showcase .car-details h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.2;
    height: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fleet-showcase .car-category {
    color: #007bff;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
    height: auto;
    flex-shrink: 0;
}

/* Car Features - Compact for 6-Column Layout */
.fleet-showcase .car-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    margin-bottom: 8px;
    flex-shrink: 0;
    height: auto;
    overflow: hidden;
}

.fleet-showcase .car-features .feature {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 6px;
    background: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.fleet-showcase .car-features .feature:hover {
    background: #e3f2fd;
    border-color: #90caf9;
}

.fleet-showcase .car-features .feature i {
    color: #007bff;
    font-size: 0.7rem;
    width: 12px;
    text-align: center;
}

.fleet-showcase .car-features .feature span {
    font-size: 0.7rem;
    color: #495057;
    font-weight: 500;
}

/* Car Pricing - Compact for 6-Column Layout */
.fleet-showcase .car-price,
.car-price {
    font-size: 1rem;
    color: #f59e0b;
    font-weight: bold;
    text-align: center;
    margin: 8px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    display: block;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.fleet-showcase .car-price .price,
.car-price .price {
    font-size: 1.8rem;
    color: #f59e0b;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.fleet-showcase .car-price .period {
    color: #6c757d;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Car Actions - Compact Button Container for 6-Column Layout */
.car-actions {
    display: flex !important;
    gap: 6px;
    margin-top: auto;
    flex-shrink: 0;
    width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 10 !important;
    padding: 8px 12px 12px 12px;
}

.car-actions .btn {
    flex: 1;
    font-size: 0.75rem;
    padding: 6px 8px !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 32px;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 20 !important;
    cursor: pointer !important;
}

.car-actions .btn-view-details {
    background: transparent;
    color: #f59e0b;
    border: 2px solid #f59e0b;
}

.car-actions .btn-view-details:hover {
    background: #f59e0b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* .car-actions .btn-rent - REMOVED FOR HERO SECTION DEBUGGING */

/* .car-actions .btn-rent:hover - REMOVED FOR HERO SECTION DEBUGGING */

.car-actions .btn i {
    font-size: 0.8rem;
}

/* Rent Button - REMOVED FOR HERO SECTION DEBUGGING */

/* No Results Message */
.fleet-showcase .no-cars-message {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    border-radius: 20px;
    border: 2px dashed #dee2e6;
    margin: 40px 0;
}

.fleet-showcase .no-cars-message i {
    font-size: 4rem;
    color: #6c757d;
    margin-bottom: 20px;
}

.fleet-showcase .no-cars-message h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #495057;
    margin-bottom: 15px;
}

.fleet-showcase .no-cars-message p {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* =============================================================================
 * 5. CONTENT SECTIONS
 * =============================================================================
 */

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-900);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

h1 {
    font-size: var(--font-size-5xl);
    font-weight: 800;
}

h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
}

h3 {
    font-size: var(--font-size-3xl);
    font-weight: 600;
}

.gradient-text {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    background-size: 300% 300%;
    animation: gradientText 4s ease-in-out infinite;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-header h2 {
    margin-bottom: var(--spacing-md);
}

.section-header p {
    font-size: var(--font-size-lg);
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons - BEAUTIFUL MODERN GRADIENT STYLING */
.btn {
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn i {
    color: inherit;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: scale(1.1);
}

.btn .btn-text {
    color: inherit;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
}

/* Special styling for "Rent A Car" text */
.btn-special-cta .btn-text {
    background: linear-gradient(45deg, #ffffff, #fcd34d);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-shadow: none;
    letter-spacing: 1px;
}

/* Add shimmer effect for Rent A Car button */
.btn-special-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-special-cta:hover::before {
    left: 100%;
}

/* .btn-primary - REMOVED FOR HERO SECTION DEBUGGING */

/* .btn:hover - REMOVED FOR HERO SECTION DEBUGGING */

.btn-secondary {
    background-color: var(--secondary-color) !important;
    color: white !important;
    border: 2px solid var(--secondary-color) !important;
}

.btn-success {
    background-color: var(--accent-color) !important;
    color: white !important;
    border: 2px solid var(--accent-color) !important;
}

.btn-outline {
    background: transparent !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
}

.btn-outline:hover,
.btn-outline-primary:hover {
    background: var(--primary-color) !important;
    color: white !important;
}

.btn-outline-primary {
    background: transparent !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
}

/* Special CTA Button - REMOVED FOR HERO SECTION DEBUGGING */

/* How It Works Section - New Design */
.how-it-works-new {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.how-it-works-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #6f42c1, #e83e8c);
}

.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 60px;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    max-width: 300px;
    margin: 0 20px;
}

.step-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    position: relative;
    background: linear-gradient(135deg, #007bff, #6f42c1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

.step-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.4);
}

.step-icon {
    color: white;
    font-size: 2.5rem;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.step-number {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.step-connector {
    position: absolute;
    top: 60px;
    right: -50px;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #6f42c1);
    z-index: 1;
}

.process-step:last-child .step-connector {
    display: none;
}

@media (max-width: 768px) {
    .process-flow {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin: 0 0 40px 0;
        max-width: 100%;
    }
    
    .step-connector {
        display: none;
    }
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--spacing-lg);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: var(--gray-50);
    border: none;
    padding: var(--spacing-lg);
    text-align: left;
    font-weight: 600;
    font-size: var(--font-size-lg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--gray-100);
}

.faq-item.active .faq-question {
    background: var(--primary-color) !important;
    color: var(--white) !important;
}

.faq-answer {
    padding: 0 var(--spacing-lg);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--white);
}

.faq-item.active .faq-answer {
    padding: var(--spacing-lg) !important;
    max-height: 500px !important;
}

/* Specific styling for first FAQ with rental terms content */
.faq-item:first-child.active .faq-answer {
    max-height: 800px !important;
    overflow: visible !important;
}

/* Specific styling for rental terms FAQ with extended content */
.faq-item.rental-terms-faq.active .faq-answer {
    max-height: 1000px !important;
    overflow: visible !important;
}

/* Specific styling for insurance FAQ with extended content */
.faq-item.insurance-faq.active .faq-answer {
    max-height: 1200px !important;
    overflow: visible !important;
}

/* Ensure insurance content is fully visible */
.insurance-content {
    position: relative;
    max-height: none !important;
    overflow: visible !important;
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Insurance FAQ Specific Styles */
.insurance-content {
    position: relative;
}

.insurance-partners h6 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.insurance-links {
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
}

.insurance-links .btn {
    border-radius: var(--radius-xl);
    font-size: var(--font-size-sm);
    padding: 0.4rem 1rem;
    transition: var(--transition-fast);
    text-decoration: none;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.insurance-links .btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.coverage-details {
    background: var(--gray-50) !important;
    border-left: 4px solid var(--primary-color);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    margin: var(--spacing-md) 0;
}

.coverage-details h6 {
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.coverage-details ul {
    margin-bottom: var(--spacing-sm);
    padding-left: var(--spacing-lg);
}

.coverage-details li {
    margin-bottom: var(--spacing-xs);
    color: var(--gray-600);
    line-height: 1.5;
}

.coverage-details li strong {
    color: var(--dark-color);
}

/* FAQ Insurance Section Responsive */
@media (max-width: 768px) {
    .insurance-links {
        flex-direction: column;
    }
    
    .insurance-links .btn {
        width: 100%;
        justify-content: center;
    }
    
    .coverage-details {
        padding: var(--spacing-md);
    }
}

/* =============================================================================
 * 6. FORMS & MODALS
 * =============================================================================
 */

/* Modal Styles - Option 3: Large Centered Modal (Not Fullscreen) */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    overflow: auto;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    min-height: 100vh;
}

.modal-content {
    background: #111;
    color: #fff;
    padding: 0;
    border-radius: 20px;
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    border: 1px solid #333;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin: auto;
}

.modal-header {
    background: linear-gradient(135deg, #111, #1a1a1a);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-bottom: 2px solid #333;
    flex-shrink: 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 2rem;
    color: #f59e0b;
    display: flex;
    align-items: center;
    gap: 15px;
}

.close-modal,
.close {
    background: none;
    border: none;
    color: #f59e0b;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover,
.close:hover {
    color: #d97706;
    background: rgba(245, 158, 11, 0.1);
    transform: rotate(90deg);
}

/* Large Modal Layout - Two Columns */
.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
    flex: 1;
    overflow-y: auto;
}

.booking-info-section h4 {
    color: #f59e0b;
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-summary-section h4 {
    color: #f59e0b;
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
}

/* Booking Form - Large Modal Dark Theme */
.booking-form h3 {
    text-align: center;
    margin-bottom: 25px;
    color: #f59e0b;
    font-size: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #f59e0b;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #333;
    border-radius: 8px;
    background: #222;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
    background: #2a2a2a;
}

.form-group input[readonly] {
    background: #1a1a1a;
    color: #ccc;
    cursor: not-allowed;
}

/* Booking Summary in Large Modal */
.booking-summary {
    background: #222;
    padding: 25px;
    border-radius: 12px;
    margin: 15px 0;
    border: 2px solid #333;
    height: fit-content;
}

.vehicle-display {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.vehicle-display .vehicle-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    display: block;
}

.vehicle-display h3 {
    margin: 0;
    color: #f59e0b;
    font-size: 1.5rem;
}

.vehicle-display p {
    margin: 5px 0;
    color: #ccc;
    font-size: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding: 5px 0;
    font-size: 1rem;
}

.summary-item.total {
    border-top: 2px solid #f59e0b;
    padding-top: 15px;
    margin-top: 15px;
    font-weight: bold;
    font-size: 1.2rem;
    color: #f59e0b;
}

.submit-btn {
    background: linear-gradient(90deg, #f59e0b, #d97706);
    color: #000;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

/* Mobile Responsiveness for Large Modal */
@media (max-width: 968px) {
    .modal-content {
        max-width: 95%;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 20px 25px;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .modal-header h3 {
        font-size: 1.5rem;
    }
    
    .booking-info-section h4,
    .booking-summary-section h4 {
        font-size: 1.3rem;
    }
}

/* =============================================================================
 * 7. FOOTER
 * =============================================================================
 */

.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: var(--spacing-lg);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-section ul li a {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: var(--spacing-lg);
    text-align: center;
    color: var(--gray-400);
}

/* Footer Credit - Smaller Design by Chybyke Studios */
.footer-credit {
    font-size: 0.75rem !important;
    opacity: 0.7 !important;
    text-align: center !important;
}

.footer-credit p {
    font-size: 0.75rem !important;
    margin: 0 !important;
    color: #6b7280 !important;
}

.footer-credit a {
    color: #6b7280 !important;
    text-decoration: none !important;
    font-size: 0.75rem !important;
    transition: color 0.3s ease !important;
}

.footer-credit a:hover {
    color: var(--primary-color) !important;
    text-decoration: underline !important;
}

/* =============================================================================
 * 8. ANIMATIONS & EFFECTS
 * =============================================================================
 */

/* Animations */
@keyframes gradientText {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4); }
    50% { box-shadow: 0 8px 35px rgba(255, 107, 53, 0.7); }
}

@keyframes scrollIndicator {
    0%, 100% { background-position: 0 0; }
    50% { background-position: 0 100%; }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out !important;
}

.hero-title {
    animation-delay: 0.2s !important;
}

.hero-description {
    animation-delay: 0.4s !important;
}

/* .hero-buttons - REMOVED FOR HERO SECTION DEBUGGING */

/* Additional utility classes */
.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.hover-lift:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.shadow-custom {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* =============================================================================
 * 9. RESPONSIVE DESIGN
 * =============================================================================
 */

/* Large Screens - 4 Columns */
@media (max-width: 1200px) {
    .fleet-showcase .cars-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
    
    .fleet-showcase .car-card {
        min-height: 340px;
    }
    
    .container {
        max-width: 95% !important;
    }
}

/* Medium Screens - 3 Columns */
@media (max-width: 992px) {
    :root {
        --title-size: calc(3.8rem * 0.9);
        --section-padding: calc(3rem * 0.8);
    }
    
    .fleet-showcase .cars-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    
    .fleet-showcase .car-card {
        min-height: 360px;
    }
}

/* Tablet Screens */
@media (max-width: 768px) {
    /* SHOW HAMBURGER, HIDE DESKTOP MENU */
    .hamburger {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
        z-index: 1001;
        background: #000000;
        padding: 12px;
        border-radius: 8px;
        border: 3px solid #ffffff;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }
    
    .hamburger span {
        background: #ffffff !important;
        width: 28px;
        height: 4px;
        border-radius: 2px;
        display: block;
    }
    
    /* MOBILE MENU POSITIONING */
    .nav-menu {
        position: fixed !important;
        top: var(--navbar-height);
        left: 0;
        width: 100% !important;
        height: calc(100vh - var(--navbar-height)) !important;
        background: #000000 !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding-top: 50px;
        gap: 30px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000 !important;
        display: flex !important;
    }

    .nav-menu.active {
        transform: translateX(0) !important;
        display: flex !important;
        background: #000000 !important;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 15px 30px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .login-btn {
        margin-top: 20px;
        width: 80%;
        text-align: center;
        padding: 15px;
        border-radius: 10px;
    }
    
    .hero-title {
        font-size: calc(var(--title-size) * 0.8) !important;
    }
    
    /* Fix hero tagline visibility on mobile */
    .hero-tagline {
        display: block !important;
        font-size: var(--font-size-xl) !important;
        font-weight: 600 !important;
        margin-bottom: var(--spacing-lg) !important;
        opacity: 0.95 !important;
        text-transform: uppercase !important;
        letter-spacing: 2px !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Hide scroll indicator on mobile */
    .hero:after {
        display: none !important;
    }
    
    /* Center View Vehicles button on mobile */
    /* .hero-buttons .btn-primary - REMOVED FOR HERO SECTION DEBUGGING */
    
    .container {
        padding: 0 calc(var(--element-spacing) * 0.75) !important;
    }
    
    .navbar {
        padding: 0 calc(var(--element-spacing) * 0.5) !important;
    }
    
    .features-grid-new,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card-new {
        padding: 30px 25px;
    }
    
    .fleet-showcase {
        padding: 60px 0;
    }

    .fleet-showcase .section-header h2 {
        font-size: 2.2rem;
    }

    .fleet-search-section {
        padding: 20px;
        border-radius: 15px;
    }

    .filter-row {
        flex-direction: column;
        gap: 15px;
    }

    .filter-group {
        min-width: auto;
    }

    .price-filter {
        min-width: auto;
    }

    .filter-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .fleet-showcase .cars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .fleet-showcase .car-card {
        min-height: 300px;
    }

    .fleet-showcase .car-features {
        grid-template-columns: 1fr;
    }

    .fleet-showcase .car-image {
        height: 200px;
    }
}

/* Small Mobile Screens */
@media (max-width: 576px) {
    :root {
        --title-size: calc(3.8rem * 0.7);
        --section-padding: calc(3rem * 0.6);
    }
    
    .hero {
        height: 80vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .step,
    .feature-card,
    .testimonial-card {
        padding: var(--spacing-lg);
    }
    
    .fleet-search-section {
        margin: 0 auto 30px auto;
        border-radius: 10px;
        padding: 20px 15px;
        max-width: 95%;
        width: 100%;
        box-sizing: border-box;
    }

    .search-input-wrapper {
        margin: 0 auto 15px auto;
        max-width: 100%;
    }

    .fleet-search-input {
        font-size: 0.9rem;
        padding: 12px 15px 12px 40px;
        height: 18px;
    }

    .filter-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .filter-group {
        width: 100%;
    }

    .price-filter {
        width: 100%;
    }

    .price-inputs {
        justify-content: center !important;
    }

    .filter-select,
    .price-input {
        padding: 8px 10px;
        font-size: 0.85rem;
        width: 100%;
    }

    .price-input {
        width: 50px !important;
    }

    .filter-actions {
        flex-direction: row !important;
        gap: 8px !important;
    }

    .btn-more-filters,
    .btn-reset-filters {
        flex: 1;
        font-size: 0.75rem;
        padding: 8px;
    }

    .fleet-showcase .container {
        padding: 0 15px !important;
    }

    .car-actions {
        flex-direction: column;
        gap: 6px;
        padding: 8px;
    }

    .car-actions .btn {
        width: 100%;
        padding: 8px;
        font-size: 0.8rem;
        min-height: 36px;
    }
    }

    .fleet-showcase .car-card {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
    }

    .fleet-showcase .section-header h2 {
        font-size: 1.8rem;
    }

    .fleet-showcase .section-header p {
        font-size: 1rem;
    }
    
    .features-grid-new {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card-new {
        padding: 30px 25px;
    }
    
    .why-choose-us-new {
        padding: 60px 0;
    }
    
    .feature-icon-new {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon-new i {
        font-size: 1.5rem;
    }

/* =============================================================================
 * END CONSOLIDATED STYLES
 * =============================================================================
 */
