/* Base Styles */
:root {
    --primary-color: #e42222;
    --secondary-color: #131313;
    --accent-color: #e42222;
    --text-color: #333;
    --light-bg: #f8fafc;
    --dark-bg: #222222;
    --card-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --card-hover-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    --transition-speed: 0.3s;
    --light-gray: #f8f8f8;
    --medium-gray: #e0e0e0;
    --dark-gray: #757575;
    --white: #ffffff;
    --font-family: 'Montserrat', sans-serif;
    --border-radius: 6px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-gray);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #c81c1c;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 11px 22px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 28px;
    position: relative;
    padding-bottom: 10px;
    color: var(--dark-bg);
    font-weight: 600;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.view-all {
    color: var(--primary-color);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.view-all i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.view-all:hover i {
    transform: translateX(5px);
}

/* Header Styles */
header {
    background-color: var(--dark-bg);
    color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px;
}

.logo {
    display: none;
}

.logo img {
    display: none;
}

.contact-header {
    display: flex;
    gap: 20px;
}

.contact-header a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.contact-header a i {
    margin-right: 8px;
    font-size: 18px;
}

.contact-header a:hover {
    color: var(--primary-color);
}

.search-box {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.search-box input {
    border: none;
    padding: 12px 15px;
    outline: none;
    width: 250px;
    font-family: var(--font-family);
    font-size: 14px;
}

.search-box button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 15px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.search-box button:hover {
    background-color: #c81c1c;
}

.search-box button i {
    margin-right: 5px;
}

nav {
    background-color: var(--dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

nav .container {
    justify-content: center;
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    font-weight: 500;
    color: var(--white);
    transition: color var(--transition-speed) ease;
    position: relative;
    padding: 15px 0;
    display: block;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.hamburger-menu.open span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-menu.open span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.open span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

body.menu-open {
    overflow: hidden;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1583121274602-3e2820c69888?w=1500&q=85');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Main Content Styles */
main {
    padding: 60px 0 30px;
}

/* Featured Vehicles */
.featured-vehicles {
    margin-bottom: 60px;
}

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

.vehicle-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-hover-shadow);
}

.vehicle-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 30px;
    z-index: 3;
}

.vehicle-logo {
    display: none;
}

.vehicle-logo img {
    display: none;
}

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

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.05);
}

.vehicle-info {
    padding: 20px;
}

.vehicle-info h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.vehicle-info h3 a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.vehicle-info h3 a:hover {
    color: var(--primary-color);
}

.vehicle-details {
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

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

.vehicle-image a {
    display: block;
    height: 100%;
}

.view-more-container {
    text-align: center;
    margin-top: 40px;
}

/* Benefits Section */
.benefits-section {
    background-color: var(--white);
    padding: 60px 0;
    margin-bottom: 60px;
}

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

.benefit-item {
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

.benefit-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.benefit-item p {
    color: var(--dark-gray);
}

/* About Section */
.about-section {
    background-color: var(--light-gray);
    padding: 60px 0;
    margin-bottom: 60px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    color: var(--dark-bg);
    font-weight: 600;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.about-text p {
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.about-text .btn-secondary {
    margin-top: 10px;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1606664825673-78e3fb7b82a1?w=1500&q=85');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 80px 0;
    margin-bottom: 60px;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.cta-buttons .btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Footer Styles */
footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-contact h3,
.footer-hours h3,
.footer-menu h3,
.footer-social h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: var(--white);
}

.footer-contact h3::after,
.footer-hours h3::after,
.footer-menu h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-contact p {
    margin-bottom: 12px;
    color: #ccc;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 18px;
    text-align: center;
}

.footer-contact a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #fff;
    text-decoration: underline;
}

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

.footer-menu ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-menu ul li a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-admin-settings {
    margin-bottom: 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
}

.admin-company-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
    color: var(--white);
}

.admin-company-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.admin-company-info p {
    margin-bottom: 8px;
    color: #ccc;
}

.admin-company-info a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.admin-company-info a:hover {
    color: #fff;
    text-decoration: underline;
}

.copyright {
    color: #999;
    font-size: 14px;
}

.developer {
    color: #999;
    font-size: 14px;
}

.developer a {
    color: var(--primary-color);
}

.footer-hours p {
    margin-bottom: 10px;
    color: #ccc;
}

/* Responsive Styles */
@media (max-width: 992px) {
    header .container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo {
        display: none;
    }
    
    .contact-header {
        margin-bottom: 15px;
    }
    
    .search-box {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .search-box input {
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: center;
    }
    
    .logo {
        display: none;
    }
    
    .contact-header {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
        align-items: center;
    }
    
    .search-box {
        width: 100%;
    }
    
    .hamburger-menu {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 102;
    }
    
    nav {
        position: relative;
        min-height: 50px;
    }
    
    nav .container {
        justify-content: flex-start;
        padding: 0;
        position: relative;
    }
    
    nav ul {
        display: none !important;
        flex-direction: column;
        align-items: center;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--dark-bg);
        box-shadow: -2px 0 10px rgba(0,0,0,0.2);
        z-index: 100;
        overflow-y: auto;
        transition: right 0.3s ease;
        padding: 60px 20px 30px;
    }
    
    nav ul.open {
        display: flex !important;
        right: 0;
    }
    
    nav ul li {
        margin: 10px 0;
        width: 100%;
    }
    
    nav ul li a {
        padding: 15px;
        display: block;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .backdrop {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0,0,0,0.5);
        z-index: 99;
    }
    
    .backdrop.open {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 30px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .vehicle-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .vehicle-image {
        height: 160px;
    }
    
    .vehicle-info h3 {
        font-size: 14px;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .search-box input {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    .search-box button {
        width: 100%;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
}

/* Vehicle Detail Page Styles */
.vehicle-detail {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-bottom: 30px;
}

.vehicle-detail-header {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 20px;
}

.vehicle-detail-header h1 {
    font-size: 24px;
    margin-bottom: 5px;
}

.vehicle-detail-header p {
    color: #ccc;
}

.vehicle-detail-gallery {
    display: grid;
    grid-template-columns: 4fr 1fr;
    gap: 15px;
    padding: 20px;
}

.vehicle-detail-main-image {
    height: 400px;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

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

.vehicle-detail-thumbnails {
    display: grid;
    grid-template-rows: repeat(5, 1fr);
    gap: 10px;
}

.vehicle-thumbnail {
    height: 70px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    border-radius: 4px;
}

.vehicle-thumbnail:hover,
.vehicle-thumbnail.active {
    border-color: var(--primary-color);
}

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

.vehicle-detail-info {
    padding: 30px;
    border-top: 1px solid var(--light-gray);
}

.vehicle-detail-info h2 {
    font-size: 22px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: var(--secondary-color);
}

.vehicle-detail-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.vehicle-specs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.vehicle-spec-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 10px;
}

.vehicle-spec-item i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 18px;
    width: 24px;
    text-align: center;
}

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

.vehicle-detail-contact {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-top: 30px;
}

.vehicle-detail-contact h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    outline: none;
    font-family: var(--font-family);
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-form button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-family: var(--font-family);
}

.contact-form button:hover {
    background-color: #c81c1c;
}

.contact-form .checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-form .checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-bottom: 0;
}

.back-to-search {
    margin-bottom: 20px;
}

.back-to-search a {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-to-search a i {
    margin-right: 5px;
}

.back-to-search a:hover {
    color: #c81c1c;
}

@media (max-width: 768px) {
    .vehicle-detail-gallery {
        grid-template-columns: 1fr;
    }
    
    .vehicle-detail-thumbnails {
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: 1fr;
    }
}

/* Inventory Page Styles */
.inventory-header {
    margin-bottom: 40px;
}

.inventory-header h1 {
    font-size: 28px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: var(--dark-bg);
    font-weight: 600;
}

.inventory-header h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.filter-options select {
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    outline: none;
    min-width: 200px;
    font-family: var(--font-family);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

.filter-button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-width: 100px;
    font-family: var(--font-family);
}

.filter-button:hover {
    background-color: #c81c1c;
}

.pagination {
    margin: 50px 0;
    display: flex;
    justify-content: center;
}

.pagination-controls {
    display: flex;
    gap: 8px;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.page-link.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.page-link:hover:not(.active) {
    background-color: var(--light-gray);
}

@media (max-width: 768px) {
    .filter-options {
        flex-direction: column;
        gap: 15px;
    }
    
    .filter-options select {
        width: 100%;
        min-width: 0;
    }
    
    .filter-button {
        width: 100%;
    }
}

/* Contact Page Styles */
.contact-page h1 {
    font-size: 28px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
    color: var(--dark-bg);
    font-weight: 600;
}

.contact-page h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-info {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.info-item {
    display: flex;
    margin-bottom: 25px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 20px;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.info-item p {
    color: var(--dark-gray);
    line-height: 1.6;
}

.contact-form-container {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.contact-form-container h2 {
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: var(--secondary-color);
}

.contact-form-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.map-container {
    margin: 50px 0;
}

.map-container h2 {
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: var(--secondary-color);
}

.map-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.google-map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=1500&q=85');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Vehicle Details - Action Buttons */
.vehicle-action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.vehicle-action-buttons .btn-primary,
.vehicle-action-buttons .btn-secondary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-action-buttons i {
    margin-right: 8px;
}

/* Related Vehicles */
.related-vehicles {
    margin: 60px 0;
}

/* Contact Social */
.contact-social {
    margin-top: 30px;
}

.contact-social h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Inventory Results */
.inventory-results {
    margin-bottom: 20px;
}

.results-count {
    color: var(--dark-gray);
    font-size: 14px;
}

.inventory-section {
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .vehicle-action-buttons {
        flex-direction: column;
    }
} 