:root{
    --primary-blue: #006994;
    --primary-dark: #004B6B;
    --light-blue: #63C5DA;
    --accent-red: #D81B60;

    --white: #ffffff;
    --dark: #1a1a1a;
    --grey: #777777;
    --grey-light: #f5f5f5;

    --shadow-small: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-medium: 0 5px 20px rgba(0,0,0,0.12);

    --container-width: 1200px;
    --radius: 8px;
}

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

html {
    scroll-behavior: smooth;

}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--grey-light);
    color: var(--dark);
    line-height: 1.6;
}
h1, h2 ,h3 {
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size:clamp(2rem,5vw,3rem);
}

h2{
    font-size: 2rem;
}

h3{
    font-size: 1.3rem;
}

main h1 {
    text-align:center;
    margin:50px 0 40px;
}

.container{
    width: min(90%, var(--container-width));
    margin: auto;
}

header {
    background:var(--white);
    border-bottom:1px solid #ddd;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}


.page-header {
    background: var(--primary-blue);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
}

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

.page-header p {

    opacity: .9;

    max-width: 600px;

    margin: auto;

}

header .container {
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:120px;
}

.logo img {
    height:105px;
    width:auto;
    transition:.25s;
}


.logo img:hover {
    transform:scale(1.03);
}

nav ul {
    display:flex;
    list-style:none;
    gap:35px;
    align-items:center;
}

nav a {
    color:var(--dark);
    text-decoration:none;
    font-weight:600;
    position:relative;
    padding:10px 0;
    transition:.25s;
}

nav a:hover {
    color: var(--primary-blue);
}

nav a::after {

    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:3px;
    background:var(--primary-blue);
    transition:.25s;
}


nav a:hover::after {
    width:100%;
}

.section{
    padding: 80px 0;
}

.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 55%, #0088b5 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    position: relative;
}

/* Daytime yard photo – homepage */
.hero.hero-photo {
    background-image:
        linear-gradient(rgba(0, 30, 50, 0.72), rgba(0, 50, 80, 0.65)),
        url("/siteimages/dealership-day.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Night neon sign – about page */
.hero.hero-photo-night {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 20, 40, 0.7)),
        url("/siteimages/dealership-night.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-motto {
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.95;
    margin-bottom: 12px;
    font-weight: 600;
}

.hero-overlay {
    padding:150px 20px;
}

.hero h1 {
    font-size:clamp(2.2rem,5vw,4rem);
    max-width:900px;
    margin:0 auto 20px;
    font-weight:800;
}

.hero p {
    font-size:1.25rem;
    max-width:700px;
    margin:0 auto 35px;
    opacity:.95;
}

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

.btn{
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 14px 30px;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: bold;
    transition:
        background .25s,
        transform .25s,
        box-shadow .25s;

}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,.15);

}

.btn-accent {
    background: var(--accent-red);
}



.btn-accent:hover {
      background:#b0144c;
    opacity: .85;
}

.hero h1,
.hero p,
.hero-buttons {

    animation:heroFade .8s ease;

}


@keyframes heroFade {

    from {
        opacity:0;
        transform:translateY(25px);
    }

    to {
        opacity:1;
        transform:translateY(0);
    }
}

.stat-card {
    background:white;
    padding:30px;
    border-radius:var(--radius);
    box-shadow:var(--shadow-small);
}

footer {

    background:#111;

    color:white;

    padding:60px 0 20px;

    margin-top:80px;

}


.footer-content {

    display:grid;

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

    gap:40px;

}


.footer-content h3,
.footer-content h4 {

    margin-bottom:15px;

}


.footer-content p {

    color:#bbb;

}


.footer-content a {
    display:block;
    color:#bbb;
    text-decoration:none;
    margin-bottom:8px;
}


.footer-content a:hover {
    color:white;
}


.footer-bottom {
    border-top:1px solid #333;
    margin-top:40px;
    padding-top:20px;
    text-align:center;
}

#featuredVehicles {
    margin-top: 30px;
}

.section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.card{
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-small);
    overflow: hidden;
}

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

.inventory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 20px;
    padding: 10px;
}

.vehicle-card {
    position:relative;
    background:var(--white);
    border-radius:var(--radius);
    overflow:hidden;
    box-shadow:var(--shadow-small);
    display:flex;
    flex-direction:column;
    height:100%;
    animation: fadeUp .4s ease;
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }

}


.vehicle-card:hover {
    transform:translateY(-8px);
    box-shadow:
        0 10px 30px rgba(0,0,0,.15);
}

.vehicle-image {
    height:240px;
    overflow:hidden;
    background:#eee;
}


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

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


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

.price {
    font-size:1.6rem;
    font-weight:700;
    color:var(--primary-blue);
    margin:10px 0;
}

.vehicle-content {
    display:flex;
    flex-direction:column;
    flex-grow:1;
    padding:24px;
}


.vehicle-content h3 {
    margin-bottom:12px;
    min-height:50px;
}

.vehicle-content .btn {
    width:100%;
    margin-top:auto;
    text-align:center;
}


.vehicle-info {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    margin:20px 0;
}


.vehicle-info span {
    background:var(--grey-light);
    padding:8px;
    border-radius:5px;
    text-align:center;
    font-size:.85rem;
}
#searchInput {
    grid-column:1 / -1;
    font-size:1.05rem;
    margin-bottom: 25px;
}


.filters {
    display:grid;
    grid-template-columns:
        repeat(auto-fit, minmax(220px, 1fr));
    gap:20px;
    background:var(--white);
    padding:25px;
    border-radius:var(--radius);
    box-shadow:var(--shadow-small);
    margin-bottom:40px;
}

.filter-group {
    display:flex;
    flex-direction:column;
    gap:8px;
}

.filter-group label {
    font-size:.9rem;
    font-weight:600;
    color:var(--dark);
}

.filters input::placeholder {
    color:#999;
}

.filters select {
    cursor:pointer;
}

.filters input,
.filters select {
    width:100%;
    padding:14px 16px;
    border:1px solid #dcdcdc;
    border-radius:var(--radius);
    background:white;
    font-size:1rem;
    transition:.25s;
}

.filters input:focus,
.filters select:focus {
    outline:none;
    border-color:var(--primary-blue);
    box-shadow:
        0 0 0 3px rgba(0,105,148,.15);
}

.loading {
    text-align: center;
    font-size: 1.2rem;
    padding: 80px 20px;
    color: var(--grey);
}

.vehicle-details{
    max-width: 1000px;
    margin: 0;
    padding: 20px;
}

.vehicle-details h1 {
    margin-bottom: 10px;
}

.stock-number {
    color:var(--grey);
    font-size:.85rem;
    margin-bottom:15px;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.vehicle-details p {
    margin: 8px 0;
}

.vehicle-price {
    font-size: 2rem;
    font-weight: bold;
    color: green;
}

.stock-number {
    color:var(--grey);
    font-size:.85rem;
    margin-bottom:10px;
}

.featured-badge {
    position:absolute;
    top:15px;
    left:15px;
    background:var(--accent-red);
    color:white;
    padding:7px 14px;
    border-radius:20px;
    font-size:.75rem;
    font-weight:bold;
    z-index:2;
    text-transform:uppercase;
}

.main-image {
    width:100%;
    max-height:600px;
    object-fit:cover;
    border-radius:var(--radius);
    cursor: zoom-in;
    transition: .3s;
}

#thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    overflow: auto;
}

.thumbnail{
    width: 100px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: .25s;
    border-radius: 6px;

}

.thumbnail:hover {
    border-color: var(--primary-blue);
    transform: scale(1.05);
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(0,105,148,.3);
    outline-offset: 2px;
}

#pagination {
    display: flex;;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}

#pagination button {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 12px 22px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: .25s;
}

#pagination button:hover:not(:disabled) {
    background: var(--primary-dark);
}

#pagination button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

#status {
    text-align: center;
    font-size: 1.2rem;
    margin: 20px;
}

#featuredVehicles {
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:30px;
}

.benefits {
    display:grid;
    grid-template-columns: repeat(3,1fr);
    gap:30px;
    margin-top:40px;
}


.benefit-card {
    padding:30px;
    text-align:center;
}


.section-button {
    text-align:center;
    margin-top:40px;
}

.stats {
    background:var(--white);
}


.stats-grid {
    display:grid;
    grid-template-columns:
    repeat(3,1fr);
    text-align:center;
    gap:30px;
}


.stats h2 {
    color:var(--primary-blue);
    font-size:2.5rem;
}


.stats p {
    color:var(--grey);
}

.vehicle-page {
    display:grid;
    grid-template-columns:
    2fr 1fr;
    gap:40px;
    max-width:1200px;
    margin:60px auto;
    padding:20px;
}

.vehicle-summary {
    background:var(--white);
    padding:30px;
    border-radius:var(--radius);
    box-shadow:var(--shadow-small);
    margin-bottom:15px;
}

.vehicle-price{
    margin:20px 0;
}

.vehicle-description {
    max-width:1000px;
    margin:40px auto;
    background:var(--white);
    padding:30px;
    border-radius:var(--radius);
    margin-bottom:20px;
}

.vehicle-specifications {
    max-width:1000px;
    margin:40px auto;
    padding:30px;
    background:var(--white);
    border-radius:var(--radius);
     margin-bottom:20px;
}


.spec-grid {
    display:grid;
    grid-template-columns:
    repeat(2,1fr);
    gap:20px;
    margin-top:20px;
}


.spec-grid div {
    padding:15px;
    background:var(--grey-light);
    border-radius:var(--radius);
}

.enquiry-section {
    max-width:1000px;
    margin:40px auto;
    padding:30px;
    background:var(--white);
    border-radius:var(--radius);
    box-shadow:var(--shadow-small);
}

.enquiry-form {
    display:flex;
    flex-direction:column;
    gap:15px;
    margin-top:20px;
}


.enquiry-form input,
.enquiry-form textarea {
    padding:12px;
    border:1px solid #ddd;
    border-radius:var(--radius);
    font-size:1rem;
}


.enquiry-form textarea {
    min-height:150px;
    resize:vertical;
}

.back-link{
    display:inline-block;
    margin-bottom:30px;
    color:var(--primary-blue);
    text-decoration:none;
    font-weight:bold;
}

.back-link:hover{
    text-decoration:underline;
}



.about-intro {
    max-width:900px;
    margin:auto;
    text-align:center;
}


.about-intro p {
    margin-top:20px;
    color:var(--grey);
    font-size:1.1rem;
}


.about-values {
    display:grid;
    grid-template-columns:
    repeat(3,1fr);
    gap:30px;
    margin-top:40px;
}


.value-card {
    background:var(--white);
    padding:35px 25px;
    text-align:center;
    border-radius:var(--radius);
    box-shadow:var(--shadow-small);
    transition:.3s;
}


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


.value-card h3 {
    color:var(--primary-blue);
    margin-bottom:15px;
}


.value-card p {
    color:var(--grey);
}


.about-image {
    margin-top:40px;
    border-radius:var(--radius);
    overflow:hidden;
}


.about-image img {
    width:100%;
    height:400px;
    object-fit:cover;
}

@media (max-width: 500px){
    .filters {
        flex-direction: column;
    }

    .filters input,
    .filters select {
        width: 100%;
    }

    button,
    .vehicle-card a {
        min-height: 44px;
        padding: 12px 18px;
    }
    .stats-grid {
        grid-template-columns:1fr;
    }

}

@media (max-width: 600px){
    header h1 {
        font-size: 1.8rem;
    }
    .vehicle-info {

        grid-template-columns:1fr;

    }
    .inventory-grid {
        grid-template-columns:1fr;
        padding:0;
    }
     .vehicle-image {
        height:200px;
    }


    .vehicle-content {
        padding:15px;
    }


    .vehicle-content h3 {
        font-size:1.15rem;
    }

     .filters {
        padding:15px;
        gap:15px;
    }


    .filters input,
    .filters select {
        min-height:48px;
    }

    
}

@media (max-width:700px){
    .filters{
        grid-template-columns:1fr;
    }
     .footer-content {
        grid-template-columns:1fr;
        text-align:center;
    }

    header .container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        padding: 12px 0;
        min-height: 70px;
    }

    .logo img {
        height:78px;
    }

    /* nav is handled by hamburger styles */

    .hero-overlay {
        padding:90px 20px;
    }


    .hero p {
        font-size:1rem;
    }


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


    .hero-buttons .btn {
        width:100%;
        max-width:320px;
    }

     .enquiry-section {
        margin:20px 10px;
        padding:20px;
    }
}

@media(max-width:800px){
    .benefits {
        grid-template-columns:1fr;
    }
    .hero h1 {
        font-size:2rem;
    }
    .stats-grid {
        grid-template-columns:
        repeat(2,1fr);
    }
    
    .spec-grid {
    grid-template-columns:1fr;
    }
      .spec-grid div {
        padding:12px;
    }
     .vehicle-page {
grid-template-columns:1fr;
        margin:20px auto;
        padding:10px;
    }


    .vehicle-summary {
        padding:20px;
    }


    .vehicle-summary h1 {
        font-size:2rem;
    }
}




.finance-banner {
    background: var(--primary-blue);
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-top: 40px;
}

.finance-banner h2 {
    margin-bottom: 25px;
    color: white;
}

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

.finance-banner .btn:hover {
    background: var(--grey-light);
    color: var(--primary-dark);
}


.thumbnail.active {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 2px rgba(0,105,148,.3);
}


/* —— Filter panel polish —— */
.filters {
    border: 1px solid #e8e8e8;
}

.filters input,
.filters select {
    appearance: none;
    -webkit-appearance: none;
    background-color: var(--grey-light);
    border: 1px solid #e0e0e0;
    font-family: inherit;
    color: var(--dark);
}

.filters select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%278%27 viewBox=%270 0 12 8%27%3E%3Cpath fill=%27%23006994%27 d=%27M1 1l5 5 5-5%27/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.filters input:hover,
.filters select:hover {
    border-color: var(--light-blue);
}

.filters input:focus,
.filters select:focus {
    background-color: white;
}

#searchInput {
    background: white;
    border: 2px solid #e0e0e0;
    font-weight: 500;
}

#searchInput:focus {
    border-color: var(--primary-blue);
}

.filter-actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    align-items: center;
    padding-top: 8px;
    border-top: 1px solid #eee;
    margin-top: 4px;
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: bold;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background .25s, color .25s, transform .25s, box-shadow .25s;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,105,148,.25);
}

.btn-outline:active {
    transform: translateY(0);
}

/* Pagination buttons */
#pagination button {
    min-width: 110px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

#pagination button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,105,148,.25);
}

#pageNumber {
    font-weight: 600;
    color: var(--dark);
    min-width: 60px;
    text-align: center;
}


/* —— Active nav link —— */
nav a.active {
    color: var(--primary-blue);
}
nav a.active::after {
    width: 100%;
}

/* —— Mobile hamburger —— */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}
.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

body.nav-locked {
    overflow: hidden;
}

/* —— Back to top —— */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--primary-blue);
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .25s, transform .25s, background .25s;
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
    z-index: 999;
}
.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--primary-dark);
}

/* —— Empty inventory state —— */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-small);
}
.empty-state p {
    font-size: 1.15rem;
    color: var(--grey);
    margin-bottom: 20px;
}

/* —— Quick contact row (Call / WhatsApp) —— */
.quick-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}
.quick-contact .btn {
    flex: 1;
    text-align: center;
    min-width: 120px;
}
.btn-whatsapp {
    background: #25D366;
    color: white;
    display: inline-block;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: bold;
    transition: background .25s, transform .25s, box-shadow .25s;
}
.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,.15);
}

/* —— Lightbox —— */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    cursor: zoom-out;
    padding: 20px;
}
.lightbox img {
    max-width: 95vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
}

/* Footer phone links */
.footer-content a[href^="tel:"] {
    display: inline;
    color: #bbb;
}
.footer-content a[href^="tel:"]:hover {
    color: white;
}

@media (max-width: 700px) {
    .nav-toggle {
        display: flex;
    }

    header .container {
        position: relative;
    }

    header nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 8px 24px rgba(0,0,0,.12);
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
        z-index: 1000;
    }

    header nav.nav-open {
        max-height: 320px;
    }

    header nav ul {
        flex-direction: column;
        gap: 0;
        padding: 10px 0 20px;
    }

    header nav a {
        display: block;
        padding: 14px 24px;
        width: 100%;
    }

    header nav a::after {
        display: none;
    }

    .quick-contact {
        flex-direction: column;
    }

    .quick-contact .btn,
    .quick-contact .btn-whatsapp {
        width: 100%;
    }
}


/* —— Filter chips —— */
.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: -20px 0 30px;
    align-items: center;
}
.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, color .2s;
}
.filter-chip:hover {
    background: var(--primary-blue);
    color: white;
}
.filter-chip-clear {
    border-color: var(--grey);
    color: var(--grey);
}
.filter-chip-clear:hover {
    background: var(--grey);
    color: white;
}

/* —— Map embed —— */
.map-embed {
    margin-top: 30px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-small);
    aspect-ratio: 16 / 9;
    max-height: 360px;
}
.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* —— Breadcrumb —— */
.breadcrumb {
    font-size: 0.85rem;
    color: var(--grey);
    margin-bottom: 12px;
}
.breadcrumb a {
    color: var(--primary-blue);
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}

/* —— Footer meta (ABN / hours) —— */
.footer-meta {
    font-size: 0.85rem;
    color: #999;
    margin-top: 8px;
    line-height: 1.5;
}

/* —— Similar vehicles —— */
.similar-vehicles {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px 40px;
}
.similar-vehicles h2 {
    text-align: center;
    margin-bottom: 30px;
}


/* —— Motto banner (replaces stats) —— */
.motto-banner {
    background: white;
    padding: 50px 0;
    text-align: center;
}
.motto-quote {
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 700;
    color: var(--primary-blue);
    max-width: 700px;
    margin: 0 auto 12px;
    line-height: 1.35;
    border: none;
}
.motto-sub {
    color: var(--grey);
    font-size: 1.05rem;
}
.motto-inline {
    margin-top: 24px;
    font-size: 1.1rem;
    color: var(--primary-dark);
}

/* —— Services grid —— */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 30px;
}
.service-card {
    background: white;
    padding: 28px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-small);
    border-top: 3px solid var(--primary-blue);
    transition: transform .25s, box-shadow .25s;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}
.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.15rem;
}
.service-card p {
    color: var(--grey);
    font-size: 0.95rem;
}

/* —— Cash for cars strip —— */
.cash-for-cars-section {
    background: white;
}
.cash-for-cars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.cash-for-cars-text h2 {
    text-align: left;
    margin-bottom: 16px;
}
.cash-for-cars-text p {
    color: var(--grey);
    margin-bottom: 24px;
    font-size: 1.05rem;
}
.cash-for-cars-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}
.cash-for-cars-image img {
    width: 100%;
    height: 100%;
    max-height: 360px;
    object-fit: cover;
    display: block;
}

@media (max-width: 700px) {
    .cash-for-cars-grid {
        grid-template-columns: 1fr;
    }
    .cash-for-cars-text h2 {
        text-align: center;
    }
    .cash-for-cars-text {
        text-align: center;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
}


/* —— Legal pages —— */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-small);
}
.legal-content h2 {
    text-align: left;
    font-size: 1.25rem;
    margin: 32px 0 12px;
    color: var(--primary-dark);
}
.legal-content p,
.legal-content li {
    color: #444;
    margin-bottom: 12px;
}
.legal-content ul {
    margin: 12px 0 20px 24px;
}
.legal-content a {
    color: var(--primary-blue);
}
@media (max-width: 600px) {
    .legal-content {
        padding: 24px 18px;
    }
}

