@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@600;700&display=swap");

/* Dark industrial theme inspired by the original WordPress site */

:root {
    --background: #111317;
    --surface: rgba(22, 26, 34, 0.74);
    --surface-strong: rgba(15, 18, 24, 0.92);
    --border: rgba(255, 255, 255, 0.12);
    --text: #f2f2f2;
    --muted: rgba(242, 242, 242, 0.72);
    --accent: #1a8cff;
    --accent-strong: #0e6be0;
    --highlight: #ff6600;
    --shadow: rgba(0, 0, 0, 0.65);
    --radius: 10px;
    --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --svc-card-gap-tight: 0.45rem;
    --svc-card-pad-y-tight: 0.7rem;
    --svc-card-header-pt: 0.7rem;
    --svc-card-header-pb: 0.2rem;
    --svc-card-body-pb: 0.75rem;
    --svc-icon-gap: 0.3rem;
    --svc-tier-trigger-pad: 0.8rem;
    --site-bg-overlay-start: rgba(17, 19, 23, 0.60);
    --site-bg-overlay-end: rgba(17, 19, 23, 0.68);
    --site-bg-image: url('../images/garage-exterior.jpg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font);
    line-height: 1.55;
    color: var(--text);
    background:
        linear-gradient(var(--site-bg-overlay-start), var(--site-bg-overlay-end)),
        var(--site-bg-image) center center / cover fixed no-repeat,
        var(--background);
    min-height: 100vh;
    overflow-x: hidden;
}

::selection {
    background: rgba(26, 140, 255, 0.35);
}

header {
    background: rgba(12, 15, 21, 0.95);
    border-bottom: 1px solid var(--border);
    color: var(--text);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    flex: 0 1 auto;
    min-width: 0;
}

.logo h1 {
    font-family: "Rajdhani", var(--font);
    font-size: 2.05rem;
    font-weight: 700;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    line-height: 1.05;
    color: var(--text);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.logo p {
    font-size: 0.9rem;
    color: var(--muted);
    margin-top: 0.25rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.75rem;
    flex-wrap: wrap;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    opacity: 0.9;
    transition: color 0.25s, opacity 0.25s, transform 0.25s;
}

nav a:hover {
    color: var(--accent);
    opacity: 1;
    transform: translateY(-1px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container > section:first-child,
.container > .content-section:first-child,
.container > .about-section:first-child {
    margin-top: 0;
}

main {
    padding: 2.5rem 0 4rem;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(140deg, rgba(17, 19, 23, 0.88) 0%, rgba(18, 24, 32, 0.88) 52%, rgba(17, 19, 23, 0.88) 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 25% 30%, rgba(26, 140, 255, 0.25), transparent 55%),
                      radial-gradient(circle at 75% 20%, rgba(255, 102, 0, 0.18), transparent 55%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h2 {
    position: relative;
    font-size: clamp(2rem, 4vw, 3.6rem);
    margin-top: 0;
    margin-bottom: 1.2rem;
    letter-spacing: 0.05em;
    color: var(--text);
}

.hero p {
    position: relative;
    font-size: clamp(1rem, 1.3vw, 1.25rem);
    color: var(--muted);
    max-width: 900px;
    margin: 0 auto;
}

.service-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.highlight-item h3 {
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.highlight-item p {
    color: var(--muted);
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
    margin: 2.5rem 0;
}

.services-grid.services-page-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    grid-auto-rows: 1fr;
}
@media (max-width: 900px) {
    .services-grid.services-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .services-grid.services-page-grid {
        grid-template-columns: 1fr;
    }
}

.services-grid.services-page-grid .service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-journey-grid {
    align-items: stretch;
}

.about-journey-card {
    text-align: center;
    align-items: center;
}

.about-journey-year {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.about-section {
    margin: 3rem 0;
}

.scanline-offset-top {
    padding-top: 1.25rem;
}

.section-heading-offset {
    margin-top: 0.4rem;
}

/* Shared spacing tokens */
.u-mb-175 { margin-bottom: 1.75rem; }
.u-mb-110 { margin-bottom: 1.1rem; }
.u-mt-040 { margin-top: 0.4rem; }
.u-mt-175 { margin-top: 1.75rem; }
.u-mt-080 { margin-top: 0.8rem; }
.u-pt-125 { padding-top: 1.25rem; }

/* Shared intro copy tokens */
.u-intro-copy {
    color: var(--muted);
    margin: 0.5rem auto 0;
    font-size: 0.9375rem;
    line-height: 1.7;
}
.u-maxw-680 { max-width: 680px; }
.u-maxw-600 { max-width: 600px; }

/* Cross-page heading rhythm normalization */
.section-heading-offset,
.section-title-center,
.about-section-title,
.contact-section-title,
.info-cta-title,
.cta-booking h2 {
    line-height: 1.15;
    letter-spacing: 0.02em;
}

.section-heading-offset {
    margin-bottom: 0.6rem;
}

.section-intro-copy {
    color: var(--muted);
    max-width: 600px;
    margin: 0.5rem auto 0;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.about-section-title {
    color: var(--text);
    margin-bottom: 1.5rem;
}

.about-intro-text {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-intro-text-last {
    margin-bottom: 2rem;
}

.about-stats-row {
    display: flex;
    justify-content: space-around;
    margin: 2rem 0;
    text-align: center;
}

.about-stat-value {
    color: var(--accent);
}

.about-highlight-box {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
}

.about-checklist {
    font-size: 1rem;
    line-height: 2;
    color: var(--muted);
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.about-team-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
}

.about-team-img {
    width: 120px;
    height: 120px;
    display: block;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid var(--accent);
}

.about-team-name {
    margin: 0.5rem 0;
    color: var(--text);
}

.about-team-role {
    margin: 0;
    color: var(--accent);
    font-weight: bold;
}

.about-team-bio {
    margin: 1rem 0 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.about-cta-box {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: #2d2d2d;
    border-radius: 8px;
    color: white;
}

.about-cta-box h2 {
    margin-bottom: 1rem;
}

.about-cta-box p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .about-stats-row {
        flex-direction: column;
        gap: 1rem;
    }
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2.25rem 0;
    align-items: start;
}

.contact-section-title {
    color: var(--text);
    margin-bottom: 1rem;
}

.contact-intro-text {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 1.35rem;
}

.contact-subtitle {
    color: var(--text);
    margin-top: 1.35rem;
    margin-bottom: 0.75rem;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.06);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-info-item {
    margin-bottom: 1rem;
}

.contact-info-item-last {
    margin-bottom: 0;
}

.contact-info-link {
    color: var(--accent);
    text-decoration: none;
}

.contact-hours-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 1rem 1.1rem;
    border-radius: 8px;
}

.contact-hours-line {
    margin-bottom: 0.35rem;
}

.contact-hours-line-last {
    margin-bottom: 0;
}

.contact-submit-btn {
    width: 100%;
}

.contact-questions-box {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
}

.contact-questions-title {
    color: var(--text);
    margin-bottom: 1rem;
}

.contact-questions-text {
    font-size: 1.1rem;
    color: var(--muted);
}

@media (max-width: 900px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(12px);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(26, 140, 255, 0.45);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.55);
}

.service-card h3 {
    color: var(--accent);
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    line-height: 1.3;
}

.service-card p,
.service-card li {
    color: var(--muted);
    line-height: 1.8;
}

.service-card ul {
    padding-left: 1.2rem;
    margin-top: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(120deg, var(--accent), var(--highlight));
    color: #0b0d11;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-align: center;
    box-shadow: 0 14px 30px rgba(26, 140, 255, 0.22);
    line-height: 1.15;
    min-height: 48px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(26, 140, 255, 0.34);
}

.cta-booking .text-center,
.testimonials .text-center,
.feature-headline {
    margin-bottom: 1.2rem;
}

.cta-booking .btn,
.info-cta-box .btn,
.mobile-sticky-bar__link {
    min-height: 50px;
}

section[style*="background: #f0f0f0"] {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

footer {
    background: rgba(12, 15, 21, 0.95);
    color: var(--muted);
    text-align: center;
    padding: 2.5rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

footer p {
    margin: 0.5rem 0;
    font-size: 0.95rem;

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
    justify-content: center;
    text-transform: none;
    letter-spacing: normal;
}

.footer-legal-links a {
    color: #717b8a;
    text-decoration: none;
}

.footer-legal-links a:hover {
    color: #ffffff;
}

.footer-legal-divider {
    opacity: 0.55;
}

@media (min-width: 768px) {
    .footer-legal-links {
        justify-content: flex-start;
    }
}
}

footer a {
    color: var(--accent);
    text-decoration: none;
}

footer a:hover {
    color: var(--highlight);
}

.footer-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    text-align: left;
}

.footer-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 1rem 1.1rem;
    min-height: 84px;
    display: flex;
    align-items: center;
}

.footer-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
}

.contact-form {
    background: rgba(17, 19, 23, 0.72);
    padding: 1.5rem;
    border-radius: var(--radius);
    max-width: 560px;
    margin: 1rem auto 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--muted);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(20, 24, 33, 0.75);
    color: var(--text);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(26, 140, 255, 0.6);
    box-shadow: 0 0 0 3px rgba(26, 140, 255, 0.18);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

@media (max-width: 768px) {
    nav ul {
        justify-content: center;
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero h2 {
        font-size: 2.3rem;
    }

    .header-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Override inline colour styles for better readability in the dark layout */
.container h1,
.container h2,
.container h3,
.container h4,
.container h5,
.container h6 {
    color: var(--text) !important;
}

.container p,
.container li,
.container a {
    color: var(--muted) !important;
}

.container a:hover {
    color: var(--accent) !important;
}

/* Override inline background colours from the original template for a consistent dark theme */
section[style*="background: #f0f0f0"],
section[style*="background: #2d2d2d"],
div[style*="background: #f0f0f0"] {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
}

/* Hero section styling */
.hero {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(140deg, rgba(17, 19, 23, 0.92), rgba(12, 15, 21, 0.92)),
        url("../images/garage-exterior.jpg") center/cover no-repeat;
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* Stats grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Certifications */
.certifications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.cert-item {
    background: rgba(255, 255, 255, 0.06);
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    font-size: 0.9rem;
}

.verified {
    color: var(--accent);
    font-weight: bold;
}

/* Testimonials */
.testimonials {
    background: rgba(17, 19, 23, 0.8);
    padding: 3.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.testimonials h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2rem;
}

.testimonials .text-center {
    margin-bottom: 1.35rem !important;
}

.testimonials .section-intro-copy {
    max-width: 44rem;
    margin-left: auto;
    margin-right: auto;
}

.testimonials .text-center > .flex {
    gap: 0.55rem;
    margin-top: 0.9rem;
}

.testimonials .text-center > .flex .btn {
    margin-top: 0.55rem !important;
}

.testimonials .text-center > .text-slate-400.text-xs {
    margin-top: -0.05rem;
}

.testimonial-card {
    background: var(--surface);
    padding: 1.2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
}

.testimonial-card blockquote {
    font-style: italic;
    color: var(--muted);
    margin-top: 0;
    margin-bottom: 0.7rem;
    font-size: 0.97rem;
    line-height: 1.5;
}

.testimonial-card cite {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.78rem;
    line-height: 1.45;
    letter-spacing: 0.04em;
}

/* MOT checklist */
.mot-checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.checklist-item {
    background: rgba(255, 255, 255, 0.06);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.checklist-item h3 {
    color: var(--accent);
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    line-height: 1.3;
}

/* Certification cards */
.cert-card {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
}

.cert-card h3 {
    color: var(--accent);
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    line-height: 1.3;
}

/* Journey timeline */
.journey-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.timeline-year {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.timeline-content p {
    color: var(--muted);
    line-height: 1.6;
}

/* Team members */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.team-member {
    text-align: center;
    background: var(--surface);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--accent);
}

.team-member h3 {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.team-member .role {
    color: var(--accent);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--muted);
    font-size: 0.9rem;
}

.hero-cta {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.features-list {
    margin: 2.5rem auto 0;
    max-width: 740px;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem 1.75rem;
    padding: 0;
}

.features-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
}

.features-list li::before {
    content: "\2713";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.55rem;
    height: 1.55rem;
    border-radius: 50%;
    background: rgba(26, 140, 255, 0.18);
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

.btn.btn-outline {
    background: transparent;
    border: 1px solid rgba(26, 140, 255, 0.7);
    color: var(--text);
}

.btn.btn-outline:hover {
    background: rgba(26, 140, 255, 0.14);
}

.mobile-sticky-bar {
    display: none;
}

.mobile-sticky-bar__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    align-items: center;
}

.mobile-sticky-bar__link {
    min-height: 52px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mobile-sticky-bar__link--secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.mobile-sticky-bar__link--secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    color: var(--text);
}

.garage-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
    border: 1px solid rgba(74, 222, 128, 0.2);
    background: rgba(74, 222, 128, 0.05);
    color: #4ade80;
    width: fit-content;
    font-size: 0.75rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.garage-status-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: currentColor;
    display: inline-block;
}

.garage-status-badge.is-open .garage-status-dot {
    animation: pulse 1.8s infinite;
}

.garage-status-badge.is-closed {
    color: #9ca3af;
    border-color: rgba(156, 163, 175, 0.25);
    background: rgba(156, 163, 175, 0.08);
}

.content-section {
    margin: 3rem 0;
}

.content-section-tight {
    margin: 2rem 0;
}

.section-title-center {
    margin-top: 0;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: clamp(1.9rem, 3.2vw, 2.4rem);
    line-height: 1.2;
}

.section-lead {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

.section-lead-center {
    text-align: center;
}

.info-cta-box {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
}

.info-cta-title {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.info-cta-text {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.mot-cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

/* Feature / standards section */
.feature-overview {
    padding: 4.5rem 0;
}

.feature-headline {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(26, 140, 255, 0.5);
    background: rgba(26, 140, 255, 0.08);
    color: var(--accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.75rem;
}

.feature-headline h2 {
    font-size: clamp(2.3rem, 4vw, 3.6rem);
    margin: 0 0 1rem;
}

.feature-headline p {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.75;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.7rem;
}

.feature-card {
    background: rgba(17, 19, 23, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--accent);
}

.feature-card p {
    color: var(--muted);
    line-height: 1.75;
}

.trust-promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-top: 2.25rem;
}

.trust-promise-card {
    background: rgba(17, 19, 23, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.4rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.trust-promise-card h3 {
    margin: 0 0 0.65rem;
    color: var(--text);
    font-size: 1.05rem;
}

.trust-promise-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.workshop-gallery-section {
    padding: 2rem 0 3rem;
}

.workshop-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(185px, 0.76fr));
    justify-content: center;
    gap: 1rem;
}

.workshop-gallery-grid--about {
    margin-top: 2rem;
}

.workshop-gallery-card,
.workshop-step-card {
    background: rgba(17, 19, 23, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.workshop-gallery-image {
    width: 100%;
    height: 145px;
    object-fit: cover;
    display: block;
}

.workshop-gallery-copy {
    padding: 1rem 1rem 1.1rem;
}

.workshop-gallery-copy h3,
.workshop-step-card h3 {
    margin: 0 0 0.55rem;
    color: var(--text);
}

.workshop-gallery-copy p,
.workshop-step-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.workshop-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 1.75rem;
}

.workshop-step-card {
    padding: 1.4rem;
}

.workshop-step-number {
    display: inline-flex;
    margin-bottom: 0.75rem;
    color: #f59e0b;
    font-weight: 800;
    letter-spacing: 0.12em;
}

/* Call to action booking section */
.cta-booking {
    padding: 3rem 0;
    text-align: center;
}

.cta-booking h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.cta-booking p {
    color: var(--muted);
    max-width: 820px;
    margin: 0 auto 1.35rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.cta-booking .btn {
    width: auto;
    min-width: 260px;
}

.info-cta-box {
    padding: 3rem 0;
    text-align: center;
}

.info-cta-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.info-cta-text {
    color: var(--muted);
    max-width: 820px;
    margin: 0 auto 1.35rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.info-cta-box .btn {
    width: auto;
    min-width: 260px;
}

@media (max-width: 640px) {
    body {
        padding-bottom: 88px;
    }

    main {
        padding: 1.75rem 0 3.5rem;
    }

    .content-section,
    .about-section,
    .feature-overview,
    .workshop-gallery-section,
    .cta-booking,
    .info-cta-box,
    .testimonials {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .feature-overview,
    .workshop-gallery-section,
    .cta-booking {
        padding-top: 2.25rem;
        padding-bottom: 2.25rem;
    }

    .testimonials {
        padding: 2.6rem 0;
    }

    .testimonials .text-center {
        margin-bottom: 0.95rem !important;
    }

    .testimonials .text-center > .flex {
        gap: 0.4rem;
        margin-top: 0.65rem;
    }

    .hero h2,
    .testimonials h2,
    .section-title-center,
    .cta-booking h2,
    .info-cta-title {
        margin-bottom: 1rem;
    }

    .service-card h3,
    .checklist-item h3,
    .cert-card h3 {
        margin-bottom: 0.85rem;
    }

    .cta-booking p,
    .info-cta-text {
        margin-bottom: 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .testimonial-card {
        padding: 1rem;
    }

    .testimonial-card blockquote {
        font-size: 0.92rem;
        line-height: 1.45;
        margin-bottom: 0.65rem;
    }

    .testimonial-card cite {
        font-size: 0.74rem;
    }

    .cta-booking .btn,
    .info-cta-box .btn {
        min-width: 220px;
        margin-top: 0.25rem;
    }

    .footer-cards {
        gap: 0.75rem;
    }

    .footer-card {
        padding: 0.8rem 0.9rem;
        min-height: 72px;
    }

    .footer-card p {
        font-size: 0.9rem;
        line-height: 1.45;
    }

    .footer-cards .footer-card:nth-child(1) {
        order: 3;
    }

    .footer-cards .footer-card:nth-child(2) {
        order: 1;
    }

    .footer-cards .footer-card:nth-child(3) {
        order: 2;
    }

    /* Footer mobile fixes */
    footer.dark nav {
        gap: 0.18rem !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    footer.dark nav a {
        align-items: center !important;
        padding-left: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin: 0 !important;
        line-height: 1.22;
        font-size: 0.84rem;
    }

    footer.dark .grid > div:nth-child(2) {
        gap: 0.7rem !important;
    }

    footer.dark .grid > div:nth-child(2) h3 {
        margin-bottom: 0.325rem !important;
        line-height: 1.25 !important;
    }
}

@media (max-width: 900px) {
    .header-container {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .logo {
        text-align: center;
    }

    nav ul {
        justify-content: center;
    }

    .service-highlights,
    .testimonials-grid,
    .mot-checklist,
    .features-grid,
    .mot-cert-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonial-card {
        padding: 1.05rem;
    }

    .testimonial-card blockquote {
        font-size: 0.94rem;
    }
}

@media (max-width: 640px) {
    .container,
    .header-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    header {
        padding: 1rem 0;
    }

    .logo h1 {
        font-size: 1.58rem;
        line-height: 1.1;
    }

    .logo p {
        font-size: 0.8rem;
    }

    nav ul {
        gap: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    nav a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 40px;
    }

    .hero {
        min-height: 0;
        padding: 3.75rem 0;
    }

    .hero h2,
    .feature-headline h2,
    .cta-booking h2,
    .info-cta-title,
    .testimonials h2 {
        font-size: clamp(1.65rem, 8vw, 2.25rem);
        line-height: 1.15;
        letter-spacing: 0.03em;
    }

    .testimonials h2 {
        margin-bottom: 0.85rem;
    }

    .diag-heading-line {
        display: none !important;
    }

    .testimonials .text-center {
        margin-bottom: 1.25rem !important;
    }

    .testimonials .text-center > .flex {
        width: 100%;
        align-items: center;
    }

    .testimonials .text-center > .flex > * {
        max-width: 100%;
        word-break: break-word;
    }

    .testimonials .text-center > .flex .text-slate-400,
    .testimonials .text-center > .flex .text-slate-500 {
        line-height: 1.5;
    }

    .hero p,
    .feature-headline p,
    .section-lead,
    .cta-booking p,
    .info-cta-text,
    .about-intro-text,
    .contact-intro-text {
        font-size: 1rem;
        line-height: 1.65;
    }

    .service-highlights,
    .services-grid.services-page-grid,
    .testimonials-grid,
    .mot-checklist,
    .features-grid,
    .mot-cert-grid,
    .about-team-grid,
    .stats-grid,
    .certifications {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form,
    .about-highlight-box,
    .contact-hours-card,
    .contact-info-card,
    .service-card,
    .testimonial-card,
    .cert-card,
    .checklist-item,
    .feature-card,
    .about-team-card {
        padding: 1.2rem;
    }

    .about-stats-row {
        gap: 1.25rem;
    }

    .feature-headline {
        margin-bottom: 2rem;
    }

    .feature-headline p,
    .section-intro-copy,
    .section-lead,
    .info-cta-text,
    .cta-booking p {
        max-width: none;
    }

    .badge {
        letter-spacing: 0.14em;
        font-size: 0.68rem;
    }

    .workshop-gallery-grid,
    .workshop-steps-grid,
    .trust-promise-grid,
    .features-list,
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-journey-year,
    .timeline-year {
        width: 68px;
        height: 68px;
        font-size: 1rem;
    }

    .contact-main-grid {
        margin: 1.5rem 0;
    }

    .contact-form {
        margin-top: 0.5rem;
    }

    .booking-days-grid,
    .booking-slots-grid {
        gap: 0.45rem;
    }

    .btn,
    .cta-booking .btn,
    .info-cta-box .btn {
        width: 100%;
        min-width: 0;
        min-height: 46px;
    }

    .mobile-sticky-bar {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 80;
        padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
    }

    .mobile-sticky-bar__inner {
        padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
        background: rgba(12, 15, 21, 0.96);
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(12px);
    }

    .mobile-sticky-bar__link {
        min-height: 48px;
        font-size: 0.78rem;
        padding: 0.75rem 0.9rem;
        width: 100%;
    }
}

@media (max-width: 420px) {
    .header-container,
    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    nav ul {
        gap: 0.5rem 0.75rem;
    }

    .hero {
        padding: 3.25rem 0;
    }

    .hero h2,
    .feature-headline h2,
    .section-title-center,
    .cta-booking h2,
    .info-cta-title,
    .testimonials h2 {
        font-size: clamp(1.5rem, 8.6vw, 1.95rem);
    }

    .testimonials .text-center > .flex {
        gap: 0.5rem;
    }

    .mobile-sticky-bar__inner {
        grid-template-columns: 1fr;
    }

    .mobile-sticky-bar {
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        backdrop-filter: blur(10px);
        box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.35);
    }
}

/* About page class-based styles */
.about-section {
    margin: 3rem 0;
}

.about-section-title {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.about-intro-text {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-intro-text-last {
    margin-bottom: 2rem;
}

.about-stats-row {
    display: flex;
    justify-content: space-around;
    margin: 2rem 0;
    text-align: center;
}

.about-stat-value {
    color: var(--accent);
}

.about-highlight-box {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
}

.about-checklist {
    font-size: 1rem;
    line-height: 2;
    color: var(--muted);
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.about-team-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
}

.about-team-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--accent);
}

.about-team-name {
    margin: 0.5rem 0;
}

.about-team-role {
    margin: 0;
    color: var(--accent);
    font-weight: bold;
}

.about-team-bio {
    margin: 1rem 0 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.about-cta-box {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(45, 45, 45, 0.9);
    border-radius: 8px;
    color: white;
}

.about-cta-box h2 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.about-cta-box p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact page class-based styles */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
    align-items: start;
}

.contact-section-title {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.contact-intro-text {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 2rem;
}

.contact-subtitle {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.06);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-info-item {
    margin-bottom: 1rem;
}

.contact-info-item-last {
    margin-bottom: 0;
}

.contact-info-link {
    color: var(--accent);
    text-decoration: none;
}

.contact-hours-card {
    background: rgba(255, 255, 255, 0.06);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-hours-line {
    margin-bottom: 0.5rem;
}

.contact-hours-line-last {
    margin-bottom: 0;
}

.contact-submit-btn {
    width: 100%;
}

.contact-questions-box {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
}

.contact-questions-title {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.contact-questions-text {
    font-size: 1.1rem;
    color: var(--muted);
}

main .container > section:last-of-type {
    margin-bottom: 0 !important;
}

@media (max-width: 900px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-stats-row {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .about-section-title,
    .contact-section-title,
    .about-cta-box h2,
    .contact-questions-title {
        margin-bottom: 1rem;
    }

    .contact-subtitle {
        margin-top: 1.25rem;
        margin-bottom: 0.85rem;
    }
}

@media (min-width: 1024px) {
    footer.dark h3 {
        min-height: 3.5rem;
    }
}
