/* 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;
}

/* Buttons */
.cta-button {
    background: #C4622D;
    color: white;
    padding: 15px 30px;
    display: inline-block;
    border-radius: 6px;
    transition: 0.3s ease;
    border: none;
    cursor: pointer;
}

.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;
    display: inline-block;
}

.secondary-button:hover {
    background: #F5F0E8;
    color: #111;
}

/* Shared Sections */
.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 h1,
.section-heading h2 {
    font-size: 44px;
    margin: 10px 0 0;
}

/* Shared Cards */
.trust-card,
.form-box,
.contact-info,
.sell-form-box,
.vehicle-enquiry-form {
    background: #161616;
    border: 1px solid #222;
    padding: 40px;
    border-radius: 14px;
}

.trust-card {
    transition: 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-6px);
    border-color: #C4622D;
}

.trust-card h3 {
    color: #C4622D;
}

.trust-card p {
    color: #aaa;
    line-height: 1.7;
}

/* Shared Forms */
input,
select,
textarea {
    font-family: inherit;
}

.form-box input,
.form-box select,
.form-box textarea,
.vehicle-enquiry-form input,
.vehicle-enquiry-form textarea,
.sell-form-box input,
.sell-form-box select,
.sell-form-box textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: #111;
    border: 1px solid #333;
    color: white;
    border-radius: 6px;
    box-sizing: border-box;
}

.form-box input:focus,
.form-box select:focus,
.form-box textarea:focus,
.vehicle-enquiry-form input:focus,
.vehicle-enquiry-form textarea:focus,
.sell-form-box input:focus,
.sell-form-box select:focus,
.sell-form-box textarea:focus {
    outline: none;
    border-color: #C4622D;
}

input[type="submit"] {
    background: #C4622D;
    border: none;
    color: white;
    cursor: pointer;
}

/* Utility */
.center-button {
    text-align: center;
    margin-top: 45px;
}

.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;
}
.lumo-hidden {
    opacity: 0;
    transform: translateY(24px);
    transition: 0.6s ease;
}

.lumo-visible {
    opacity: 1;
    transform: translateY(0);
}

/* WhatsApp Chat Bubble */
.whatsapp-bubble {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 62px;
    height: 62px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 30px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    transition: 0.3s ease;
}

.whatsapp-bubble:hover {
    transform: translateY(-5px) scale(1.05);
    background: #1ebe5d;
}

@media(max-width: 768px) {
    .whatsapp-bubble {
        right: 18px;
        bottom: 18px;
        width: 56px;
        height: 56px;
        font-size: 26px;
    }
}

/* Dealer Reviews */
.reviews-hero {
    padding: 120px 0;
    background:
        linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.82)),
        url('https://hewnspace.com/wp-content/uploads/2022/03/The-Urban-Building.jpg') center center/cover no-repeat;
}

.reviews-hero h1 {
    font-size: 70px;
    margin: 15px 0 20px;
}

.reviews-hero p {
    color: #ddd;
    font-size: 20px;
}

.dealer-reviews-page {
    padding: 100px 0;
    background: #111;
}

.reviews-summary-box {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: center;
    background: #161616;
    border: 1px solid #222;
    border-radius: 20px;
    padding: 45px;
    margin-bottom: 50px;
}

.review-score {
    color: #C4622D;
    font-size: 76px;
    font-weight: 900;
    line-height: 1;
}

.review-stars {
    color: #C4622D;
    letter-spacing: 3px;
    font-size: 20px;
    margin: 15px 0;
}

.reviews-summary-box h2 {
    font-size: 44px;
    margin: 0 0 18px;
}

.reviews-summary-box p,
.review-card p {
    color: #aaa;
    line-height: 1.8;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: #161616;
    border: 1px solid #222;
    border-radius: 18px;
    padding: 34px;
    transition: 0.3s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    border-color: #C4622D;
}

.review-card strong {
    color: #F5F0E8;
}

.reviews-cta {
    padding: 90px 0;
    background: #0d0d0d;
}

.reviews-cta-box {
    text-align: center;
    background: #161616;
    border: 1px solid #222;
    border-radius: 20px;
    padding: 60px;
}

.reviews-cta-box h2 {
    font-size: 46px;
    margin-bottom: 15px;
}

.reviews-cta-box p {
    color: #aaa;
    margin-bottom: 30px;
}

@media(max-width: 900px) {
    .reviews-hero h1 {
        font-size: 42px;
    }

    .reviews-summary-box,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-score {
        font-size: 58px;
    }
}

/* SEO Landing Pages */
.seo-hero {
    padding: 130px 0;
    background:
        linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.82)),
        url('https://hewnspace.com/wp-content/uploads/2022/03/The-Urban-Building.jpg') center center/cover no-repeat;
}

.seo-hero h1 {
    font-size: 72px;
    line-height: 1;
    margin: 15px 0 25px;
    max-width: 900px;
}

.seo-hero p {
    color: #ddd;
    font-size: 20px;
    line-height: 1.8;
    max-width: 800px;
    margin-bottom: 35px;
}

.seo-content-section {
    padding: 100px 0;
    background: #111;
}

.seo-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
    align-items: start;
}

.seo-main-content {
    background: #161616;
    border: 1px solid #222;
    border-radius: 20px;
    padding: 50px;
}

.seo-main-content h2 {
    font-size: 38px;
    margin: 0 0 22px;
}

.seo-main-content p {
    color: #aaa;
    line-height: 1.9;
    font-size: 17px;
    margin-bottom: 28px;
}

.seo-checklist {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.seo-checklist li {
    color: #F5F0E8;
    margin-bottom: 15px;
    font-size: 17px;
}

.seo-checklist li::before {
    content: "✓";
    color: #C4622D;
    font-weight: bold;
    margin-right: 12px;
}

.seo-sidebar {
    background: #161616;
    border: 1px solid #222;
    border-radius: 20px;
    padding: 35px;
    position: sticky;
    top: 115px;
}

.seo-sidebar h3 {
    margin-top: 0;
    color: #C4622D;
}

.seo-sidebar a {
    display: block;
    color: #F5F0E8;
    padding: 14px 0;
    border-bottom: 1px solid #222;
}

.seo-sidebar a:hover {
    color: #C4622D;
}

.seo-contact-box {
    margin-top: 30px;
    background: #111;
    border: 1px solid #2a2a2a;
    padding: 22px;
    border-radius: 14px;
}

.seo-contact-box p {
    color: #aaa;
    line-height: 1.7;
}

.seo-cta {
    padding: 90px 0;
    background: #0d0d0d;
}

.seo-cta-box {
    text-align: center;
    background: #161616;
    border: 1px solid #222;
    border-radius: 20px;
    padding: 60px;
}

.seo-cta-box h2 {
    font-size: 46px;
    margin-bottom: 15px;
}

.seo-cta-box p {
    color: #aaa;
    margin-bottom: 30px;
}

@media(max-width: 900px) {
    .seo-hero h1 {
        font-size: 42px;
    }

    .seo-grid {
        grid-template-columns: 1fr;
    }

    .seo-sidebar {
        position: static;
    }

    .seo-main-content {
        padding: 30px;
    }
}