/* ==========================================================================
   LANGDON MOTORS // PREMIUM DESIGN SYSTEM
   Aesthetic: Sophisticated Cream, Deep Forest Green, Mustard Yellow & Warm Sand
   Typography: Playfair Display (Serif Headers) & Inter (Crisp Sans-Serif Body)
   ========================================================================== */

:root {
    --bg-cream: #fbfaf6;
    --forest-green: #142c1c;
    --forest-green-dark: #0d1e13;
    --mustard-yellow: #e5a93b;
    --mustard-yellow-hover: #d4982b;
    --warm-sand: #e2dcd0;
    --warm-sand-light: #f2efe9;
    --text-dark: #2c2a29;
    --text-muted: #666360;
    --text-light: #fbfaf6;
    --border-color: #d8d2c6;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-cream);
    color: var(--text-dark);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Headings Typography */
h1, h2, h3, h4, .serif-header {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
}

a {
    color: inherit;
    text-decoration: none;
}

/* ==========================================================================
   TOP TRUST BANNER
   ========================================================================== */
.trust-banner {
    background-color: var(--forest-green-dark);
    color: var(--mustard-yellow);
    padding: 8px 20px;
    font-size: 0.85rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.trust-stars {
    letter-spacing: 2px;
    font-size: 0.95rem;
}

.trust-text {
    color: var(--text-light);
    font-weight: 400;
}
.trust-text strong {
    color: var(--mustard-yellow);
}

/* ==========================================================================
   MAIN HEADER
   ========================================================================== */
.main-header {
    background-color: var(--bg-cream);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 10px 0;
    backdrop-filter: blur(10px);
    background-color: rgba(251, 250, 246, 0.95);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-box {
    display: flex;
    align-items: center;
}

.company-logo {
    height: 75px;
    width: auto;
    display: block;
    max-height: 85px;
    transition: var(--transition);
}
.company-logo:hover {
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
    padding: 6px 0;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--mustard-yellow);
    transition: var(--transition);
}
.nav-link:hover::after,
.nav-link.active-link::after {
    width: 100%;
}
.nav-link:hover {
    color: var(--mustard-yellow-hover);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.phone-link {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--forest-green);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.phone-link:hover {
    color: var(--mustard-yellow-hover);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    border: none;
}

.btn-mustard {
    background-color: var(--mustard-yellow);
    color: var(--forest-green-dark);
    padding: 12px 32px;
    font-size: 0.95rem;
}
.btn-mustard:hover {
    background-color: var(--mustard-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 169, 59, 0.3);
}

.btn-mustard-large {
    background-color: var(--mustard-yellow);
    color: var(--forest-green-dark);
    padding: 16px 38px;
    font-size: 1.1rem;
    border-radius: 40px;
    font-weight: 700;
}
.btn-mustard-large:hover {
    background-color: var(--mustard-yellow-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(229, 169, 59, 0.4);
}

.btn-mustard-small {
    background-color: var(--mustard-yellow);
    color: var(--forest-green-dark);
    padding: 8px 22px;
    font-size: 0.9rem;
}
.btn-mustard-small:hover {
    background-color: var(--mustard-yellow-hover);
    transform: translateY(-2px);
}

.btn-outline-light {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    padding: 14px 34px;
    font-size: 1.1rem;
    border-radius: 40px;
    backdrop-filter: blur(5px);
}
.btn-outline-light:hover {
    border-color: var(--mustard-yellow);
    color: var(--mustard-yellow);
    transform: translateY(-3px);
}

.btn-mustard-outline {
    background-color: transparent;
    border: 2px solid var(--mustard-yellow);
    color: var(--mustard-yellow);
    padding: 14px 38px;
    font-size: 1.05rem;
    border-radius: 40px;
}
.btn-mustard-outline:hover {
    background-color: var(--mustard-yellow);
    color: var(--forest-green-dark);
    transform: translateY(-2px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    background: linear-gradient(to bottom, rgba(14, 30, 19, 0.72), rgba(14, 30, 19, 0.84)), url('images/E-Type Jaguar.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: var(--text-light);
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 110px;
    overflow: hidden;
    border-bottom: 2px solid var(--mustard-yellow);
}

.hero-container-center {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 32px 70px 32px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-center {
    max-width: 840px;
}

.accent-tag-dark {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--mustard-yellow);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title-dark {
    font-size: 4.5rem;
    color: var(--text-light);
    margin-bottom: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-desc-dark {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.hero-buttons-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-mini-bullets {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    flex-wrap: wrap;
}
.hero-mini-bullets span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.yellow-stars {
    color: var(--mustard-yellow);
    letter-spacing: 2px;
}

/* Hero Stat Bar */
.hero-stat-bar {
    background-color: var(--forest-green-dark);
    border-top: 1px solid rgba(229, 169, 59, 0.3);
    padding: 36px 0;
    width: 100%;
}

.stat-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 0;
    height: 70%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--mustard-yellow);
    line-height: 1;
}

.stat-lbl {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

/* ==========================================================================
   COMMON SECTION STYLING
   ========================================================================== */
.section-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 110px 32px;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--mustard-yellow);
    margin-bottom: 16px;
    text-transform: uppercase;
}
.section-subtitle-light {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--mustard-yellow);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title {
    font-size: 3.2rem;
    margin-bottom: 24px;
    color: var(--forest-green);
    letter-spacing: -0.5px;
}
.section-title-light {
    font-size: 3.2rem;
    margin-bottom: 24px;
    color: var(--text-light);
    letter-spacing: -0.5px;
}

/* ==========================================================================
   OUR STORY SECTION
   ========================================================================== */
.why-us-section {
    background-color: var(--bg-cream);
    border-bottom: 1px solid var(--border-color);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.story-main-img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}
.story-image-box:hover .story-main-img {
    transform: scale(1.03);
}

.floating-rating-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: var(--forest-green);
    padding: 24px 32px;
    border-radius: 16px;
    color: var(--text-light);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    border-left: 4px solid var(--mustard-yellow);
    backdrop-filter: blur(5px);
}

.star-row {
    color: var(--mustard-yellow);
    font-size: 1.2rem;
    margin-bottom: 8px;
    letter-spacing: 3px;
}

.rating-val {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--mustard-yellow);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.rating-lbl {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.why-us-text {
    max-width: 600px;
}

.story-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.value-props-list-clean {
    list-style: none;
    margin: 32px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.value-props-list-clean li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--forest-green);
}

.check-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--mustard-yellow);
    color: var(--forest-green-dark);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
}

.story-cta {
    margin-top: 16px;
}

/* ==========================================================================
   IN THE GARAGE SECTION ("We love cars — it shows")
   ========================================================================== */
.gallery-section {
    background-color: var(--warm-sand-light);
    border-bottom: 1px solid var(--border-color);
}

.gallery-header {
    max-width: 680px;
    margin-bottom: 60px;
}

.gallery-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.garage-bays-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 24px;
}

.garage-bay-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: var(--forest-green);
    group: bay;
}

.tall-bay {
    grid-row: span 2;
}

.bay-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.garage-bay-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 30, 19, 0.85) 0%, rgba(13, 30, 19, 0.2) 50%, transparent 100%);
    pointer-events: none;
    transition: var(--transition);
}

.garage-bay-card:hover .bay-img {
    transform: scale(1.05);
}

.bay-caption {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 10;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

/* ==========================================================================
   HOW IT WORKS SECTION ("Booking in is easy")
   ========================================================================== */
.how-it-works-section {
    background-color: var(--bg-cream);
    border-bottom: 1px solid var(--border-color);
}

.how-header {
    text-align: center;
    margin-bottom: 64px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.step-card {
    background-color: var(--warm-sand-light);
    border: 1px solid var(--border-color);
    padding: 40px 32px;
    border-radius: 20px;
    position: relative;
    transition: var(--transition);
}
.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--mustard-yellow);
}

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--forest-green-dark);
    background-color: var(--mustard-yellow);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 6px 16px rgba(229, 169, 59, 0.3);
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--forest-green);
}

.step-card p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   SERVICES GRID SECTION
   ========================================================================== */
.services-section {
    background-color: var(--warm-sand-light);
    border-bottom: 1px solid var(--border-color);
}

.services-header-text {
    max-width: 720px;
    margin-bottom: 64px;
}

.services-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.premium-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.premium-service-card {
    background-color: var(--bg-cream);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.premium-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card-image-box {
    height: 240px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.service-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}
.premium-service-card:hover .service-photo {
    transform: scale(1.05);
}

.card-text-box {
    padding: 36px 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-text-box h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: var(--forest-green);
}

.card-text-box p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* Highlight Card ("...And Much More!") */
.highlight-card {
    background-color: var(--forest-green);
    color: var(--text-light);
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.more-box {
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 48px 36px;
}

.more-icon {
    font-size: 2.8rem;
    color: var(--mustard-yellow);
    margin-bottom: 16px;
    display: block;
    line-height: 1;
}

.more-box h3 {
    color: var(--text-light);
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.more-box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.more-cta {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 28px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.more-cta span {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    background-color: var(--forest-green);
    color: var(--text-light);
    padding: 120px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonials-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}

.testimonials-header {
    margin-bottom: 64px;
}

.testimonials-subdesc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.carousel-wrapper {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
}

.carousel-track {
    position: relative;
    min-height: 280px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transform: translateY(10px);
}
.testimonial-slide.active {
    opacity: 1;
    pointer-events: all;
    position: relative;
    transform: translateY(0);
}

.slide-content {
    padding: 0 20px;
}

.review-stars {
    color: var(--mustard-yellow);
    font-size: 1.4rem;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.customer-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.85rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 32px;
}

.customer-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.customer-name {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--mustard-yellow);
}

.customer-loc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}
.customer-loc::before {
    content: '•';
    margin-right: 12px;
    color: rgba(255, 255, 255, 0.3);
}

/* Pagination Dots */
.pagination-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 48px 0;
}

.dot-btn {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.dot-btn:hover {
    background-color: rgba(255, 255, 255, 0.5);
}
.dot-btn.active {
    background-color: var(--mustard-yellow);
    transform: scale(1.2);
}

.reviews-btn-box {
    margin-top: 24px;
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-section {
    background-color: var(--bg-cream);
    border-bottom: 1px solid var(--border-color);
}

.faq-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 110px 32px;
}

.faq-header {
    text-align: center;
    margin-bottom: 64px;
}

.faq-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.accordion-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item {
    background-color: var(--warm-sand-light);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}
.accordion-item:hover {
    border-color: var(--mustard-yellow);
}

.accordion-header {
    width: 100%;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.accordion-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--forest-green);
    padding-right: 24px;
}

.accordion-icon {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--mustard-yellow);
    transition: transform 0.3s ease;
    line-height: 1;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(45deg);
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 0 32px;
    background-color: var(--bg-cream);
}
.accordion-header[aria-expanded="true"] + .accordion-panel {
    max-height: 300px;
    padding: 0 32px 32px 32px;
    border-top: 1px solid var(--border-color);
}
.accordion-panel p {
    padding-top: 24px;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==========================================================================
   CONTACT & LOCATION SECTION (SNIPPET ALIGNMENT)
   ========================================================================== */
.contact-section {
    background-color: var(--warm-sand-light);
    border-bottom: 1px solid var(--border-color);
}

.contact-header-text {
    text-align: center;
    margin-bottom: 64px;
}

.contact__info {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
    background-color: var(--bg-cream);
    padding: 56px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.contact__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact__list li {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.contact__ic {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background-color: var(--forest-green);
    border-radius: 14px;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(20, 44, 28, 0.15);
}
.contact__ic svg {
    width: 26px;
    height: 26px;
    fill: var(--mustard-yellow);
}

.contact__list h3 {
    font-size: 1.35rem;
    color: var(--forest-green);
    margin-bottom: 8px;
}

.contact__list p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact__link {
    font-size: 1rem;
    font-weight: 700;
    color: var(--mustard-yellow);
    transition: var(--transition);
    display: inline-block;
}
.contact__link:hover {
    color: var(--forest-green);
}

.contact__tel {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--forest-green);
    transition: var(--transition);
}
.contact__tel:hover {
    color: var(--mustard-yellow-hover);
}

/* Hours Table */
.hours {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
}
.hours th {
    text-align: left;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-dark);
    padding: 6px 16px 6px 0;
    border-bottom: 1px solid var(--border-color);
}
.hours td {
    text-align: right;
    font-size: 1.05rem;
    color: var(--text-muted);
    padding: 6px 0;
    border-bottom: 1px solid var(--border-color);
}
.hours__closed {
    color: #c94a4a !important;
    font-weight: 600;
}

.contact__map {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--border-color);
    height: 100%;
    min-height: 380px;
}
.contact__map iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    display: block;
}

/* ==========================================================================
   STANDALONE MOT CHECKER PAGE
   ========================================================================== */
.standalone-mot-main {
    padding: 80px 0 140px 0;
    background-color: var(--warm-sand-light);
}

.mot-box-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 32px;
}

.mot-premium-card {
    background-color: var(--bg-cream);
    border-radius: 28px;
    border: 1px solid var(--border-color);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
    padding: 64px 56px;
}

.mot-header-content {
    text-align: center;
    margin-bottom: 48px;
}

.mot-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 16px;
}

.clean-lookup-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.premium-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--forest-green);
    text-align: center;
}

.styled-input-box {
    display: flex;
    align-items: center;
    background-color: #f2efe9;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.05);
}
.styled-input-box:focus-within {
    border-color: var(--mustard-yellow);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(229, 169, 59, 0.2);
}

.reg-country-tag {
    background-color: #0b1970;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 16px 22px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.styled-reg-input {
    flex-grow: 1;
    border: none;
    background: transparent;
    padding: 16px 24px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 6px;
    outline: none;
    text-align: center;
}
.styled-reg-input::placeholder {
    color: #b5afxa;
    letter-spacing: 4px;
}

.btn-mustard-submit {
    background-color: var(--mustard-yellow);
    color: var(--forest-green-dark);
    padding: 18px 48px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
    box-shadow: 0 8px 24px rgba(229, 169, 59, 0.3);
}
.btn-mustard-submit:hover {
    background-color: var(--mustard-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(229, 169, 59, 0.4);
}

/* Results Area */
.mot-lookup-results {
    margin-top: 48px;
    border-top: 1px solid var(--border-color);
    padding-top: 48px;
}
.mot-lookup-results.hidden {
    display: none;
}
.lookup-loading.hidden,
.lookup-data.hidden,
.lookup-error.hidden {
    display: none;
}

.lookup-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 32px 0;
}

.elegant-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--warm-sand);
    border-top-color: var(--mustard-yellow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-label {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--forest-green);
}

.results-table-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.result-cell {
    background-color: var(--warm-sand-light);
    border: 1px solid var(--border-color);
    padding: 20px 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cell-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.cell-val {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}
.bold-reg {
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 2px;
    color: var(--forest-green);
}
.green-text {
    color: #2b7a3b;
}

.status-badge-valid {
    display: inline-block;
    background-color: #2b7a3b;
    color: #ffffff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 1.1rem;
    width: fit-content;
}

.status-badge-invalid {
    display: inline-block;
    background-color: #d9381e;
    color: #ffffff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 1.1rem;
    width: fit-content;
}

.results-cta {
    background-color: var(--forest-green);
    color: var(--text-light);
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.results-cta p {
    font-size: 1.2rem;
    font-weight: 600;
}

.lookup-error {
    background-color: #fdf3f3;
    border: 2px solid #e89b9b;
    padding: 32px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 24px;
    color: #9c2b2b;
}
.error-symbol {
    font-size: 2.8rem;
    line-height: 1;
}
.error-content strong {
    font-size: 1.25rem;
    display: block;
    margin-bottom: 6px;
}
.error-content p {
    font-size: 1.05rem;
    color: #703838;
}

/* ==========================================================================
   STANDALONE PRIVACY POLICY PAGE
   ========================================================================== */
.privacy-main {
    padding: 80px 0 140px 0;
    background-color: var(--warm-sand-light);
}

.privacy-container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 32px;
}

.privacy-header {
    text-align: center;
    margin-bottom: 56px;
}

.privacy-last-updated {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 16px;
    font-weight: 600;
}

.privacy-content-box {
    background-color: var(--bg-cream);
    border-radius: 28px;
    border: 1px solid var(--border-color);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
    padding: 72px 64px;
}

.privacy-content-box h2 {
    font-size: 1.8rem;
    color: var(--forest-green);
    margin: 40px 0 16px 0;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}
.privacy-content-box h2:first-child {
    margin-top: 0;
}

.privacy-content-box p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.privacy-content-box ul {
    margin: 0 0 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.privacy-content-box li {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.privacy-content-box li strong {
    color: var(--text-dark);
}

.privacy-contact-card {
    background-color: var(--warm-sand-light);
    border-left: 4px solid var(--mustard-yellow);
    padding: 32px;
    border-radius: 0 16px 16px 0;
    margin-top: 32px;
}
.privacy-contact-card p {
    margin-bottom: 8px;
    font-size: 1.15rem;
    color: var(--text-dark);
}
.privacy-contact-card p:last-child {
    margin-bottom: 0;
}
.privacy-phone-link {
    color: var(--forest-green);
    font-weight: 700;
    transition: var(--transition);
}
.privacy-phone-link:hover {
    color: var(--mustard-yellow-hover);
}

/* ==========================================================================
   COOKIE CONSENT BANNER
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 32px;
    left: 32px;
    right: 32px;
    max-width: 960px;
    margin: 0 auto;
    background-color: var(--forest-green);
    color: var(--text-light);
    padding: 24px 36px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(229, 169, 59, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.5s ease;
}
.cookie-banner.hidden {
    transform: translateY(150%);
    opacity: 0;
    pointer-events: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    width: 100%;
}
.cookie-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cookie-link {
    color: var(--mustard-yellow);
    text-decoration: underline;
    font-weight: 600;
}
.cookie-link:hover {
    color: var(--mustard-yellow-hover);
}

.cookie-buttons {
    flex-shrink: 0;
}

/* ==========================================================================
   MAIN FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--forest-green-dark);
    color: var(--text-light);
    padding-top: 90px;
}

.footer-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 32px 80px 32px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 64px;
}

.footer-logo {
    height: 52px;
    width: auto;
    display: block;
    margin-bottom: 24px;
}

.footer-brand-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.7;
}

.footer-stars {
    color: var(--mustard-yellow);
    font-size: 1.1rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-stars span {
    font-size: 0.9rem;
    color: var(--text-light);
    letter-spacing: normal;
}

.footer-col-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--mustard-yellow);
    margin-bottom: 28px;
    display: block;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links li a {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}
.footer-links li a:hover {
    color: var(--mustard-yellow);
    padding-left: 4px;
}

.footer-address {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    line-height: 1.7;
}

.footer-phone {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.footer-phone-link {
    color: var(--mustard-yellow);
    font-size: 1.3rem;
    font-weight: 700;
    transition: var(--transition);
}
.footer-phone-link:hover {
    color: var(--mustard-yellow-hover);
}

.footer-hours {
    background-color: var(--forest-green);
    padding: 20px 24px;
    border-radius: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-hours strong {
    display: block;
    color: var(--mustard-yellow);
    margin-bottom: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 0;
    background-color: #08120b;
}

.footer-bottom-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   RESPONSIVE DESIGN / MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
    .story-grid,
    .contact__info {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .contact__info {
        padding: 40px 32px;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
    .stat-container {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .stat-item:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 992px) {
    .premium-services-grid,
    .garage-bays-grid {
        grid-template-columns: 1fr 1fr;
    }
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
    .nav-menu {
        display: none;
    }
    .hero-title-dark {
        font-size: 3.5rem;
    }
    .section-title {
        font-size: 2.6rem;
    }
}

@media (max-width: 768px) {
    .premium-services-grid,
    .garage-bays-grid,
    .steps-grid,
    .results-table-grid,
    .footer-container,
    .stat-container {
        grid-template-columns: 1fr;
    }
    .tall-bay {
        grid-row: auto;
    }
    .stat-item::after {
        display: none;
    }
    .header-actions .btn {
        display: none;
    }
    .hero-title-dark {
        font-size: 2.8rem;
    }
    .hero-desc-dark {
        font-size: 1.1rem;
    }
    .story-main-img {
        height: 380px;
    }
    .mot-premium-card,
    .privacy-content-box {
        padding: 40px 28px;
    }
    .cookie-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-bottom-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
