/* ===================================
   SJ MOTORSPORTS - COMPLETE CSS FILE
   Replace your entire style.css with this
   =================================== */

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #dc2626;
    --secondary-color: #1f2937;
    --text-color: #374151;
    --light-gray: #f9fafb;
    --border-color: #e5e7eb;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #111827;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid #374151;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 25px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar-item:hover {
    color: #dc2626;
}

.top-bar-item i {
    font-size: 14px;
}

/* ===== MAIN HEADER ===== */
.main-header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    gap: 30px;
}

/* ===== LOGO ===== */
.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(220, 38, 38, 0.3);
}

.logo-icon i {
    font-size: 24px;
    color: #fff;
}

.logo-text h1 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
}

.logo-text span {
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
}

/* ===== DESKTOP NAVIGATION ===== */
.desktop-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.desktop-nav li {
    position: relative;
}

.desktop-nav li a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 18px 24px;
    text-decoration: none;
    color: #374151;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    white-space: nowrap;
}

.desktop-nav li a i.fa-chevron-down {
    font-size: 10px;
    margin-left: 3px;
    transition: transform 0.3s;
}

.desktop-nav li a:hover {
    color: #dc2626;
    background: #fee2e2;
}

.desktop-nav li.active > a {
    color: #dc2626;
    border-bottom: 3px solid #dc2626;
}

.desktop-nav li:hover a i.fa-chevron-down {
    transform: rotate(180deg);
}

/* ===== SUBMENU ===== */
.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 100;
    margin-top: 0;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    list-style: none;
}

.submenu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #374151;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 500;
}

.submenu li a i {
    font-size: 16px;
    color: #6b7280;
    width: 20px;
}

.submenu li a:hover {
    background: #fee2e2;
    color: #dc2626;
}

.submenu li a:hover i {
    color: #dc2626;
}

/* ===== HEADER CTA ===== */
.header-cta .btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 8px rgba(220, 38, 38, 0.3);
}

.header-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(220, 38, 38, 0.4);
}

.header-cta .btn i {
    margin-right: 5px;
}

/* ===== MOBILE MENU TOGGLE ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: #1f2937;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: #fff;
    z-index: 1000;
    transition: right 0.3s;
    overflow-y: auto;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.mobile-logo i {
    font-size: 24px;
    color: #dc2626;
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
    transition: background 0.3s;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.mobile-menu-list li {
    border-bottom: 1px solid #e5e7eb;
}

.mobile-menu-list li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    text-decoration: none;
    color: #374151;
    font-weight: 600;
    transition: all 0.3s;
}

.mobile-menu-list li a i:first-child {
    font-size: 20px;
    color: #6b7280;
    width: 24px;
    text-align: center;
}

.mobile-menu-list li a span {
    flex: 1;
}

.mobile-menu-list li a i:last-child {
    font-size: 14px;
    color: #d1d5db;
    transition: transform 0.3s;
}

.mobile-menu-list li a:hover,
.mobile-menu-list li.active a {
    background: #fee2e2;
    color: #dc2626;
}

.mobile-menu-list li a:hover i,
.mobile-menu-list li.active a i {
    color: #dc2626;
}

.mobile-menu-list li a:hover i:last-child {
    transform: translateX(5px);
}

/* Mobile Submenu */
.mobile-has-submenu .mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    background: #f9fafb;
}

.mobile-has-submenu.open .mobile-submenu {
    max-height: 300px;
}

.mobile-submenu-arrow {
    transition: transform 0.3s;
}

.mobile-has-submenu.open .mobile-submenu-arrow {
    transform: rotate(180deg);
}

.mobile-submenu li a {
    padding-left: 55px;
    font-size: 14px;
}

.mobile-menu-footer {
    padding: 20px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

.mobile-menu-footer .btn {
    margin-bottom: 20px;
}

.mobile-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-contact-info a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.mobile-contact-info a:hover {
    color: #dc2626;
}

.mobile-contact-info a i {
    font-size: 16px;
    width: 20px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: #b91c1c;
}

.btn-secondary {
    background: var(--white);
    color: var(--secondary-color);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--light-gray);
}

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

.btn-light:hover {
    background: var(--white);
    color: var(--secondary-color);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-lg {
    padding: 15px 35px;
    font-size: 18px;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: var(--white);
    padding: 100px 0;
}

.hero-content {
    max-width: 700px;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 15px;
    color: #d1d5db;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    color: #9ca3af;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-box {
    display: flex;
    gap: 20px;
}

.feature-icon {
    background: #fee2e2;
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-box h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

/* ===== SECTIONS ===== */
.featured-vehicles,
.inventory-section,
.financing-section,
.about-section,
.contact-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto 20px;
}

/* ===== VEHICLE CARDS ===== */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.vehicle-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.vehicle-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-type {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.vehicle-info {
    padding: 25px;
}

.vehicle-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.vehicle-model {
    color: #6b7280;
    margin-bottom: 15px;
}

.vehicle-specs-mini {
    display: flex;
    gap: 15px;
    margin: 10px 0;
    font-size: 13px;
    color: #6b7280;
}

.vehicle-specs-mini span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.vehicle-specs-mini i {
    color: #9ca3af;
}

.vehicle-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.vehicle-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.vehicle-mileage {
    color: #6b7280;
    font-size: 14px;
}

.vehicle-actions {
    display: flex;
    gap: 10px;
}

/* ===== SOLD & COMING SOON OVERLAYS ===== */
.vehicle-card.sold .vehicle-image,
.vehicle-card.coming-soon .vehicle-image {
    position: relative;
}

.sold-overlay,
.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sold-badge,
.coming-soon-badge {
    background: #fff;
    color: #dc2626;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.sold-badge {
    background: #10b981;
    color: #fff;
}

.coming-soon-badge {
    background: #f59e0b;
    color: #fff;
}

/* ===== NOTICE BOXES ===== */
.sold-notice,
.coming-soon-notice {
    background: #dbeafe;
    border-left: 4px solid #3b82f6;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sold-notice {
    background: #d1fae5;
    border-color: #10b981;
}

.coming-soon-notice {
    background: #fef3c7;
    border-color: #f59e0b;
}

.sold-notice i,
.coming-soon-notice i {
    font-size: 24px;
    color: #3b82f6;
}

.sold-notice i {
    color: #10b981;
}

.coming-soon-notice i {
    color: #f59e0b;
}

.sold-notice p,
.coming-soon-notice p {
    margin: 0;
    color: #374151;
}

.sold-notice a,
.coming-soon-notice a {
    color: #dc2626;
    font-weight: 600;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

/* ===== ADVANCED SEARCH PANEL ===== */
.search-panel {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    overflow: hidden;
}

.search-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
}

.search-toggle:hover {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
}

.search-toggle i:first-child {
    margin-right: 10px;
}

.search-toggle i:last-child {
    transition: transform 0.3s;
}

.search-toggle.active i:last-child {
    transform: rotate(180deg);
}

.search-form-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.search-form-wrapper.active {
    max-height: 500px;
}

.advanced-search-form {
    padding: 30px 25px;
}

.search-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.search-field label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 14px;
}

.search-field label i {
    color: #dc2626;
    margin-right: 5px;
}

.search-field input,
.search-field select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.search-field input:focus,
.search-field select:focus {
    outline: none;
    border-color: #dc2626;
}

.range-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.range-inputs input {
    flex: 1;
}

.range-inputs span {
    color: #6b7280;
    font-size: 14px;
}

.search-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.search-buttons .btn {
    min-width: 150px;
}

/* ===== RESULTS INFO ===== */
.results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px 0;
    border-bottom: 2px solid #e5e7eb;
}

.results-count {
    font-size: 16px;
    color: #374151;
}

.results-count strong {
    color: #dc2626;
    font-size: 18px;
}

.filtered-text {
    color: #6b7280;
    font-size: 14px;
    font-style: italic;
}

.view-options {
    display: flex;
    gap: 10px;
}

.view-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    text-decoration: none;
    color: #6b7280;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.view-link:hover,
.view-link.active {
    border-color: #dc2626;
    background: #fee2e2;
    color: #dc2626;
}

.view-link i {
    font-size: 16px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #d1d5db;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FORMS ===== */
.contact-form,
.financing-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.form-note {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    margin-top: 15px;
}

/* ===== ALERTS ===== */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert i {
    font-size: 24px;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
}

/* ===== FOOTER ===== */
.main-footer {
    background: #000;
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 24px;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
}

.footer-tagline {
    color: #6b7280;
    font-style: italic;
    margin-top: 10px;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.no-results p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 20px;
}

.desktop-only {
    display: block;
}

/* ===== ABOUT PAGE ===== */
.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
}

.motto-box {
    background: var(--light-gray);
    padding: 30px;
    border-left: 4px solid var(--primary-color);
    margin-top: 30px;
}

.motto-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.motto-text {
    font-size: 20px;
    font-style: italic;
    color: var(--secondary-color);
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.values-section {
    text-align: center;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-box {
    padding: 30px;
    background: var(--light-gray);
    border-radius: 12px;
}

.value-box i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-methods {
    margin: 40px 0;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    background: #fee2e2;
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-method h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.text-muted {
    color: #6b7280;
    font-size: 14px;
}

.business-hours {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 12px;
}

.business-hours h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.business-hours ul {
    list-style: none;
}

.business-hours li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.business-hours li:last-child {
    border-bottom: none;
}

/* ===== FINANCING PAGE ===== */
.financing-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.financing-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.financing-benefits {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 20px;
}

.financing-form {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 12px;
}

.contact-form-wrapper {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 12px;
}

/* ===== VEHICLE DETAILS PAGE ===== */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 20px;
}

.back-link:hover {
    color: var(--primary-color);
}

.vehicle-details-section {
    padding: 60px 0;
}

.vehicle-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.vehicle-details-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.vehicle-type-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.vehicle-details-info h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.vehicle-price-large {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.vehicle-specs {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.spec-item i {
    font-size: 24px;
    color: var(--primary-color);
}

.spec-label {
    display: block;
    font-size: 14px;
    color: #6b7280;
}

.spec-value {
    display: block;
    font-size: 18px;
    font-weight: 600;
}

.vehicle-description {
    margin-bottom: 30px;
}

.vehicle-description h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.vehicle-actions-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .desktop-nav li a {
        padding: 18px 18px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .desktop-nav,
    .desktop-only {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-content {
        padding: 12px 0;
    }
    
    .logo-icon {
        width: 45px;
        height: 45px;
    }
    
    .logo-icon i {
        font-size: 20px;
    }
    
    .logo-text h1 {
        font-size: 18px;
    }
    
    .logo-text span {
        font-size: 11px;
    }
    
    .hero h2 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .vehicles-grid {
        grid-template-columns: 1fr;
    }
    
    .vehicle-details-grid,
    .about-content,
    .contact-grid,
    .financing-content {
        grid-template-columns: 1fr;
    }
    
    .search-row {
        grid-template-columns: 1fr;
    }
    
    .results-info {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .view-options {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .view-link {
        flex: 1;
        min-width: 100px;
        justify-content: center;
    }
    
    .search-buttons {
        flex-direction: column;
    }
    
    .search-buttons .btn {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .top-bar-left,
    .top-bar-right {
        width: 100%;
        gap: 15px;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .vehicle-price {
        font-size: 24px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
}

/* ===== END OF CSS FILE ===== */results {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
    color: #9ca3af;
}

.no-results i {
    font-size: 64px;
    color: #d1d5db;
    margin-bottom: 20px;
}

.no-