html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

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

}

body {
    font-family: Arial, sans-serif;
    background: white;
    color: #111;
    width: 100%;
    margin: 0;
}

header {
    background: #080808;
    width: 100%
}

.navbar {
    max-width: 1400px;
    margin: auto;

    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 40px;
}


.logo {
    color: white;
    font-size: 22px;
    font-weight: 800;

    letter-spacing: 1px;

}

.nav-links {
    display: flex;

    list-style: none;

    gap: 28px
}

.nav-links a {
    color: white;

    text-decoration: none;

    font-size: 14px;
    font-weight: 500;

    transition: 0.3s;
}

.nav-links a:hover {
    color: #d71920;

}

.nav-button {
    background: #d71920;

    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;

}

.nav-button:hover {
    background: #b51218;

}

/* =========================
   HERO SECTION
========================= */

/* =========================
   PREMIUM HERO
========================= */

.hero {
    min-height: 720px;

    position: relative;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.65) 45%,
            rgba(0, 0, 0, 0.25) 100%),
        url("images/hero-car.jpg");

    background-size: cover;

    background-position: center;

    display: flex;

    align-items: center;

    padding: 100px 40px;

    color: white;
}


/* HERO CONTENT */

.hero-content {
    max-width: 1200px;

    width: 100%;

    margin: auto;

    position: relative;

    z-index: 2;
}


/* LABEL */

.hero-label {
    color: #d71920;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 4px;

    margin-bottom: 20px;
}


/* TITLE */

.hero h1 {
    font-size: 72px;

    line-height: 1.02;

    font-weight: 900;

    letter-spacing: -2px;

    max-width: 800px;

    margin-bottom: 25px;
}


/* DESCRIPTION */

.hero-text {
    font-size: 18px;

    line-height: 1.7;

    max-width: 580px;

    color: #eeeeee;

    margin-bottom: 35px;
}


/* BUTTONS */

.hero-buttons {
    display: flex;

    gap: 15px;
}


/* HERO BOTTOM */

.hero-bottom {
    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    display: flex;

    justify-content: center;

    background: rgba(0, 0, 0, 0.75);

    border-top: 1px solid rgba(255, 255, 255, 0.15);

    z-index: 3;
}


.hero-feature {
    min-width: 180px;

    padding: 18px 30px;

    text-align: center;

    border-right: 1px solid rgba(255, 255, 255, 0.15);
}


.hero-feature:last-child {
    border-right: none;
}


.hero-feature strong {
    display: block;

    color: white;

    font-size: 13px;

    letter-spacing: 2px;
}


.hero-feature span {
    color: #999;

    font-size: 12px;
}

/* RED BUTTON */

.primary-button {
    display: inline-block;

    background: #d71920;

    color: white;

    text-decoration: none;

    padding: 15px 28px;

    border-radius: 4px;

    font-weight: 700;

    font-size: 14px;

    transition: 0.3s ease;
}


.primary-button:hover {
    background: #b51218;

    transform: translateY(-2px);
}



/* SECOND BUTTON */

.secondary-button {
    border: 1px solid white;

    color: white;

    text-decoration: none;

    padding: 15px 28px;

    font-weight: 700;

    border-radius: 4px;

    transition: 0.3s;
}


/* SECOND BUTTON HOVER */

.secondary-button:hover {
    background: white;

    color: #111;
}

/* =========================
   QUICK ACTIONS
========================= */

.quick-actions {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 1px;

    background: #dddddd;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}


/* =========================
   ACTION CARD
========================= */

.action-card {
    background: white;

    padding: 30px 25px;

    display: flex;

    align-items: center;

    gap: 18px;

    text-decoration: none;

    color: #111;

    transition: 0.3s;
}


/* =========================
   ICON
========================= */

.action-icon {
    width: 48px;

    height: 48px;

    background: #080808;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    font-size: 20px;

    flex-shrink: 0;
}


/* =========================
   TITLE
========================= */

.action-card h3 {
    font-size: 16px;

    margin-bottom: 5px;
}


/* =========================
   DESCRIPTION
========================= */

.action-card p {
    font-size: 13px;

    color: #777;
}


/* =========================
   HOVER
========================= */

.action-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}


.action-card:hover .action-icon {
    background: #d71920;
}

/* =========================
   INVENTORY SECTION
========================= */

.inventory-section {
    background: #f7f7f7;

    padding: 100px 40px;
}


/* =========================
   SECTION HEADING
========================= */

.section-heading {
    max-width: 1200px;

    margin: 0 auto 50px;

    text-align: center;
}


.section-label {
    color: #d71920;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 10px;
}


.section-heading h2 {
    font-size: 44px;

    color: #111;

    font-weight: 800;

    margin-bottom: 15px;
}


.section-heading>p:last-child {
    color: #777;

    font-size: 16px;
}


/* =========================
   VEHICLE GRID
========================= */

.vehicle-grid {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* =========================
   VEHICLE CARD
========================= */

/* =========================
   PREMIUM VEHICLE CARDS
========================= */

.vehicle-card {
    background: #ffffff;

    border-radius: 8px;

    overflow: hidden;

    border: 1px solid #e5e5e5;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);

    transition: transform 0.3s ease,
        box-shadow 0.3s ease;
}


.vehicle-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.14);
}


/* VEHICLE IMAGE */

.vehicle-image {
    height: 260px;

    position: relative;

    overflow: hidden;

    background: #111;
}


.vehicle-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;
}


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


/* STATUS */

.vehicle-status {
    position: absolute;

    top: 16px;

    left: 16px;

    background: #d71920;

    color: white;

    padding: 8px 13px;

    border-radius: 3px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* VEHICLE INFORMATION */

.vehicle-info {
    padding: 25px;
}


.vehicle-info h3 {
    font-size: 20px;

    font-weight: 700;

    color: #111;

    margin-bottom: 8px;
}


.vehicle-price {
    color: #d71920;

    font-size: 25px;

    font-weight: 800;

    margin-bottom: 18px;
}


/* DETAILS */

.vehicle-details {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 0;

    border-top: 1px solid #eeeeee;

    border-bottom: 1px solid #eeeeee;

    padding: 15px 0;
}


.vehicle-details span {
    color: #666;

    font-size: 12px;

    padding: 0 12px;

    border-right: 1px solid #dddddd;
}


.vehicle-details span:first-child {
    padding-left: 0;
}


.vehicle-details span:last-child {
    border-right: none;
}


/* VIEW VEHICLE */

.vehicle-button {
    display: inline-block;

    margin-top: 20px;

    color: #111;

    text-decoration: none;

    font-size: 14px;

    font-weight: 800;

    transition: color 0.3s ease;
}


.vehicle-button:hover {
    color: #d71920;
}


/* =========================
   VIEW ALL BUTTON
========================= */

.inventory-button-container {
    text-align: center;

    margin-top: 45px;
}

/* =========================
   BODY STYLE SECTION
========================= */

.body-style-section {
    background: #ffffff;

    padding: 90px 40px;
}


/* =========================
   BODY STYLE GRID
========================= */

.body-style-grid {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 15px;
}


/* =========================
   BODY STYLE CARD
========================= */

.body-style-card {
    height: 280px;

    position: relative;

    overflow: hidden;

    text-decoration: none;

    background: #111;

    border-radius: 5px;
}


/* =========================
   CARD IMAGE
========================= */

.body-style-card img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: 0.4s;
}


/* =========================
   DARK OVERLAY
========================= */

.body-style-card::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(transparent 35%,
            rgba(0, 0, 0, 0.85));
}


/* =========================
   CARD CONTENT
========================= */

.body-style-overlay {
    position: absolute;

    z-index: 2;

    bottom: 25px;

    left: 20px;

    right: 20px;

    color: white;
}


.body-style-overlay h3 {
    font-size: 22px;

    margin-bottom: 8px;
}


.body-style-overlay span {
    color: #dddddd;

    font-size: 13px;
}


/* =========================
   HOVER EFFECT
========================= */

.body-style-card:hover img {
    transform: scale(1.08);
}


.body-style-card:hover .body-style-overlay span {
    color: #d71920;
}

/* =========================
   WHY CHOOSE US
========================= */

.why-us-section {
    background: #080808;

    color: white;

    padding: 100px 40px;
}


/* =========================
   CONTENT
========================= */

.why-us-content {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}


/* =========================
   TEXT
========================= */

.why-us-text .section-label {
    color: #d71920;
}


.why-us-text h2 {
    font-size: 45px;

    line-height: 1.1;

    margin-bottom: 25px;
}


.why-us-text h2 span {
    color: #d71920;

    display: block;
}


.why-us-text>p:not(.section-label) {
    color: #cccccc;

    font-size: 16px;

    line-height: 1.8;

    max-width: 550px;

    margin-bottom: 30px;
}


/* =========================
   BENEFITS
========================= */

.benefits-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}


.benefit-card {
    background: #151515;

    border: 1px solid #292929;

    padding: 30px;

    transition: 0.3s;
}


.benefit-card:hover {
    border-color: #d71920;

    transform: translateY(-5px);
}


/* =========================
   BENEFIT ICON
========================= */

.benefit-icon {
    width: 45px;

    height: 45px;

    background: #d71920;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    font-size: 20px;

    font-weight: bold;

    margin-bottom: 20px;
}


.benefit-card h3 {
    font-size: 18px;

    margin-bottom: 10px;
}


.benefit-card p {
    color: #999;

    font-size: 13px;

    line-height: 1.6;
}

/* =========================
   RENTALS SECTION
========================= */

.rentals-section {
    background: #f5f5f5;

    padding: 100px 40px;
}


/* =========================
   RENTAL GRID
========================= */

.rental-grid {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* =========================
   RENTAL CARD
========================= */

.rental-card {
    background: white;

    overflow: hidden;

    border-radius: 6px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

    transition: 0.3s;
}


.rental-card:hover {
    transform: translateY(-7px);

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.14);
}


/* =========================
   RENTAL IMAGE
========================= */

.rental-image {
    height: 250px;

    position: relative;

    overflow: hidden;
}


.rental-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: 0.4s;
}


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


/* =========================
   RENTAL TAG
========================= */

.rental-tag {
    position: absolute;

    top: 15px;

    left: 15px;

    background: #080808;

    color: white;

    padding: 7px 12px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================
   RENTAL INFORMATION
========================= */

.rental-info {
    padding: 25px;
}


.rental-info h3 {
    font-size: 21px;

    margin-bottom: 10px;
}


.rental-info>p {
    color: #777;

    font-size: 14px;

    line-height: 1.6;

    margin-bottom: 20px;
}


/* =========================
   RENTAL PRICE
========================= */

.rental-price {
    padding: 15px 0;

    border-top: 1px solid #eeeeee;

    border-bottom: 1px solid #eeeeee;

    margin-bottom: 20px;
}


.rental-price strong {
    font-size: 26px;

    color: #d71920;
}


.rental-price span {
    color: #777;

    font-size: 14px;
}


/* =========================
   RENTAL BUTTON
========================= */

.rental-button {
    color: #111;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;
}


.rental-button:hover {
    color: #d71920;
}


/* =========================
   RENTAL ACTION
========================= */

.rental-action {
    text-align: center;

    margin-top: 45px;
}

/* =========================
   SELL OR TRADE SECTION
========================= */

.sell-trade-section {
    background: #080808;

    color: white;

    padding: 100px 40px;

    overflow: hidden;
}


/* =========================
   CONTENT
========================= */

.sell-trade-content {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 70px;
}


/* =========================
   TEXT
========================= */

.sell-trade-text h2 {
    font-size: 48px;

    line-height: 1.1;

    margin-bottom: 25px;
}


.sell-trade-text>p:not(.section-label) {
    color: #cccccc;

    font-size: 16px;

    line-height: 1.8;

    max-width: 520px;

    margin-bottom: 30px;
}


/* =========================
   IMAGE
========================= */

.sell-trade-image {
    height: 400px;

    overflow: hidden;

    border-radius: 6px;
}


.sell-trade-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: 0.5s;
}


.sell-trade-image:hover img {
    transform: scale(1.05);
}

/* =========================
   FINANCING SECTION
========================= */

.financing-section {
    background: #ffffff;

    padding: 100px 40px;
}


/* =========================
   FINANCING CONTENT
========================= */

.financing-content {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}


/* =========================
   IMAGE
========================= */

.financing-image {
    height: 500px;

    overflow: hidden;

    border-radius: 6px;
}


.financing-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;
}


/* =========================
   TEXT
========================= */

.financing-text h2 {
    font-size: 48px;

    line-height: 1.1;

    margin-bottom: 25px;

    color: #111;
}


.financing-text>p:not(.section-label) {
    color: #777;

    font-size: 16px;

    line-height: 1.8;

    max-width: 520px;

    margin-bottom: 30px;
}


/* =========================
   FINANCING POINTS
========================= */

.financing-points {
    margin-bottom: 30px;
}


.financing-points div {
    display: flex;

    align-items: center;

    gap: 20px;

    padding: 15px 0;

    border-bottom: 1px solid #eeeeee;
}


.financing-points strong {
    color: #d71920;

    font-size: 14px;
}


.financing-points span {
    color: #333;

    font-size: 14px;
}

/* =========================
   REVIEWS SECTION
========================= */

.reviews-section {
    background: #f5f5f5;

    padding: 100px 40px;
}


/* =========================
   REVIEWS GRID
========================= */

.reviews-grid {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* =========================
   REVIEW CARD
========================= */

.review-card {
    background: white;

    padding: 35px;

    border-radius: 6px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);

    transition: 0.3s;
}


.review-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.10);
}


/* =========================
   STARS
========================= */

.stars {
    color: #d71920;

    font-size: 18px;

    letter-spacing: 3px;

    margin-bottom: 20px;
}


/* =========================
   REVIEW TEXT
========================= */

.review-text {
    color: #444;

    font-size: 15px;

    line-height: 1.8;

    font-style: italic;

    margin-bottom: 25px;
}


/* =========================
   REVIEW AUTHOR
========================= */

.review-author {
    display: flex;

    align-items: center;

    gap: 12px;

    border-top: 1px solid #eeeeee;

    padding-top: 20px;
}


/* =========================
   AUTHOR AVATAR
========================= */

.author-avatar {
    width: 42px;

    height: 42px;

    background: #080808;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    font-size: 12px;

    font-weight: 700;
}


/* =========================
   AUTHOR NAME
========================= */

.review-author h4 {
    font-size: 14px;

    margin-bottom: 4px;
}


.review-author span {
    color: #888;

    font-size: 12px;
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section {
    background: #080808;
    color: white;
    padding: 100px 40px;
}


/* MAIN LAYOUT */

.contact-content {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: start;
}


/* CONTACT TEXT */

.contact-info h2 {
    font-size: 48px;
    line-height: 1.1;

    margin-bottom: 25px;
}


.contact-description {
    color: #bbbbbb;

    font-size: 16px;
    line-height: 1.8;

    max-width: 500px;

    margin-bottom: 40px;
}


/* BUSINESS LOCATIONS */

.location-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.location-card {
    border: 1px solid #2a2a2a;
    border-top: 3px solid #d71920;
    padding: 22px;
    background: #101010;
}

.location-country {
    color: #d71920;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.location-card h3 {
    font-size: 17px;
    margin-bottom: 12px;
}

.location-card address {
    color: #aaaaaa;
    font-size: 14px;
    font-style: normal;
    line-height: 1.6;
    margin-bottom: 14px;
}

.location-phone,
.location-map-link {
    display: inline-block;
    color: white;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.location-phone {
    margin-bottom: 14px;
}

.location-map-link {
    border-bottom: 1px solid #d71920;
    padding-bottom: 3px;
}

.location-phone:hover,
.location-map-link:hover {
    color: #d71920;
}


/* CONTACT DETAILS */

.contact-details {
    display: grid;

    gap: 25px;
}


.contact-item {
    border-left: 3px solid #d71920;

    padding-left: 18px;
}


.contact-item h4 {
    font-size: 14px;

    margin-bottom: 6px;

    color: white;
}


.contact-item p {
    color: #aaaaaa;

    font-size: 14px;
}


/* FORM CONTAINER */

.contact-form-container {
    background: white;

    padding: 40px;

    border-radius: 6px;
}


.contact-form {
    display: flex;

    flex-direction: column;

    gap: 15px;
}


.contact-form h3 {
    color: #111;

    font-size: 26px;

    margin-bottom: 10px;
}


.contact-form input,
.contact-form textarea {
    width: 100%;

    padding: 15px;

    border: 1px solid #dddddd;

    font-family: Arial, sans-serif;

    font-size: 14px;

    outline: none;
}


.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #d71920;
}


/* SUBMIT BUTTON */

.contact-submit {
    background: #d71920;

    color: white;

    border: none;

    padding: 16px;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s;
}


.contact-submit:hover {
    background: #b51218;
}

.phone-link {
    color: #aaaaaa;
    text-decoration: none;
    transition: 0.3s;
}

.phone-link:hover {
    color: #d71920;
}

/* =========================
   FOOTER
========================= */

.footer {
    background: #050505;
    color: white;
    padding: 70px 40px 0;
}


.footer-content {
    max-width: 1200px;
    margin: auto;

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1.5fr;

    gap: 50px;

    padding-bottom: 50px;
}


/* COMPANY */

.footer-brand h2 {
    font-size: 24px;
    margin-bottom: 20px;
}


.footer-brand p {
    color: #999;
    line-height: 1.7;
    max-width: 300px;
}


/* FOOTER COLUMNS */

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.footer-column h3 {
    font-size: 16px;
    margin-bottom: 8px;
}


.footer-column a,
.footer-column p {
    color: #999;

    text-decoration: none;

    font-size: 14px;

    line-height: 1.5;

    transition: 0.3s;
}


.footer-column a:hover {
    color: #d71920;
}


/* FOOTER BOTTOM */

.footer-bottom {
    border-top: 1px solid #222;

    text-align: center;

    padding: 25px 0;
}


.footer-bottom p {
    color: #777;

    font-size: 13px;
}

.footer-bottom strong {
    font-weight: 600;
}

.footer-bottom strong {
    font-weight: 600;
}

/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .vehicle-grid,
    .rental-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .body-style-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-us-content,
    .sell-trade-content,
    .financing-content,
    .contact-content,
    .vehicle-details-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .location-grid {
        max-width: 620px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================
   LOGO
========================= */

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 75px;
    height: auto;
    display: block;
}


/* =========================
   VEHICLE DETAILS PAGE
========================= */

.vehicle-details-page {
    background: #f5f5f5;
    min-height: calc(100vh - 90px);
    padding: 80px 40px;
}

.vehicle-details-container {
    max-width: 1200px;
    margin: auto;
    background: white;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* MAIN IMAGE */

.vehicle-main-image {
    height: 550px;
    overflow: hidden;
    background: #111;
    border-radius: 5px;
}

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


/* INFORMATION */

.vehicle-main-info {
    padding: 30px 10px;
}

.vehicle-main-info h1 {
    font-size: 44px;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #111;
}

.vehicle-main-price {
    color: #d71920;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 30px;
}


/* SPECIFICATIONS */

.vehicle-specifications {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid #eeeeee;
    border-left: 1px solid #eeeeee;
    margin-bottom: 30px;
}

.vehicle-specifications div {
    padding: 15px;
    border-right: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.vehicle-specifications strong {
    display: block;
    color: #777;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.vehicle-specifications span {
    color: #111;
    font-size: 14px;
    font-weight: 600;
}


/* DESCRIPTION */

.vehicle-description {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}


/* ACTIONS */

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

.secondary-dark-button {
    display: inline-block;
    border: 1px solid #111;
    color: #111;
    text-decoration: none;
    padding: 15px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s;
}

.secondary-dark-button:hover {
    background: #111;
    color: white;
}


/* =========================
   MOBILE MENU
========================= */

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    /* GENERAL */

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .navbar {
        padding: 0 20px;
        position: relative;
    }

    .logo {
        font-size: 17px;
    }

    .logo img {
        width: 65px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-button {
        display: none;
    }


    /* MOBILE NAVIGATION */

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #080808;
        flex-direction: column;
        padding: 25px 20px;
        gap: 10px;
        text-align: center;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 12px 0;
    }


    /* HERO */

    .hero {
        min-height: 600px;
        padding: 60px 20px;
        background-position: 60% center;
    }

    .hero h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .hero-label {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-bottom {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .primary-button,
    .secondary-button {
        text-align: center;
    }


    /* SECTIONS */

    .inventory-section,
    .body-style-section,
    .why-us-section,
    .rentals-section,
    .sell-trade-section,
    .financing-section,
    .reviews-section,
    .contact-section,
    .vehicle-details-page {
        padding: 70px 20px;
    }


    /* HEADINGS */

    .section-heading h2,
    .why-us-text h2,
    .sell-trade-text h2,
    .financing-text h2,
    .contact-info h2,
    .vehicle-main-info h1 {
        font-size: 34px;
    }


    /* QUICK ACTIONS */

    .quick-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .action-card {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
        padding: 20px 15px;
        gap: 10px;
    }

    .action-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .action-card h3 {
        font-size: 14px;
    }

    .action-card p {
        font-size: 11px;
    }


    /* GRIDS */

    .vehicle-grid,
    .rental-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .body-style-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }


    /* BODY STYLE */

    .body-style-card {
        height: 220px;
    }


    /* IMAGES */

    .sell-trade-image,
    .financing-image {
        height: 300px;
    }

    .vehicle-main-image {
        height: 350px;
    }


    /* VEHICLE DETAILS */

    .vehicle-details-container {
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 20px;
    }

    .vehicle-main-info {
        padding: 20px 5px;
    }

    .vehicle-specifications {
        grid-template-columns: 1fr 1fr;
    }

    .vehicle-actions {
        flex-direction: column;
    }

    .vehicle-actions a {
        width: 100%;
        text-align: center;
    }


    /* CONTACT */

    .contact-form-container {
        padding: 25px;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }


    /* FOOTER */

    .footer {
        padding: 60px 20px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

}
/* FOUNDER PROFILE */

.founder-profile {
  margin: 35px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.founder-profile img {
  width: 125px;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.founder-profile h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.3px;
}