/*
Theme Name: Lumo Automotive
Author: Ali Shabaz
Description: Luxury automotive dealership WordPress theme
Version: 1.0
*/

/* Global */
body {
    margin: 0;
    background: #111111;
    color: #F5F0E8;
    font-family: Arial, sans-serif;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

/* Header */
.lumo-header {
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(10px);
    padding: 22px 0;
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 999;
}

.lumo-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #C4622D;
    font-size: 28px;
    font-weight: bold;
}

nav {
    display: flex;
    gap: 22px;
}

nav a {
    color: #F5F0E8;
    transition: 0.3s ease;
}

nav a:hover {
    color: #C4622D;
}

/* Buttons */
.cta-button {
    background: #C4622D;
    color: white;
    padding: 15px 30px;
    display: inline-block;
    border-radius: 6px;
    transition: 0.3s ease;
}

.cta-button:hover {
    background: #dd7640;
    transform: translateY(-2px);
}

.secondary-button {
    border: 1px solid #F5F0E8;
    color: #F5F0E8;
    padding: 15px 30px;
    border-radius: 6px;
    transition: 0.3s ease;
}

.secondary-button:hover {
    background: #F5F0E8;
    color: #111;
}

/* Hero */
.hero {
    position: relative;
    min-height: 85vh;
    background: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?q=80&w=1600') center center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.hero-subtitle {
    color: #C4622D;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 14px;
}

.hero h1 {
    font-size: 72px;
    line-height: 1.05;
    max-width: 900px;
    margin: auto;
    margin-bottom: 25px;
}

.hero-text {
    color: #ddd;
    font-size: 24px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Sections */
.featured-vehicles,
.vehicle-archive,
.sell-page,
.test-drive-page,
.contact-page,
.about-page,
.single-vehicle,
.why-choose-us {
    padding: 90px 0;
}

.featured-vehicles h2,
.why-choose-us h2,
.vehicle-spec-section h2 {
    font-size: 42px;
    margin-bottom: 35px;
}

/* Vehicle Grid */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vehicle-card {
    background: #161616;
    border: 1px solid #222;
    border-radius: 14px;
    overflow: hidden;
    transition: 0.3s ease;
    position: relative;
}

.vehicle-card:hover {
    transform: translateY(-6px);
    border-color: #C4622D;
}

.vehicle-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.vehicle-card-content {
    padding: 24px;
}

.vehicle-card h2,
.vehicle-card h3 {
    margin-top: 0;
    font-size: 28px;
}

.vehicle-price {
    color: #C4622D;
    font-size: 30px;
    font-weight: bold;
    margin: 15px 0;
}

.vehicle-monthly {
    color: #aaa;
    margin-bottom: 18px;
}

.vehicle-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.vehicle-meta span {
    background: #111;
    border: 1px solid #2a2a2a;
    padding: 8px 12px;
    border-radius: 6px;
    color: #ccc;
    font-size: 14px;
}

.vehicle-content {
    color: #999;
    margin-bottom: 25px;
}

/* Sold Badge */
.sold-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #C4622D;
    color: white;
    padding: 8px 14px;
    border-radius: 4px;
    font-weight: bold;
    z-index: 10;
}

/* Single Vehicle */
.single-vehicle h1 {
    font-size: 56px;
    margin: 40px 0 25px;
}

.main-vehicle-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 14px;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 15px;
}

.gallery-thumbnails img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

.gallery-thumbnails img:hover {
    opacity: 0.8;
    transform: scale(1.03);
}

/* Vehicle Specs */
.vehicle-spec-section {
    background: #151515;
    border: 1px solid #2a2a2a;
    padding: 40px;
    border-radius: 16px;
    margin: 60px 0 30px;
}

.vehicle-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.spec-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #111111;
    border: 1px solid #2a2a2a;
    padding: 26px;
    border-radius: 12px;
}

.spec-box.wide {
    grid-column: span 3;
}

.spec-icon {
    font-size: 34px;
}

.spec-box strong {
    display: block;
    color: #C4622D;
    margin-bottom: 8px;
    font-size: 18px;
}

.spec-box span:last-child {
    color: #F5F0E8;
    font-size: 20px;
}

/* Finance */
.finance-box {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    background: #151515;
    border: 1px solid #2a2a2a;
    padding: 45px;
    border-radius: 16px;
    margin: 35px 0 70px;
}

.finance-left h2 {
    font-size: 34px;
    margin-bottom: 12px;
}

.finance-from {
    margin-top: 30px;
    font-size: 22px;
}

.finance-price {
    font-size: 64px;
    line-height: 1;
    color: #C4622D;
    font-weight: 800;
    margin: 10px 0;
}

.finance-price span {
    font-size: 28px;
    color: #F5F0E8;
}

.finance-note {
    color: #aaa;
    margin-top: 15px;
}

.finance-right {
    border-left: 1px solid #333;
    padding-left: 45px;
}

.finance-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.finance-benefits li {
    color: #F5F0E8;
    font-size: 18px;
    margin-bottom: 18px;
}

.finance-benefits li::before {
    content: "✓";
    color: #C4622D;
    margin-right: 12px;
    font-weight: bold;
}

/* Forms */
.vehicle-enquiry-form,
.sell-form-box,
.form-box,
.contact-info,
.trust-card {
    background: #161616;
    border: 1px solid #222;
    padding: 40px;
    border-radius: 14px;
}

.vehicle-enquiry-form input,
.vehicle-enquiry-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: #111;
    border: 1px solid #333;
    color: white;
    border-radius: 6px;
}

.vehicle-enquiry-form input[type="submit"] {
    background: #C4622D;
    border: none;
    cursor: pointer;
}

/* Trust Section */
.why-choose-us {
    background: #0d0d0d;
}

.trust-grid,
.about-grid,
.contact-grid {
    display: grid;
    gap: 24px;
}

.trust-grid {
    grid-template-columns: repeat(4, 1fr);
}

.about-grid {
    grid-template-columns: repeat(3, 1fr);
}

.contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.trust-card {
    transition: 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-6px);
    border-color: #C4622D;
}

.trust-card h3 {
    color: #C4622D;
}

/* Responsive */
@media(max-width: 900px) {

    .hero h1 {
        font-size: 42px;
    }

    .hero-text {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .vehicle-grid,
    .vehicle-specs,
    .trust-grid,
    .about-grid,
    .contact-grid,
    .finance-box {
        grid-template-columns: 1fr;
    }

    .gallery-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }

    .spec-box.wide {
        grid-column: span 1;
    }

    .finance-right {
        border-left: none;
        border-top: 1px solid #333;
        padding-left: 0;
        padding-top: 30px;
    }

    .finance-price {
        font-size: 44px;
    }

    .main-vehicle-image img {
        height: 420px;
    }
}
.stock-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
    margin-bottom: 50px;
}

.stock-subtitle {
    color: #C4622D;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
}

.stock-filters {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.stock-filters input,
.stock-filters select {
    background: #161616;
    border: 1px solid #2a2a2a;
    color: white;
    padding: 14px 16px;
    border-radius: 6px;
    min-width: 180px;
}

.stock-filters input:focus,
.stock-filters select:focus {
    outline: none;
    border-color: #C4622D;
}

@media(max-width: 900px) {
    .stock-header {
        flex-direction: column;
        align-items: start;
    }

    .stock-filters {
        width: 100%;
    }

    .stock-filters input,
    .stock-filters select {
        width: 100%;
    }
}

.stock-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 35px;
    align-items: start;
}

.stock-sidebar {
    background: #161616;
    border: 1px solid #2a2a2a;
    padding: 25px;
    border-radius: 14px;
    position: sticky;
    top: 110px;
}

.stock-sidebar h3 {
    margin-top: 0;
    color: #C4622D;
    margin-bottom: 25px;
}

.stock-sidebar .stock-filters {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.stock-sidebar input,
.stock-sidebar select {
    width: 100%;
    background: #111;
    border: 1px solid #333;
    color: #F5F0E8;
    padding: 14px;
    border-radius: 6px;
    box-sizing: border-box;
}

.stock-sidebar input:focus,
.stock-sidebar select:focus {
    outline: none;
    border-color: #C4622D;
}

.reset-filter {
    color: #aaa;
    text-align: center;
    margin-top: 5px;
}

.reset-filter:hover {
    color: #C4622D;
}

.stock-results .vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
}

@media(max-width: 900px) {
    .stock-layout {
        grid-template-columns: 1fr;
    }

    .stock-sidebar {
        position: static;
    }

    .stock-results .vehicle-grid {
        grid-template-columns: 1fr;
    }
}
.home-search {
    background: #0d0d0d;
    padding: 30px 0;
}

.home-search-box {
    background: #161616;
    border: 1px solid #2a2a2a;
    padding: 24px;
    border-radius: 14px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 14px;
}

.home-search-box input,
.home-search-box select {
    background: #111;
    border: 1px solid #333;
    color: #F5F0E8;
    padding: 15px;
    border-radius: 6px;
}

.home-stats {
    background: #111111;
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.stat-box {
    background: #161616;
    border: 1px solid #222;
    border-radius: 14px;
    padding: 28px;
}

.stat-box strong {
    display: block;
    color: #C4622D;
    font-size: 24px;
    margin-bottom: 8px;
}

.stat-box span {
    color: #aaa;
}

.section-heading {
    margin-bottom: 40px;
}

.section-heading p,
.section-small {
    color: #C4622D;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: bold;
}

.section-heading h2,
.home-sell-car h2,
.home-contact-cta h2 {
    font-size: 44px;
    margin: 10px 0 0;
}

.center-button {
    text-align: center;
    margin-top: 45px;
}

.trust-card span {
    font-size: 34px;
    display: block;
    margin-bottom: 18px;
}

.home-sell-car {
    padding: 90px 0;
    background: #111111;
}

.sell-car-box {
    background: linear-gradient(135deg, #161616, #0d0d0d);
    border: 1px solid #2a2a2a;
    border-radius: 18px;
    padding: 55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.sell-car-box p {
    color: #aaa;
    max-width: 650px;
    line-height: 1.7;
}

.home-reviews {
    padding: 90px 0;
    background: #0d0d0d;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: #161616;
    border: 1px solid #222;
    border-radius: 14px;
    padding: 32px;
}

.stars {
    color: #C4622D;
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.review-card p {
    color: #ccc;
    line-height: 1.7;
}

.home-contact-cta {
    padding: 90px 0;
    background: #111111;
}

.contact-cta-box {
    text-align: center;
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 18px;
    padding: 60px;
}

.contact-cta-box p {
    color: #aaa;
    margin-bottom: 35px;
}

@media(max-width: 900px) {
    .home-search-box,
    .stats-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .sell-car-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-heading h2,
    .home-sell-car h2,
    .home-contact-cta h2 {
        font-size: 34px;
    }
}

/* Footer */
.lumo-footer {
    background: #080808;
    border-top: 1px solid #222;
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 45px;
}

.footer-brand h2 {
    color: #C4622D;
    font-size: 52px;
    margin: 0;
    letter-spacing: 4px;
}

.footer-small {
    color: #F5F0E8;
    letter-spacing: 3px;
    font-size: 12px;
    margin-top: 4px;
}

.footer-brand p,
.footer-column p {
    color: #aaa;
    line-height: 1.7;
}

.footer-column h3 {
    color: #F5F0E8;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-column a {
    display: block;
    color: #aaa;
    margin-bottom: 12px;
    transition: 0.3s ease;
}

.footer-column a:hover {
    color: #C4622D;
    transform: translateX(4px);
}

.footer-socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.footer-socials a {
    border: 1px solid #333;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 0;
}

.footer-socials a:hover {
    border-color: #C4622D;
    transform: none;
}

.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid #222;
    padding: 22px 0;
    text-align: center;
}

.footer-bottom p {
    color: #777;
    margin: 0;
    font-size: 14px;
}

@media(max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .lumo-footer {
        padding-top: 50px;
    }
}
/* Stock Archive Page */
.stock-header {
    margin-bottom: 45px;
}

.stock-subtitle,
.vehicle-card-subtitle {
    color: #C4622D;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: bold;
}

.stock-header h1 {
    font-size: 56px;
    margin: 10px 0 15px;
}

.stock-intro {
    color: #aaa;
    max-width: 700px;
    line-height: 1.7;
}

.stock-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 35px;
    align-items: start;
}

.stock-sidebar {
    background: #161616;
    border: 1px solid #2a2a2a;
    padding: 28px;
    border-radius: 16px;
    position: sticky;
    top: 115px;
}

.stock-sidebar h3 {
    margin-top: 0;
    color: #F5F0E8;
    font-size: 24px;
    margin-bottom: 24px;
}

.stock-sidebar .stock-filters {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.stock-sidebar input,
.stock-sidebar select {
    width: 100%;
    background: #111;
    border: 1px solid #333;
    color: #F5F0E8;
    padding: 14px;
    border-radius: 6px;
    box-sizing: border-box;
}

.stock-sidebar input:focus,
.stock-sidebar select:focus {
    outline: none;
    border-color: #C4622D;
}

.reset-filter {
    color: #aaa;
    text-align: center;
    margin-top: 8px;
}

.reset-filter:hover {
    color: #C4622D;
}

.stock-results-top {
    background: #161616;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 18px 22px;
    margin-bottom: 25px;
}

.stock-results-top p {
    margin: 0;
    color: #aaa;
}

.stock-results .vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
}

.vehicle-card-subtitle {
    margin: 0 0 10px;
}

.vehicle-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.secondary-mini-button {
    border: 1px solid #333;
    color: #F5F0E8;
    padding: 14px 20px;
    border-radius: 6px;
    transition: 0.3s ease;
}

.secondary-mini-button:hover {
    border-color: #C4622D;
    color: #C4622D;
}

.no-vehicles {
    background: #161616;
    border: 1px solid #222;
    border-radius: 14px;
    padding: 45px;
    grid-column: 1 / -1;
}

.no-vehicles p {
    color: #aaa;
    margin-bottom: 25px;
}

@media(max-width: 900px) {
    .stock-header h1 {
        font-size: 40px;
    }

    .stock-layout {
        grid-template-columns: 1fr;
    }

    .stock-sidebar {
        position: static;
    }

    .stock-results .vehicle-grid {
        grid-template-columns: 1fr;
    }
}
/* Premium Header */
.lumo-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #222;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: #C4622D;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    font-weight: bold;
}

.logo-text h1 {
    margin: 0;
    color: #F5F0E8;
    font-size: 24px;
    line-height: 1;
}

.logo-text span {
    color: #C4622D;
    letter-spacing: 2px;
    font-size: 11px;
}

.main-nav {
    display: flex;
    gap: 28px;
}

.main-nav a {
    color: #F5F0E8;
    position: relative;
    transition: 0.3s ease;
}

.main-nav a:hover {
    color: #C4622D;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #C4622D;
    transition: 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-phone {
    color: #F5F0E8;
    font-weight: bold;
}

.header-button {
    padding: 12px 22px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: #111;
    border-top: 1px solid #222;
}

.mobile-menu a {
    color: white;
    padding: 18px 24px;
    border-bottom: 1px solid #222;
}

.mobile-menu.active {
    display: flex;
}

@media(max-width: 1100px) {

    .main-nav,
    .header-right {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

.default-page {
    padding: 100px 0;
}

.default-page h1 {
    font-size: 52px;
    margin-bottom: 25px;
}

.default-page-content {
    color: #ccc;
    line-height: 1.8;
    font-size: 18px;
}

/* Luxury About Page */
.about-hero {
    position: relative;
    min-height: 70vh;
    background: url('https://images.unsplash.com/photo-1503736334956-4c8f8e92946d?q=80&w=1600') center center/cover no-repeat;
    display: flex;
    align-items: center;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.72);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.about-hero-content h1 {
    font-size: 64px;
    line-height: 1.05;
    margin: 15px 0 25px;
}

.about-hero-content p {
    color: #ddd;
    font-size: 22px;
    line-height: 1.6;
}

.about-story,
.about-values,
.about-showroom {
    padding: 90px 0;
}

.about-story-grid,
.about-showroom-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.about-story h2,
.about-showroom h2 {
    font-size: 46px;
    margin: 10px 0 25px;
}

.about-story p,
.about-showroom p {
    color: #aaa;
    line-height: 1.8;
    font-size: 17px;
}

.about-image-card {
    background: #161616;
    border: 1px solid #2a2a2a;
    padding: 12px;
    border-radius: 18px;
}

.about-image-card img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 12px;
}

.about-values {
    background: #0d0d0d;
}

.about-contact-details {
    margin: 30px 0;
    background: #161616;
    border: 1px solid #222;
    padding: 25px;
    border-radius: 14px;
}

.about-contact-details p {
    margin: 0 0 12px;
}

@media(max-width: 900px) {
    .about-hero-content h1 {
        font-size: 42px;
    }

    .about-story-grid,
    .about-showroom-box {
        grid-template-columns: 1fr;
    }

    .about-image-card img {
        height: 360px;
    }
}
/* Luxury Contact Page */
.contact-hero {
    position: relative;
    min-height: 65vh;
    background: url('https://hewnspace.com/wp-content/uploads/2022/03/The-Urban-Building.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.72);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.contact-hero-content h1 {
    font-size: 64px;
    line-height: 1.05;
    margin: 15px 0 25px;
}

.contact-hero-content p {
    color: #ddd;
    font-size: 22px;
    line-height: 1.6;
}

.contact-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.contact-feature-card {
    background: #161616;
    border: 1px solid #222;
    padding: 32px;
    border-radius: 16px;
    transition: 0.3s ease;
}

.contact-feature-card:hover {
    transform: translateY(-6px);
    border-color: #C4622D;
}

.contact-feature-card span {
    font-size: 36px;
    display: block;
    margin-bottom: 18px;
}

.contact-feature-card h3 {
    color: #C4622D;
    margin-bottom: 12px;
}

.contact-feature-card p {
    color: #aaa;
    line-height: 1.6;
}

.luxury-contact-grid {
    align-items: start;
}

.contact-info h2,
.form-box h2,
.location-box h2 {
    font-size: 42px;
    margin: 10px 0 20px;
}

.contact-info p,
.location-box p {
    color: #aaa;
    line-height: 1.8;
}

.contact-image-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 30px;
}

.contact-image-stack img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

.contact-location-section {
    padding: 90px 0;
    background: #0d0d0d;
}

.location-box {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.location-image {
    background: #161616;
    border: 1px solid #2a2a2a;
    padding: 12px;
    border-radius: 18px;
}

.location-image img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 12px;
}

@media(max-width: 900px) {
    .contact-hero-content h1 {
        font-size: 42px;
    }

    .contact-feature-grid,
    .location-box,
    .contact-image-stack {
        grid-template-columns: 1fr;
    }

    .location-image img {
        height: 320px;
    }
}
/* WOW Sell Your Car Page */
.sell-hero {
    position: relative;
    min-height: 75vh;
    background: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=1600') center center/cover no-repeat;
    display: flex;
    align-items: center;
}

.sell-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.88), rgba(0,0,0,0.45));
}

.sell-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.sell-hero-content h1 {
    font-size: 68px;
    line-height: 1.05;
    margin: 15px 0 25px;
}

.sell-hero-content p {
    color: #ddd;
    font-size: 22px;
    line-height: 1.6;
}

.sell-benefits {
    padding: 70px 0;
    background: #0d0d0d;
}

.sell-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.sell-benefit-card {
    background: #161616;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 34px;
    transition: 0.3s ease;
}

.sell-benefit-card:hover {
    transform: translateY(-6px);
    border-color: #C4622D;
}

.sell-benefit-card span {
    font-size: 38px;
    display: block;
    margin-bottom: 18px;
}

.sell-benefit-card h3 {
    color: #C4622D;
    margin-bottom: 12px;
}

.sell-benefit-card p {
    color: #aaa;
    line-height: 1.7;
}

.sell-process {
    padding: 95px 0;
    background: #111111;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.process-card {
    background: linear-gradient(180deg, #181818, #111);
    border: 1px solid #2a2a2a;
    border-radius: 18px;
    padding: 42px;
}

.process-card span {
    color: #C4622D;
    font-size: 48px;
    font-weight: bold;
}

.process-card h3 {
    font-size: 26px;
    margin: 20px 0 12px;
}

.process-card p {
    color: #aaa;
    line-height: 1.7;
}

.sell-highlight {
    padding: 95px 0;
    background: #0d0d0d;
}

.sell-highlight-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.sell-highlight h2,
.sell-form-copy h2 {
    font-size: 46px;
    line-height: 1.1;
    margin: 10px 0 25px;
}

.sell-highlight p,
.sell-form-copy p {
    color: #aaa;
    line-height: 1.8;
}

.sell-checklist {
    list-style: none;
    padding: 0;
    margin-top: 28px;
}

.sell-checklist li {
    color: #F5F0E8;
    margin-bottom: 15px;
    font-size: 18px;
}

.sell-checklist li::before {
    content: "✓";
    color: #C4622D;
    margin-right: 12px;
    font-weight: bold;
}

.sell-highlight-image {
    background: #161616;
    border: 1px solid #2a2a2a;
    padding: 12px;
    border-radius: 18px;
}

.sell-highlight-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 12px;
}

.sell-form-section {
    padding: 95px 0;
    background: #111111;
}

.sell-form-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 55px;
    align-items: start;
}

.sell-contact-mini {
    margin-top: 30px;
    background: #161616;
    border: 1px solid #222;
    border-radius: 14px;
    padding: 25px;
}

.sell-contact-mini p {
    margin: 0 0 10px;
}

@media(max-width: 900px) {
    .sell-hero-content h1 {
        font-size: 42px;
    }

    .sell-benefit-grid,
    .process-grid,
    .sell-highlight-box,
    .sell-form-layout {
        grid-template-columns: 1fr;
    }

    .sell-highlight-image img {
        height: 360px;
    }
}
/* Luxury Test Drive Page */
.test-drive-hero {
    position: relative;
    min-height: 65vh;
    background: url('https://images.unsplash.com/photo-1511919884226-fd3cad34687c?q=80&w=1600') center center/cover no-repeat;
    display: flex;
    align-items: center;
}

.test-drive-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.72);
}

.test-drive-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.test-drive-hero-content h1 {
    font-size: 64px;
    line-height: 1.05;
    margin: 15px 0 25px;
}

.test-drive-hero-content p {
    color: #ddd;
    font-size: 22px;
    line-height: 1.6;
}

.test-drive-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 55px;
    align-items: start;
}

.test-drive-info h2,
.test-drive-form-box h2 {
    font-size: 42px;
    margin: 10px 0 30px;
}

.booking-step {
    display: flex;
    gap: 20px;
    background: #161616;
    border: 1px solid #222;
    padding: 28px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.booking-step span {
    color: #C4622D;
    font-size: 34px;
    font-weight: bold;
}

.booking-step h3 {
    margin: 0 0 10px;
}

.booking-step p {
    color: #aaa;
    line-height: 1.6;
    margin: 0;
}

.test-drive-form-box {
    background: #161616;
    border: 1px solid #2a2a2a;
    padding: 45px;
    border-radius: 18px;
}

.test-drive-form label {
    display: block;
    margin-bottom: 8px;
    color: #F5F0E8;
    font-weight: bold;
}

.test-drive-form input,
.test-drive-form select,
.test-drive-form textarea {
    width: 100%;
    background: #111;
    border: 1px solid #333;
    color: #F5F0E8;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.test-drive-form input:focus,
.test-drive-form select:focus,
.test-drive-form textarea:focus {
    outline: none;
    border-color: #C4622D;
}

.booking-success {
    background: rgba(196, 98, 45, 0.15);
    border: 1px solid #C4622D;
    color: #F5F0E8;
    padding: 18px;
    border-radius: 10px;
    margin-bottom: 25px;
}

@media(max-width: 900px) {
    .test-drive-hero-content h1 {
        font-size: 42px;
    }

    .test-drive-layout {
        grid-template-columns: 1fr;
    }
}

/* WOW Single Vehicle Page */
.vehicle-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.back-to-stock {
    color: #aaa;
    transition: 0.3s ease;
}

.back-to-stock:hover {
    color: #C4622D;
}

.single-sold-badge,
.available-badge {
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: bold;
    letter-spacing: 1px;
}

.single-sold-badge {
    background: #C4622D;
    color: white;
}

.available-badge {
    background: rgba(55, 160, 90, 0.18);
    color: #7ee09b;
    border: 1px solid rgba(126, 224, 155, 0.35);
}

.single-vehicle-header {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: end;
    margin-bottom: 35px;
}

.single-vehicle-header h1 {
    font-size: 58px;
    line-height: 1.05;
    margin: 12px 0 20px;
}

.single-vehicle-key-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.single-vehicle-key-meta span {
    background: #161616;
    border: 1px solid #2a2a2a;
    padding: 10px 14px;
    border-radius: 8px;
    color: #ddd;
}

.single-price-box {
    background: linear-gradient(180deg, #1b1b1b, #111);
    border: 1px solid #2a2a2a;
    padding: 28px;
    border-radius: 16px;
}

.single-price-box p {
    margin: 0 0 10px;
    color: #aaa;
}

.single-price-box strong {
    display: block;
    color: #C4622D;
    font-size: 42px;
    margin-bottom: 10px;
}

.single-price-box span {
    color: #ccc;
}

.vehicle-action-strip {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    background: #151515;
    border: 1px solid #2a2a2a;
    padding: 22px;
    border-radius: 16px;
    margin: 30px 0 60px;
}

.vehicle-description-section {
    background: #151515;
    border: 1px solid #2a2a2a;
    padding: 42px;
    border-radius: 16px;
    margin: 60px 0;
}

.vehicle-description-section .single-vehicle-content {
    color: #ccc;
    line-height: 1.9;
    font-size: 18px;
}

.vehicle-confidence-section {
    margin: 60px 0;
}

.wow-finance {
    background:
        radial-gradient(circle at top left, rgba(196,98,45,0.18), transparent 35%),
        #151515;
}

@media(max-width: 900px) {
    .single-vehicle-header {
        grid-template-columns: 1fr;
    }

    .single-vehicle-header h1 {
        font-size: 40px;
    }

    .single-price-box strong {
        font-size: 34px;
    }

    .vehicle-action-strip a {
        width: 100%;
        text-align: center;
    }
}
.sell-car-form h3 {
    color: #C4622D;
    font-size: 26px;
    margin: 35px 0 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.sell-car-form label {
    display: block;
    margin-bottom: 8px;
    color: #F5F0E8;
    font-weight: bold;
}

.sell-car-form input,
.sell-car-form select,
.sell-car-form textarea {
    width: 100%;
    background: #111;
    border: 1px solid #333;
    color: #F5F0E8;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.sell-car-form input:focus,
.sell-car-form select:focus,
.sell-car-form textarea:focus {
    outline: none;
    border-color: #C4622D;
}

@media(max-width: 900px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* Sell Your Car Steps + Payment Options */
.sell-steps-section,
.payment-options-section {
    padding: 90px 0;
    background: #111111;
}

.payment-options-section {
    background: #0d0d0d;
}

.sell-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.sell-step-card {
    background: #161616;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 34px;
    transition: 0.3s ease;
}

.sell-step-card:hover {
    transform: translateY(-6px);
    border-color: #C4622D;
}

.sell-step-card span {
    color: #C4622D;
    font-size: 42px;
    font-weight: bold;
}

.sell-step-card h3 {
    font-size: 22px;
    margin: 20px 0 12px;
}

.sell-step-card p {
    color: #aaa;
    line-height: 1.7;
}

.payment-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.payment-option-card {
    background: #161616;
    border: 1px solid #222;
    border-radius: 18px;
    padding: 38px;
    transition: 0.3s ease;
}

.payment-option-card:hover {
    transform: translateY(-6px);
    border-color: #C4622D;
}

.featured-payment {
    border-color: #C4622D;
    background: radial-gradient(circle at top left, rgba(196,98,45,0.18), transparent 45%), #161616;
}

.payment-icon {
    font-size: 42px;
    display: block;
    margin-bottom: 18px;
}

.payment-option-card h3 {
    font-size: 26px;
    color: #F5F0E8;
    margin-bottom: 12px;
}

.payment-price {
    color: #C4622D !important;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 16px;
}

.payment-option-card p {
    color: #aaa;
    line-height: 1.7;
}

@media(max-width: 900px) {
    .sell-steps-grid,
    .payment-options-grid {
        grid-template-columns: 1fr;
    }
}
/* Premium Finance Calculator */
.finance-calculator-section {
    background: #0d0d0d;
    border: 1px solid #222;
    border-radius: 18px;
    padding: 45px;
    margin: 60px 0;
}

.finance-calculator-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: stretch;
}

.finance-calc-left,
.finance-calc-result {
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 35px;
}

.finance-calc-left h3 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 20px;
}

.finance-calc-price {
    color: #aaa;
    margin-bottom: 30px;
}

.finance-calc-price strong {
    color: #C4622D;
    font-size: 24px;
}

.finance-calc-left label {
    display: block;
    color: #F5F0E8;
    font-weight: bold;
    margin-bottom: 8px;
}

.finance-calc-left input,
.finance-calc-left select {
    width: 100%;
    background: #111;
    border: 1px solid #333;
    color: #F5F0E8;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.finance-calc-left input:focus,
.finance-calc-left select:focus {
    outline: none;
    border-color: #C4622D;
}

.finance-calc-result {
    background:
        radial-gradient(circle at top left, rgba(196,98,45,0.2), transparent 35%),
        #161616;
    text-align: center;
}

.result-label {
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}

.monthly-result {
    font-size: 72px;
    color: #C4622D;
    font-weight: 900;
    margin: 25px 0;
}

.finance-summary {
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 22px;
    text-align: left;
    margin: 30px 0;
}

.finance-summary p {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid #222;
    padding-bottom: 12px;
    margin-bottom: 12px;
    color: #aaa;
}

.finance-summary p:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.finance-summary span {
    color: #F5F0E8;
    font-weight: bold;
}

.finance-disclaimer {
    color: #888;
    font-size: 13px;
    line-height: 1.6;
}

.finance-calc-btn {
    margin-top: 20px;
}

@media(max-width: 900px) {
    .finance-calculator-box {
        grid-template-columns: 1fr;
    }

    .monthly-result {
        font-size: 46px;
    }

    .finance-calculator-section {
        padding: 25px;
    }
}
/* Saved Vehicles / Favourites */
.favourites-page {
    padding: 100px 0;
}

.save-vehicle-btn,
.remove-favourite-btn {
    background: transparent;
    border: 1px solid #C4622D;
    color: #C4622D;
    padding: 13px 22px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 15px;
    transition: 0.3s ease;
}

.save-vehicle-btn:hover,
.remove-favourite-btn:hover {
    background: #C4622D;
    color: white;
}
/* Vehicle Card Buttons Fix */
.vehicle-card-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.vehicle-card-buttons .cta-button,
.vehicle-card-buttons .secondary-button,
.vehicle-card-buttons .save-vehicle-btn {
    flex: 1;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
}

.vehicle-card-buttons .save-vehicle-btn {
    margin-top: 0;
    min-width: 120px;
}

@media(max-width: 768px) {
    .vehicle-card-buttons {
        flex-direction: column;
    }

    .vehicle-card-buttons .save-vehicle-btn {
        width: 100%;
    }
}
/* Single Vehicle Action Buttons */
.vehicle-action-strip {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: stretch;
}

.vehicle-action-strip .cta-button,
.vehicle-action-strip .secondary-button,
.vehicle-action-strip .save-vehicle-btn {
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    box-sizing: border-box;
    margin: 0;
}

.vehicle-action-strip .save-vehicle-btn {
    min-width: 180px;
    white-space: nowrap;
}

@media(max-width: 900px) {

    .vehicle-action-strip {
        flex-direction: column;
    }

    .vehicle-action-strip .cta-button,
    .vehicle-action-strip .secondary-button,
    .vehicle-action-strip .save-vehicle-btn {
        width: 100%;
    }

}

/* Compare Vehicles */
.compare-page {
    padding: 100px 0;
}

.compare-vehicle-btn {
    background: transparent;
    border: 1px solid #C4622D;
    color: #C4622D;
    padding: 13px 22px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
}

.compare-vehicle-btn:hover {
    background: #C4622D;
    color: white;
}

.compare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.compare-card {
    background: #161616;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 24px;
}

.compare-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.compare-card h2 {
    font-size: 24px;
}

.compare-spec {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid #222;
    padding: 14px 0;
}

.compare-spec strong {
    color: #aaa;
}

.compare-spec span {
    color: #F5F0E8;
    font-weight: bold;
}

.remove-compare-btn {
    width: 100%;
    margin-top: 18px;
    background: transparent;
    border: 1px solid #333;
    color: #aaa;
    padding: 13px 22px;
    border-radius: 6px;
    cursor: pointer;
}

.remove-compare-btn:hover {
    border-color: #C4622D;
    color: #C4622D;
}

@media(max-width: 900px) {
    .compare-grid {
        grid-template-columns: 1fr;
    }
}
.vehicle-card-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 22px;
}

.vehicle-card-buttons .cta-button,
.vehicle-card-buttons .secondary-button,
.vehicle-card-buttons .save-vehicle-btn,
.vehicle-card-buttons .compare-vehicle-btn {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.2;
}

.vehicle-card-buttons .save-vehicle-btn,
.vehicle-card-buttons .compare-vehicle-btn {
    background: transparent;
    border: 1px solid #C4622D;
    color: #C4622D;
}

.vehicle-card-buttons .save-vehicle-btn:hover,
.vehicle-card-buttons .compare-vehicle-btn:hover {
    background: #C4622D;
    color: white;
}