@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #9E1B1E; /* Maroon from logo */
    --primary-hover: #b82226;
    --secondary-color: #111111; /* Black from logo */
    --bg-color: #f8f9fa;
    --bg-dark: #1a1a1a;
    --text-main: #333333;
    --text-muted: #666666;
    --text-light: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}


.vehicle-card-skeleton {
  background: #fff;
  border-radius: 12px;
  height: 380px;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  overflow: hidden;
  position: relative;
}
.vehicle-card-skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title h2 span {
    color: var(--primary-color);
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* Header */
header {
    background-color: var(--text-light);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background-color: var(--secondary-color);
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left span {
    margin-right: 1.5rem;
}

.top-bar-left i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.top-bar-right a {
    color: var(--text-light);
    margin-left: 1rem;
}

.top-bar-right a:hover {
    color: var(--primary-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-sub {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 4px;
    background-color: var(--secondary-color);
    color: white;
    padding: 0 5px;
    border-radius: 2px;
    align-self: flex-start;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 5px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
}

/* Hero Section / Banner with 3D Effects */
.hero {
    height: 90vh;
    min-height: 650px;
    position: relative;
    overflow: hidden;
    perspective: 2000px; /* 3D Perspective */
    background-color: var(--secondary-color);
}

.hero-3d-scene {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    transform: translateZ(-500px) rotateX(10deg); /* Initial 3D state */
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateZ(0) rotateX(0); /* Active 3D state */
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(17, 17, 17, 0.85) 0%, rgba(17, 17, 17, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.slide-content {
    position: relative;
    z-index: 10;
    color: var(--text-light);
    max-width: 700px;
    transform: translateX(-50px) translateZ(100px);
    opacity: 0;
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1) 0.4s;
}

.slide.active .slide-content {
    transform: translateX(0) translateZ(100px);
    opacity: 1;
}

.slide-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.slide-content h1 span {
    color: var(--primary-color);
    display: block;
    font-size: 5rem;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #eee;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

/* 3D Scroll Reveal Animation */
.hero.scrolled .hero-3d-scene {
    transform: rotateX(15deg) scale(0.85) translateY(-50px);
    filter: brightness(0.5);
}

.hero-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
    z-index: 20;
}

.control-dot {
    width: 50px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
}

.control-dot.active {
    background-color: var(--primary-color);
    width: 80px;
}

/* Brands Slider */
.brands-section {
    padding: 4rem 0;
    background-color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.brands-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    overflow: hidden;
    position: relative;
}

.brand-track {
    display: flex;
    gap: 4rem;
    animation: scrollBrands 30s linear infinite;
}

.brand-item {
    min-width: 150px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: grayscale(100%) brightness(0.2) opacity(0.6);
    transition: var(--transition);
}

.brand-item img {
    height: 60px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.brand-item:hover {
    filter: grayscale(0%) brightness(1) opacity(1);
}

@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-120px * 7 - 4rem * 7)); } /* Adjust based on num items */
}

/* Featured Vehicles */
.featured-section {
    padding: 5rem 0;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.vehicle-card {
    background-color: var(--text-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.vehicle-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.vehicle-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.vehicle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vehicle-card:hover .vehicle-img img {
    transform: scale(1.05);
}

.badge-featured {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
}

.vehicle-price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 4px;
}

.vehicle-content {
    padding: 1.5rem;
}

.vehicle-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.vehicle-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.meta-item {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--primary-color);
    margin-right: 8px;
}

.vehicle-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Why Choose Us */
.why-us-section {
    padding: 5rem 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.why-us-section .section-title h2 {
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-light);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-card p {
    color: #aaa;
    font-size: 0.95rem;
}

/* Instagram Section */
.instagram-section {
    padding: 5rem 0;
    /* background-color: var(--text-light); */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.instagram-username {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
}

.instagram-username:hover {
    color: var(--primary-hover);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.instagram-card {
    display: flex;
    flex-direction: column;
    background: var(--text-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.instagram-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.instagram-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
    background: #000;
}

.instagram-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-card:hover .instagram-img-wrapper img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(158, 27, 30, 0.85); /* Crimson theme overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    gap: 10px;
    z-index: 2;
}

.instagram-card:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay i {
    font-size: 2.5rem;
    color: var(--text-light);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.instagram-card:hover .instagram-overlay i {
    transform: translateY(0);
}

.instagram-action {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s;
}

.instagram-card:hover .instagram-action {
    transform: translateY(0);
}

.instagram-info {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.instagram-caption {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #444;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
    font-weight: 400;
}

.instagram-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    padding-top: 0.8rem;
    font-weight: 600;
}

.instagram-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.instagram-meta i {
    color: var(--primary-color);
}

.instagram-cta-container {
    text-align: center;
    margin-top: 3rem;
}

.instagram-cta {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    transition: var(--transition);
}

/* Responsive grid for Instagram */
@media (max-width: 1024px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 576px) {
    .instagram-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding-top: 4rem;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-widget h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-text {
    color: #aaa;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #aaa;
    display: flex;
    align-items: center;
}

.footer-links li a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    color: var(--primary-color);
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--primary-color);
}

.footer-links li a:hover::before {
    transform: translateX(5px);
}

.contact-info li {
    display: flex;
    margin-bottom: 15px;
    color: #aaa;
}

.contact-info li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-bottom {
    background-color: #0a0a0a;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-color);
}

/* Page Headers */
.page-header {
    height: 600px;
    background-color: var(--secondary-color);
    background-image: linear-gradient(rgba(17, 17, 17, 0.8), rgba(17, 17, 17, 0.8)), url('https://images.unsplash.com/photo-1550355291-bbee04a92027?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    justify-content: center;
    font-size: 1.1rem;
}

.breadcrumb a {
    color: var(--primary-color);
}

/* About Page */
.about-section {
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.about-img img {
    width: 100%;
    display: block;
}

.about-img::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 5px solid var(--primary-color);
    z-index: -1;
    border-radius: 8px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.about-content h2 span {
    color: var(--primary-color);
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.mv-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--primary-color);
}

.mv-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.mv-card h3 i {
    color: var(--primary-color);
}

/* Services Page */
.services-section {
    padding: 5rem 0;
    background-color: var(--bg-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    color: white;
    transform: translateY(-10px);
}

.service-card:hover p, .service-card:hover h3, .service-card:hover i {
    color: white;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.service-card p {
    color: var(--text-muted);
    transition: var(--transition);
}

/* Contact Page */
.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-box {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    border-bottom: 3px solid var(--primary-color);
}

.info-box i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-box h4 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.info-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-form {
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--bg-color);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(158, 27, 30, 0.1);
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 3rem;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Inventory Details Page */
.car-details-section {
    padding: 5rem 0;
}

.car-details-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
}

.car-gallery {
    margin-bottom: 2rem;
}

.main-image {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    background-color: #ddd;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.thumb {
    height: 90px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumb.active, .thumb:hover {
    border-color: var(--primary-color);
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.car-info h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.car-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 2.5rem;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--border-color);
}

.spec-label {
    color: var(--text-muted);
    font-weight: 500;
}

.spec-value {
    font-weight: 600;
    color: var(--secondary-color);
}

.car-description {
    margin-bottom: 2.5rem;
}

.car-description h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: white;
}

/* Inventory List filters */
.inventory-filters {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group select, .filter-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-color);
    font-family: inherit;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid, .contact-grid, .car-details-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        min-width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .top-bar {
        display: none;
    }
    
    .testimonial-card {
        min-width: 100%;
    }
    
    .contact-info-boxes {
        grid-template-columns: 1fr;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
}
