/* =============================================================================
 * BLACK THEME MODERN FRONTEND STYLES
 * =============================================================================
 * Extracted from black-theme-debug.html for production use
 * This file overrides the consolidated styles with black theme design
 * =============================================================================
 */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

:root {
    /* BLACK THEME COLORS */
    --primary-color: #f59e0b;
    --secondary-color: #d97706;
    --accent-color: #fbbf24;
    --primary-dark: #b45309;
    --primary-light: #fcd34d;
    
    /* Black Theme Specific */
    --background-color: #000000;
    --card-background: #111111;
    --section-background: #0a0a0a;
    --border-color: #333333;
    --text-color: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --overlay-bg: rgba(0, 0, 0, 0.8);
    
    /* Gradient Colors for Black Theme */
    --gradient-primary: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(17, 17, 17, 0.8) 50%, rgba(245, 158, 11, 0.1) 100%);
    --gradient-card: linear-gradient(145deg, #111111, #1a1a1a);
    --gradient-accent: linear-gradient(135deg, #fbbf24, #f59e0b);
    
    /* Shadows for Black Theme */
    --shadow-card: 0 8px 32px rgba(245, 158, 11, 0.1);
    --shadow-hover: 0 12px 48px rgba(245, 158, 11, 0.2);
    --shadow-inset: inset 0 1px 3px rgba(255, 255, 255, 0.1);
    
    /* Layout */
    --container-max-width: 1150px;
    --section-padding: 3rem;
    --navbar-height: 70px;
    --border-radius: 12px;
    
    /* Typography */
    --font-family: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-family) !important;
    background-color: var(--background-color) !important;
    background: var(--background-color) !important;
    color: var(--text-color) !important;
    line-height: 1.6 !important;
    overflow-x: hidden !important;
}

/* Override html element as well */
html {
    background-color: var(--background-color) !important;
    background: var(--background-color) !important;
}

/* Override any remaining white backgrounds from consolidated styles */
.main,
.content,
.wrapper,
section,
.section,
.hero-section,
.fleet-section,
.about-section,
.contact-section {
    background: var(--section-background) !important;
    background-color: var(--section-background) !important;
}

/* Force all transparent elements to have dark backgrounds */
* {
    background-color: transparent !important;
}

/* Override specific elements that might have white backgrounds */
body,
html,
.hero,
.hero-content,
.hero-text,
.fleet-showcase,
.car-card,
.car-info,
.car-header,
.car-features,
.car-actions,
.faq-section,
.faq-item,
.faq-question,
.faq-answer,
.footer,
.navbar,
.nav-menu,
.form-group,
.filter-group,
.search-input-wrapper {
    background: transparent !important;
    color: var(--text-color) !important;
}

/* Force all text to be white */
*,
*::before,
*::after {
    color: var(--text-color) !important;
}

/* Override specific text elements */
h1, h2, h3, h4, h5, h6,
p, span, div, a, li, label,
.hero-title,
.hero-description,
.hero-tagline,
.car-title,
.section-title,
.section-subtitle,
.faq-question,
.footer-section h3,
.footer-section p,
.footer-section li,
.footer-section a {
    color: var(--text-color) !important;
}

/* Override button text - REMOVED FOR HERO SECTION DEBUGGING */

/* Override link colors */
a,
.nav-link,
.footer a {
    color: var(--text-secondary) !important;
}

a:hover,
.nav-link:hover,
.footer a:hover {
    color: var(--primary-color) !important;
}

/* Override input backgrounds */
input,
select,
textarea {
    background: var(--card-background) !important;
    background-color: var(--card-background) !important;
    color: var(--text-color) !important;
    border-color: var(--border-color) !important;
}

/* Override any card or container backgrounds */
.card,
.content-wrapper,
.main-content {
    background: var(--section-background) !important;
    background-color: var(--section-background) !important;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* =============================================================================
 * NAVIGATION - BLACK THEME
 * =============================================================================
 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--navbar-height);
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color) !important;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    height: 45px;
    width: auto;
    filter: brightness(1.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-color) !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(245, 158, 11, 0.1);
}

.login-btn {
    background: var(--gradient-primary) !important;
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* =============================================================================
 * HERO SECTION - BLACK THEME
 * =============================================================================
 */
.hero {
    min-height: 100vh !important;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-hero) !important;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(217, 119, 6, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(17, 17, 17, 0.6) 100%) !important;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-tagline {
    display: inline-block;
    background: var(--gradient-accent);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 4rem !important;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-color) !important;
}

.gradient-text {
    background: var(--gradient-accent);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem !important;
    color: var(--text-secondary) !important;
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* .hero-buttons - REMOVED FOR HERO SECTION DEBUGGING */

/* .btn - REMOVED FOR HERO SECTION DEBUGGING */

/* .btn-primary - REMOVED FOR HERO SECTION DEBUGGING */

/* .btn-special-cta - REMOVED FOR HERO SECTION DEBUGGING */

/* .btn-special-cta:hover - REMOVED FOR HERO SECTION DEBUGGING */

/* =============================================================================
 * SECTION STYLES - BLACK THEME
 * =============================================================================
 */
.section, section {
    padding: 5rem 0 !important;
    background: var(--section-background) !important;
    border-top: 1px solid var(--border-color) !important;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem !important;
    font-weight: 700;
    color: var(--text-color) !important;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem !important;
    color: var(--text-secondary) !important;
    max-width: 600px;
    margin: 0 auto;
}

/* =============================================================================
 * FLEET SHOWCASE - BLACK THEME - ENHANCED RESPONSIVE
 * =============================================================================
 */
.fleet-showcase {
    padding: 5rem 0 !important;
    background: var(--section-background) !important;
}

.fleet-search-section {
    background: var(--card-background) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.fleet-search-section:hover {
    border-color: var(--primary-color) !important;
    box-shadow: var(--shadow-hover);
}

.search-input-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.fleet-search-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 10px;
    color: var(--text-color) !important;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.fleet-search-input:focus {
    outline: none;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
    background: rgba(255, 255, 255, 0.08) !important;
}

.fleet-search-input::placeholder {
    color: var(--text-muted) !important;
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted) !important;
    transition: color 0.3s ease;
}

.fleet-search-input:focus + .search-icon {
    color: var(--primary-color) !important;
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: end;
}

.filter-group label {
    display: block;
    color: var(--text-secondary) !important;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.filter-select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 8px;
    color: var(--text-color) !important;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.1);
    background: rgba(255, 255, 255, 0.08) !important;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color) !important;
}

.results-count {
    color: var(--text-secondary) !important;
    font-weight: 500;
}

/* =============================================================================
 * CAR CARDS - BLACK THEME - ENHANCED RESPONSIVE
 * =============================================================================
 */
.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.car-card, .fleet-showcase .car-card, div[class*="car-card"], 
.cars-grid .car-card, section .car-card {
    background: var(--gradient-card) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--border-radius) !important;
    overflow: hidden !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    box-shadow: var(--shadow-card) !important;
    position: relative !important;
    cursor: pointer !important;
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 0 !important;
}

.car-card::before, .fleet-showcase .car-card::before, div[class*="car-card"]::before,
.cars-grid .car-card::before, section .car-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, transparent 50%) !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.car-card:hover::before, .fleet-showcase .car-card:hover::before, div[class*="car-card"]:hover::before,
.cars-grid .car-card:hover::before, section .car-card:hover::before {
    opacity: 1 !important;
}

.car-card:hover, .fleet-showcase .car-card:hover, div[class*="car-card"]:hover,
.cars-grid .car-card:hover, section .car-card:hover {
    transform: translateY(-12px) scale(1.02) !important;
    box-shadow: var(--shadow-hover) !important;
    border-color: var(--primary-color) !important;
}

.car-image {
    height: 200px !important;
    background: rgba(245, 158, 11, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.car-image::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 0%, transparent 100%) !important;
    transition: background 0.3s ease !important;
}

.car-card:hover .car-image::after, .fleet-showcase .car-card:hover .car-image::after,
.cars-grid .car-card:hover .car-image::after, section .car-card:hover .car-image::after {
    background: linear-gradient(45deg, rgba(245, 158, 11, 0.2) 0%, transparent 100%) !important;
}

.car-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    filter: brightness(1.1) contrast(1.1) !important;
}

.car-card:hover .car-image img, .fleet-showcase .car-card:hover .car-image img,
.cars-grid .car-card:hover .car-image img, section .car-card:hover .car-image img {
    transform: scale(1.08) rotate(1deg) !important;
}

.car-info {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    background: inherit;
}

.car-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.car-title {
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    color: var(--text-color) !important;
    margin-bottom: 0.25rem !important;
    transition: color 0.3s ease !important;
}

.car-card:hover .car-title, .fleet-showcase .car-card:hover .car-title,
.cars-grid .car-card:hover .car-title, section .car-card:hover .car-title {
    color: var(--primary-light) !important;
}

.car-category {
    background: #f59e0b !important;
    color: black !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    padding: 8px 12px !important;
    border-radius: 10px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    transition: all 0.3s ease !important;
    border: 2px solid #f59e0b !important;
}

.car-category::before {
    content: '★' !important;
    font-size: 0.7rem !important;
}

.car-card:hover .car-category, .fleet-showcase .car-card:hover .car-category,
.cars-grid .car-card:hover .car-category, section .car-card:hover .car-category {
    background: #d97706 !important;
    border-color: #d97706 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4) !important;
}

.car-price {
    font-size: 1.8rem !important;
    color: #f59e0b !important;
    font-weight: bold !important;
    text-align: center !important;
    margin-top: 15px !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
    display: block !important;
    margin-bottom: 15px !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

.car-price .price {
    font-size: 1.8rem !important;
    color: #f59e0b !important;
    font-weight: bold !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
    line-height: 1 !important;
}

.price-amount {
    font-size: 1.8rem !important;
    font-weight: bold !important;
    color: #f59e0b !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
    transition: all 0.3s ease;
}

.car-card:hover .price-amount,
.car-card:hover .car-price,
.car-card:hover .car-price .price {
    color: #f59e0b !important;
    transform: scale(1.05) !important;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7) !important;
}

.price-period {
    color: var(--text-muted) !important;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.car-card:hover .price-period {
    color: var(--text-secondary) !important;
}

.car-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 1rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.05));
    color: #cccccc;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    transition: all 0.3s ease;
}

.feature-item i {
    color: #f59e0b;
    font-size: 1rem;
    width: 18px;
    text-align: center;
    background: rgba(245, 158, 11, 0.1);
    padding: 4px;
    border-radius: 4px;
}

.car-card:hover .feature-item, .fleet-showcase .car-card:hover .feature-item,
.cars-grid .car-card:hover .feature-item, section .car-card:hover .feature-item {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.1));
    color: white;
    transform: scale(1.02);
}

.car-actions {
    display: flex !important;
    gap: 0.5rem !important;
    margin-top: 1.5rem !important;
}

/* .btn-rent - REMOVED FOR HERO SECTION DEBUGGING */

/* .btn-rent:hover - REMOVED FOR HERO SECTION DEBUGGING */

.btn-details {
    background: rgba(255, 255, 255, 0.05) !important;
    color: var(--text-color) !important;
    border: 1px solid var(--border-color) !important;
    justify-content: center !important;
    flex: 1 !important;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.btn-details:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1) !important;
}

/* Enhanced Price Display - matching debug version */
.price-display, .fleet-showcase .price-display, .cars-grid .price-display, section .price-display {
    background: rgba(0, 0, 0, 0.4) !important;
    border: 2px solid var(--primary-color) !important;
    border-radius: 12px !important;
    padding: 15px !important;
    text-align: center !important;
    margin: 1rem 0 !important;
    transition: all 0.3s ease !important;
}

.car-card:hover .price-display, .fleet-showcase .car-card:hover .price-display,
.cars-grid .car-card:hover .price-display, section .car-card:hover .price-display {
    background: rgba(245, 158, 11, 0.1) !important;
    border-color: var(--primary-light) !important;
    transform: scale(1.05) !important;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3) !important;
}

/* =============================================================================
 * FAQ SECTION - BLACK THEME RESPONSIVE
 * =============================================================================
 */
.faq-section {
    padding: var(--section-padding) 0 !important;
    background: var(--section-background) !important;
    border-top: 1px solid var(--border-color) !important;
}

.faq-container {
    max-width: 100% !important;
    margin: 0 auto;
    width: 100%;
}

.faq-item {
    margin-bottom: 1.5rem !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--border-radius) !important;
    overflow: hidden;
    background: var(--card-background) !important;
    box-shadow: var(--shadow-card) !important;
    transition: all 0.3s ease !important;
}

.faq-item:hover {
    border-color: var(--primary-color) !important;
    box-shadow: var(--shadow-hover) !important;
    transform: translateY(-2px);
}

.faq-question {
    width: 100% !important;
    background: var(--card-background) !important;
    border: none !important;
    padding: 1.5rem !important;
    text-align: left !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    transition: all 0.3s ease !important;
    color: var(--text-color) !important;
}

.faq-question h4 {
    color: var(--text-color) !important;
    margin: 0 !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    flex: 1;
}

.faq-question i {
    color: var(--primary-color) !important;
    transition: all 0.3s ease !important;
    font-size: 1rem !important;
    margin-left: 1rem;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    color: var(--primary-color) !important;
}

.faq-question:hover h4 {
    color: var(--primary-color) !important;
}

.faq-question:hover i {
    transform: rotate(45deg) !important;
    color: var(--primary-light) !important;
}

.faq-item.active .faq-question {
    background: var(--primary-color) !important;
    color: black !important;
}

.faq-item.active .faq-question h4 {
    color: black !important;
}

.faq-item.active .faq-question i {
    color: black !important;
    transform: rotate(45deg) !important;
}

.faq-answer {
    padding: 0 1.5rem !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    background: var(--card-background) !important;
}

.faq-item.active .faq-answer {
    padding: 1.5rem !important;
    max-height: 300px !important;
}

.faq-answer p {
    color: var(--text-secondary) !important;
    line-height: 1.7 !important;
    font-size: 1rem !important;
    margin: 0 !important;
}

/* =============================================================================
 * FOOTER - BLACK THEME
 * =============================================================================
 */
.footer {
    background: #000000 !important;
    border-top: 1px solid var(--border-color) !important;
    padding: 3rem 0 1rem !important;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--text-color) !important;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
    color: var(--text-secondary) !important;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color) !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color) !important;
    color: var(--text-muted) !important;
}

/* =============================================================================
 * RESPONSIVE DESIGN - ENHANCED
 * =============================================================================
 */

/* Large screens */
@media (min-width: 1200px) {
    .cars-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .hero-title {
        font-size: 4.5rem !important;
    }
    
    .container {
        padding: 0 2rem;
    }
}

/* Medium-large screens */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem !important;
    }
    
    .cars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .filter-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fleet-search-section {
        padding: 1.5rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1.1rem !important;
        margin-bottom: 2rem;
    }
    
    .hero-content {
        padding: 4rem 0 3rem;
    }
    
    .cars-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .filter-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .fleet-search-section {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .car-card, .fleet-showcase .car-card {
        min-height: auto;
    }
    
    .car-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    /* .btn-rent, .btn-details - REMOVED FOR HERO SECTION DEBUGGING */
    
    .nav-menu {
        display: none;
    }
    
    .navbar {
        height: 60px !important;
    }
    
    .nav-container {
        padding: 0 1rem;
        height: 60px !important;
    }
    
    .brand-logo {
        height: 35px;
    }
    
    .section-header h2 {
        font-size: 2rem !important;
    }
    
    .section-header p {
        font-size: 1rem !important;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem !important;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem !important;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }
    
    /* .btn - REMOVED FOR HERO SECTION DEBUGGING */
    
    .cars-grid {
        gap: 1rem;
    }
    
    .car-card, .fleet-showcase .car-card {
        margin-bottom: 1rem;
    }
    
    .car-info {
        padding: 1rem;
    }
    
    .car-header {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }
    
    .car-price {
        text-align: left;
    }
    
    .car-features {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
    
    .feature-item {
        padding: 6px;
        font-size: 0.85rem;
    }
    
    .fleet-search-section {
        padding: 0.75rem;
    }
    
    .fleet-search-input {
        padding: 12px 40px 12px 15px;
        font-size: 0.9rem;
    }
    
    .filter-select {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem !important;
        margin-bottom: 0.75rem;
    }
    
    .section-header p {
        font-size: 0.95rem !important;
    }
}

/* Ultra small screens */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.75rem !important;
    }
    
    .cars-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .car-card, .fleet-showcase .car-card {
        border-radius: 8px !important;
    }
    
    .car-info {
        padding: 0.75rem;
    }
    
    /* .btn-rent, .btn-details - REMOVED FOR HERO SECTION DEBUGGING */
    
    .fleet-search-section {
        padding: 0.5rem;
        border-radius: 8px;
    }
}

/* =============================================================================
 * ANIMATIONS
 * =============================================================================
 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.car-card {
    animation: fadeInUp 0.6s ease forwards;
}

.car-card:nth-child(1) { animation-delay: 0.1s; }
.car-card:nth-child(2) { animation-delay: 0.2s; }
.car-card:nth-child(3) { animation-delay: 0.3s; }
.car-card:nth-child(4) { animation-delay: 0.4s; }

/* =============================================================================
 * LARGE CENTERED MODAL - DARK THEME OVERRIDES
 * =============================================================================
 */

.modal {
    background: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(15px) !important;
}

.modal-content {
    background: #111 !important;
    color: #fff !important;
    border: 1px solid #333 !important;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6) !important;
}

.modal-header {
    background: linear-gradient(135deg, #111, #1a1a1a) !important;
    border-bottom: 2px solid #333 !important;
}

.modal-header h3 {
    color: #f59e0b !important;
}

.close-modal {
    color: #f59e0b !important;
    background: none !important;
}

.close-modal:hover {
    color: #d97706 !important;
    background: rgba(245, 158, 11, 0.1) !important;
}

.booking-info-section h4,
.booking-summary-section h4 {
    color: #f59e0b !important;
}

.form-group label {
    color: #f59e0b !important;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #222 !important;
    color: #fff !important;
    border: 2px solid #333 !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #f59e0b !important;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2) !important;
    background: #2a2a2a !important;
}

.form-group input[readonly] {
    background: #1a1a1a !important;
    color: #ccc !important;
}

.booking-summary {
    background: #222 !important;
    border: 2px solid #333 !important;
}

.vehicle-display {
    border-bottom: 1px solid #333 !important;
}

.vehicle-display h3 {
    color: #f59e0b !important;
}

.vehicle-display p {
    color: #ccc !important;
}

.summary-item {
    color: #fff !important;
}

.summary-item.total {
    border-top: 2px solid #f59e0b !important;
    color: #f59e0b !important;
}

.submit-btn {
    background: linear-gradient(90deg, #f59e0b, #d97706) !important;
    color: #000 !important;
}

.submit-btn:hover {
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3) !important;
}
