/* CSS Variables: Southern Legacy white + forest green + brown trim */
:root {
    --safe-top: env(safe-area-inset-top, 0);
    --safe-bottom: env(safe-area-inset-bottom, 0);
    --safe-left: env(safe-area-inset-left, 0);
    --safe-right: env(safe-area-inset-right, 0);
    --bg-dark: #163E16;        /* deep forest green – hero, dark sections */
    --bg-card: #ffffff;        /* pure white – main section bg */
    --bg-elevated: #F5F8F3;   /* pale green – alternate/elevated sections */
    --accent: #2E7D2E;         /* medium green – buttons, highlights */
    --accent-neon: #1D5C1D;   /* forest green – accent trim, hovers */
    --brown: #7B4A28;          /* chocolate brown – decorative trim */
    --brown-light: #A8683D;   /* warm brown – secondary accents */
    --green-light: #EAF3E8;   /* pale green – subtle bg / selected states */
    --text-light: #1a1a1a;    /* near-black – default text on light bg */
    --text-muted: rgba(0, 0, 0, 0.65);
    --text-dim: rgba(0, 0, 0, 0.42);
    --border-dark: rgba(0, 0, 0, 0.1);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    -webkit-text-size-adjust: 100%;
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes scrollBadge {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.33%);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-light);
    overflow-x: hidden;
    background: var(--bg-elevated);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    padding-bottom: var(--safe-bottom);
    font-weight: 400;
    width: 100%;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    width: 100%;
}

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

section {
    overflow-x: hidden;
    width: 100%;
}

/* Header Component */
header {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
    padding: 0;
    padding-top: var(--safe-top);
    padding-left: var(--safe-left);
    padding-right: var(--safe-right);
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
    overflow: visible;
}

header.scrolled {
    background: var(--bg-card);
    backdrop-filter: none;
    box-shadow: var(--shadow);
    border-bottom: 3px solid var(--brown);
    overflow: visible;
}

.header-container {
    max-width: 1120px;
    height: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    overflow: visible;
}

.logo-container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
    margin-left: 0;
    flex-shrink: 0;
    overflow: visible;
    padding-top: 45px;
}

.logo-container img {
    height: 100px;
    width: auto;
    max-width: 260px;
    max-height: 100px;
    object-fit: contain;
    object-position: left center;
    transition: transform 0.3s;
    display: block;
}

.logo-container:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.25rem;
    align-items: center;
    min-width: 0;
    flex-shrink: 1;
    position: relative;
    z-index: 2;
}

.nav-menu-logo {
    display: none;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.175rem;
    text-transform: none;
    letter-spacing: 0;
    position: relative;
    transition: color 0.3s;
    padding: 0.5rem 0.5rem;
    white-space: nowrap;
}

header.scrolled .nav-menu a {
    color: var(--text-light);
}

.nav-menu a {
    -webkit-tap-highlight-color: transparent;
}

.nav-menu a:hover {
    color: var(--accent-neon);
}

.nav-menu a.active {
    color: var(--accent-neon);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

header.scrolled .hamburger-icon span {
    background: var(--accent-neon);
}

/* Header navbar contact block: single row, no stacking */
header .contact-info {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    flex-wrap: nowrap;
    position: relative;
    z-index: 1;
}

.phone-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.075rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

header.scrolled .phone-link {
    color: var(--accent);
    border-color: var(--accent);
}

header.scrolled .phone-link .icon-wrapper,
header.scrolled .phone-link .icon-wrapper svg {
    color: var(--accent);
    stroke: var(--accent);
}

header.scrolled .phone-link:hover {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
}

.phone-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper svg {
    width: 20px;
    height: 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-dark);
    width: 100vw;
    margin: 0;
    padding: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: transparent;
    pointer-events: none;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg .hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 6rem 8rem;
    position: relative;
    z-index: 2;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

.hero-tagline {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
    letter-spacing: -0.01em;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 2.5rem;
    max-width: 640px;
    opacity: 1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 4px 24px rgba(0, 0, 0, 0.7);
}

.hero-title .highlight {
    color: #ffffff;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    min-height: 44px; /* Touch target */
    text-decoration: none;
    border-radius: 2px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    text-transform: none;
    letter-spacing: 0;
    border: none;
    -webkit-tap-highlight-color: transparent;
}

.cta-button.primary {
    background: var(--accent);
    color: #ffffff;
    box-shadow: var(--shadow);
}

.cta-button.primary:hover {
    background: var(--accent-neon);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-button.secondary {
    background: var(--brown);
    color: #ffffff;
    border: 2px solid var(--brown);
}

.cta-button.secondary:hover {
    background: var(--brown-light);
    border-color: var(--brown-light);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Hero Wave Bottom */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 3;
    overflow: hidden;
}

.wave-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.wave-svg path {
    fill: var(--accent-neon);
}

.wave-svg path.wave-trim {
    fill: none;
    stroke: var(--brown);
    stroke-width: 3;
    vector-effect: non-scaling-stroke;
}

/* Section Styles */
section {
    padding: 4rem 2rem;
    position: relative;
    background: #F5F8F3;
}

#hero {
    background: transparent;
    padding: 0;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-label {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-dark);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Section */
.services {
    background: transparent;
    position: relative;
    padding: 0 !important;
}

/* Allow full-bleed ceramic bar to extend (services page) */
#services {
    overflow-x: visible;
}

/* ── Services Showcase (home page photo-card layout) ── */
.svc-showcase {
    width: 100%;
}

.svc-showcase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2.5rem;
    background: var(--accent-neon);
}

.svc-showcase-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.svc-showcase-all {
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.88;
    transition: opacity 0.2s;
}

.svc-showcase-all:hover {
    opacity: 1;
}

.svc-showcase-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background: var(--accent-neon);
}

.svc-showcase-more {
    font-size: 1.25rem;
    margin-right: 0.35em;
}

.svc-showcase-footer .svc-showcase-all {
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.88;
    transition: opacity 0.2s;
}

.svc-showcase-footer .svc-showcase-all:hover {
    opacity: 1;
}

.svc-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.svc-card {
    position: relative;
    height: 420px;
    background-size: cover;
    background-position: center;
    display: block;
    text-decoration: none;
    overflow: hidden;
}

.svc-card-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

.svc-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: -1px;
    background: var(--brown, #7B4A28);
    padding: 0.75rem 1.25rem;
    clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 0 100%);
}

.svc-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

@media (max-width: 1024px) {
    .svc-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .svc-showcase-grid {
        grid-template-columns: 1fr;
    }
    .svc-card {
        height: 300px;
    }
    .svc-showcase-header {
        padding: 1rem 1.25rem;
    }
    .svc-showcase-footer {
        padding: 1rem 1.25rem;
    }
    .svc-showcase-title {
        font-size: 1.35rem;
    }
}

@media (max-width: 480px) {
    .svc-card {
        height: 260px;
    }
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.services-title-wrapper {
    flex: 1;
}

.services-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    font-family: 'Inter', sans-serif;
}

.services-title-underline {
    width: 100px;
    height: 4px;
    background: var(--brown);
    margin-top: 0.5rem;
}

.services-cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent);
    color: #ffffff;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.services-cta-button:hover {
    background: var(--accent-neon);
    color: #ffffff;
    transform: translateY(-2px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 0;
    align-items: stretch;
}

.service-card {
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out backwards;
    background: #ffffff;
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.service-card-image {
    width: 100%;
    height: 160px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-color: #e8e8e8;
}

.service-image {
    width: 100%;
    height: 200px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

.service-card:hover .service-image {
    transform: none;
}

.service-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

/* Fixed-height header so pricing aligns across all cards */
.service-card-header {
    height: 3.25rem;
    flex-shrink: 0;
    margin-bottom: 0.35rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-neon);
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.service-title {
    color: var(--text-light);
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    font-family: 'Inter', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1.25rem 0;
    flex: 1;
}

.service-book-btn {
    display: inline-block;
    align-self: flex-start;
    margin-top: auto;
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    color: #ffffff;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.service-book-btn:hover {
    background: var(--accent-neon);
    color: #ffffff;
    transform: translateY(-2px);
}

.service-card-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.5rem;
}

.service-learn-more {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--accent);
    border-radius: 2px;
    transition: all 0.3s;
}

.service-learn-more:hover {
    background: var(--accent);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Service card footer (home page overview) */
.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.service-from {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.service-from strong {
    color: var(--accent-neon);
    font-size: 1.05rem;
}

/* "View Full Pricing" row below home services grid */
.services-view-all {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.services-view-all p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 600px) {
    .services-view-all {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Services Subtitle */
.services-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 0.75rem;
    text-align: center;
}

/* Auto Maintenance callout */
.services-maintenance-callout {
    margin-bottom: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(29, 92, 29, 0.08);
    border-left: 4px solid var(--accent-neon);
    border-radius: 2px;
}

.services-maintenance-callout p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Services Category Label */
.services-category-label {
    margin-bottom: 1.5rem;
}

.services-category-label h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.services-category-label p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* 4-column grid for vehicle packages */
.services-grid--4col {
    grid-template-columns: repeat(4, 1fr);
}

/* 2-column grid for correction and RV/boat */
.services-grid--2col {
    grid-template-columns: repeat(2, 1fr);
}

/* Featured service card */
.service-card--featured {
    background: #ffffff;
}

.service-card--featured .service-category {
    color: var(--accent-neon);
    font-weight: 700;
}

/* Pricing rows inside cards */
.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f5f5f5;
    border-radius: 2px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.price-label {
    color: var(--text-muted);
}

.price-value {
    font-weight: 700;
    color: var(--accent-neon);
    font-size: 1rem;
}

/* Tier-style pricing (RV/Boat) */
.service-pricing--tiers {
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.service-pricing--tiers .tier-row {
    margin-bottom: 0;
}

/* Feature list */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    flex: 1;
}

.service-features li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0.3rem 0;
    padding-left: 1.1rem;
    position: relative;
    line-height: 1.4;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--brown);
}

/* Upgrade note (e.g. "Most customers upgrade...") */
.service-upgrade-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-style: italic;
}

/* Duration label */
.service-duration {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 1rem;
    font-style: italic;
}

.service-duration:empty {
    margin-bottom: 0;
    min-height: 0;
}

/* Empty features list: reserves space for consistent button position */
.service-features:empty {
    flex: 1;
    min-height: 1rem;
}

/* Secondary sections (add-ons, corrections, rv/boat, maintenance) */
.services-secondary-section {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

@media (max-width: 480px) {
    .services-secondary-section {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    .services-secondary-cta {
        justify-content: center;
    }
    .services-secondary-cta .service-book-btn,
    .services-secondary-cta .service-learn-more {
        width: 100%;
        text-align: center;
    }
}

.services-secondary-header {
    margin-bottom: 0.75rem;
}

.services-secondary-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.services-secondary-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.services-secondary-cta {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
}

.services-secondary-cta .service-book-btn,
.services-secondary-cta .service-learn-more {
    margin: 0;
}

/* Add-on grid */
.addon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.addon-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 1rem 1.5rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 2px;
}

.addon-desc {
    flex: 1 1 100%;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-top: 0.25rem;
}

.addon-name {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.addon-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-neon);
    white-space: nowrap;
    margin-left: auto;
}

@media (max-width: 480px) {
    .addon-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .addon-price {
        margin-left: 0;
    }
}

/* Full-width ceramic bar (services page, under Add-On Services) */
.services-ceramic-bar {
    width: 100vw;
    max-width: 100vw;
    max-height: 150px;
    height: 150px;
    margin-top: 2rem;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background: url('../assets/images/tire.png') center / cover no-repeat;
    overflow: hidden;
}

@media (max-width: 768px) {
    .services-ceramic-bar {
        height: 120px;
        max-height: 120px;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-ceramic-bar {
        height: 100px;
        max-height: 100px;
        margin-top: 1rem;
    }
}

/* Paint Correction grid */
.correction-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .correction-grid {
        grid-template-columns: 1fr;
    }
}

.correction-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 2px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.correction-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.correction-card-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.35rem;
}

.correction-card-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.correction-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f5f5f5;
    border-radius: 2px;
}

/* Ceramic Coating Callout */
.ceramic-callout {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.ceramic-callout-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(rgba(28, 28, 30, 0.55), rgba(28, 28, 30, 0.55)), url('../assets/images/ceramic-coat.png') center / cover no-repeat;
    border-radius: 2px;
    color: #ffffff;
}

.ceramic-callout-text h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.ceramic-callout-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    max-width: 620px;
}

.ceramic-callout .cta-button.primary {
    background: #ffffff;
    color: #1c1c1e;
    white-space: nowrap;
    flex-shrink: 0;
}

.ceramic-callout .cta-button.primary:hover {
    background: rgba(255, 255, 255, 0.88);
}

.ceramic-callout-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    flex-shrink: 0;
}

.ceramic-callout .cta-button.ceramic-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.ceramic-callout .cta-button.ceramic-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: #ffffff;
}

/* RV & Boat grid */
.rv-boat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .rv-boat-grid {
        grid-template-columns: 1fr;
    }
}

.rv-boat-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 2px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.rv-boat-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.rv-boat-card-body h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.rv-boat-minimum {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1rem;
}

.rv-boat-tiers {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    overflow: hidden;
}

.tier-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.tier-row:last-child {
    border-bottom: none;
}

.tier-row span:first-child {
    color: var(--text-light);
}

.tier-row span:last-child {
    font-weight: 700;
    color: var(--accent-neon);
}

/* Maintenance Plans */
.maintenance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.maintenance-item {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.maintenance-item-image {
    width: 100%;
    height: 140px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-color: #e8e8e8;
}

.maintenance-item-body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.25rem;
    text-align: center;
}

.maintenance-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.maintenance-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-neon);
}

/* Full Width Photo Bar */
.pic-bar {
    width: 100%;
    line-height: 0;
    overflow: hidden;
    position: relative;
}

.pic-bar img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.pic-bar-badges {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 0 2rem;
    background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.55) 100%);
    line-height: 1.2;
}

.pic-bar-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8), 0 2px 6px rgba(0,0,0,0.5);
}

.pic-bar-stat-icon {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

.pic-bar-stat-label {
    font-weight: 600;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

@media (max-width: 768px) {
    .pic-bar img {
        height: 130px;
    }
    .pic-bar-badges {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .pic-bar img {
        height: 100px;
    }
    .pic-bar-badges {
        gap: 1.25rem;
        padding: 0 1rem;
    }
    .pic-bar-stat-label {
        font-size: 1rem;
    }
    .pic-bar-stat-icon {
        font-size: 1.5rem;
    }
}

/* Badge Bar */
.badge-bar {
    width: 100%;
    height: 60px;
    background: var(--accent-neon);
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-top: 4px solid var(--brown);
    border-bottom: 4px solid var(--brown);
}

.badge-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.badge-bar-content.animate-scroll {
    animation: scrollBadge 40s linear infinite;
    flex-wrap: nowrap;
    width: max-content;
    gap: 14rem;
    justify-content: flex-start;
    max-width: none;
}

.badge-bar-content.animate-scroll:hover {
    animation-play-state: paused;
}

.badge-item {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

.badge-item-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-item-icon .badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
}

.badge-item-icon .badge-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

/* Content Sections: Southern Legacy Detailing, LLC */
.content-sections-wrapper {
    background: #F5F8F3;
    padding: 4rem 0 5rem 0;
}

.content-sections {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Content section grid: used by About page */
.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 6rem;
}

.content-section .content-title {
    grid-column: 1;
}

.content-section .content-text {
    grid-column: 1;
}

.content-section .content-image {
    grid-column: 2;
    grid-row: 1 / -1;
}

.content-section-divider {
    width: 100%;
    max-width: 1400px;
    margin: 4rem auto 0;
    border: none;
    border-top: 1px solid var(--border-dark);
}

.content-image {
    position: relative;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.about-section .about-text {
    flex: 1;
}

.about-section .about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-section .about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.about-section .about-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.about-section .about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-neon);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.content-image-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.content-image-duo img {
    object-fit: cover;
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        display: flex;
    }

    /* Mobile: Header → Photo → Text Content */
    .about-section .about-text {
        display: contents;
    }
    .about-section .about-text h2 {
        order: 1;
        font-size: 2rem;
    }
    .about-section .about-image {
        order: 2;
        justify-content: center;
    }
    .about-section .about-text p {
        order: 3;
    }
    .about-section .about-text .btn-primary {
        order: 4;
    }
}

/* Before & After Section */
.before-after-section {
    background: var(--bg-card);
    padding: 6rem 2rem;
    position: relative;
}

.before-after-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-neon);
}

.before-after-wrap {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.before-after-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: center;
}

.before-after-header {
    text-align: left;
}

.before-after-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin: 0.5rem 0 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.before-after-title-accent {
    color: var(--accent-neon);
}

.before-after-title-underline {
    width: 80px;
    height: 4px;
    background: var(--brown);
    margin: 0 0 1.25rem 0;
}

.before-after-tagline {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin: 0;
}

.before-after-card {
    position: relative;
    overflow: hidden;
    border: 3px solid var(--border-dark);
    animation: fadeInUp 0.6s ease-out backwards;
    transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
}

.before-after-card:hover {
    border-color: var(--accent-neon);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
}

.before-after-card-inner {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.before-after-card-inner img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.before-after-card:hover .before-after-card-inner img {
    transform: scale(1.06);
}

.before-after-arrow {
    padding: 0 1.5rem;
    color: var(--accent-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.before-after-arrow svg {
    width: 40px;
    height: 40px;
    stroke: currentColor;
}

/* Motorcycles Section */
.motorcycles-section {
    background: var(--bg-card);
    padding: 6rem 2rem;
    position: relative;
}

.motorcycles-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.motorcycles-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0.5rem 0 1rem;
    letter-spacing: -0.02em;
}

.motorcycles-title-underline {
    width: 80px;
    height: 4px;
    background: var(--brown);
    margin: 0 auto 1.5rem;
}

.motorcycles-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.motorcycles-one-bike {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--accent-neon);
    margin: 1.25rem 0 0;
}

.motorcycles-triptych {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    border: 2px solid var(--accent-neon);
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

.motorcycles-panel {
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.5s ease-out backwards;
}

.motorcycles-panel:not(:last-child) {
    border-right: 1px solid var(--border-dark);
}

.motorcycles-panel-inner {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.motorcycles-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.motorcycles-panel:hover .motorcycles-image {
    transform: scale(1.05);
}


.motorcycles-caption {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-align: center;
    margin: 1.25rem auto 0;
    max-width: 400px;
    font-style: italic;
}

.content-text {
    padding: 2rem 0;
}

.content-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.content-text p:last-of-type {
    margin-bottom: 2.5rem;
}

.highlight-text {
    color: var(--accent-neon);
    font-weight: 600;
}

.content-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-neon);
    color: #ffffff;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.content-cta:hover {
    background: var(--accent-neon);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Full Width Bar Section */
.full-width-bar-wrapper {
    padding: 0;
    margin: 0;
    background: var(--bg-elevated);
    position: relative;
    overflow: hidden;
}

.full-width-bar {
    width: 100%;
    position: relative;
}

.full-width-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    max-height: 50vh;
    background: #2E7D2E;
}

.full-width-image img {
    width: 100%;
    height: auto;
    max-height: 50vh;
    display: block;
    object-fit: cover;
    object-position: center;
}

.full-width-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    z-index: 3;
    overflow: hidden;
}

.wave-svg-bottom {
    width: 100%;
    height: 100%;
    display: block;
}

.wave-svg-bottom path {
    fill: var(--bg-card);
}

/* About Section */

.about-teaser-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-teaser-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.about-teaser-text {
    flex: 1;
}

.about-teaser-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.about-teaser-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-neon);
    margin-bottom: 1.5rem;
}

.about-teaser-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.about-teaser-text a {
    color: var(--accent-neon);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.about-teaser-text a:hover {
    color: var(--accent);
}

.about-teaser-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.about-teaser-image img {
    max-width: 340px;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .about-teaser-container {
        flex-direction: column;
        display: flex;
    }

    /* Mobile: Header → Photo → Text Content */
    .about-teaser-text {
        display: contents;
    }
    .about-teaser-text h2 {
        order: 1;
        font-size: 2rem;
    }
    .about-teaser-image {
        order: 2;
        justify-content: center;
    }
    .about-teaser-subtitle {
        order: 3;
    }
    .about-teaser-text p {
        order: 4;
    }
    .about-teaser-text a {
        order: 5;
    }

    .about-teaser-image img {
        max-width: 250px;
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-top: 3rem;
}

.about-image-gallery {
    display: block;
    height: 500px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-video-wrap {
    position: relative;
    height: 100%;
}

.about-video-main {
    height: 100%;
}

.about-video-secondary {
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.about-video-wrap video,
.about-video-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image {
    border-radius: 2px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-image.main {
    grid-row: 1 / 3;
}

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

.about-image.main {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.about-image.secondary {
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.about-image:hover img {
    transform: none;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-muted);
}

.about-text .lead {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--accent-neon);
    font-weight: 700;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-dark);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--accent-neon);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Reviews Section */
.reviews {
    padding: 0;
}

.reviews-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: var(--bg-card) url('../assets/images/trailer.png') center / cover no-repeat;
    padding: 2.75rem 1.5rem;
}

.reviews-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    z-index: 0;
}

/* Ensure text is white on the dark overlay */
.reviews-section .section-label,
.reviews-section .section-title {
    color: #ffffff;
}

.reviews-section .section-label {
    border-bottom-color: rgba(255, 255, 255, 0.25);
}

.reviews-section .reviews-main-section {
    position: relative;
    z-index: 1;
}

.reviews-main-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.reviews-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

@media (max-width: 768px) {
    .reviews-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        display: flex;
        flex-direction: column;
    }
    /* Mobile: Header → Photo → Text Content */
    .reviews-text {
        display: contents;
    }
    .reviews-title {
        order: 1;
    }
    .reviews-image {
        order: 2;
    }
    .reviews-intro {
        order: 3;
    }
    .reviews-content .leave-review-btn {
        order: 4;
    }
}

.reviews-text {
    position: relative;
    z-index: 2;
    text-align: left;
    padding-left: 1.5rem;
}

.reviews-intro {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0 0 1.25rem 0;
    max-width: 420px;
}

/* Reviews carousel – minimal: fade only, subtle dots */
.reviews-carousel-wrapper {
    position: relative;
}

.reviews-cta-block {
    padding: 0.75rem 0;
}
.reviews-cta-block p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}
.reviews-cta-block .leave-review-btn {
    display: inline-block;
}

.reviews-slides {
    position: relative;
    min-height: 190px;
}

.reviews-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.reviews-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.reviews-slide .reviews-stars {
    margin-bottom: 1rem;
}

.reviews-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.reviews-carousel-prev,
.reviews-carousel-next {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-carousel-prev:hover,
.reviews-carousel-next:hover {
    color: var(--text-light);
}

.reviews-carousel-dots {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.reviews-carousel-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    min-height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    padding: 0;
    transition: background 0.25s ease, transform 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.reviews-carousel-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.reviews-carousel-dot.active {
    background: var(--text-light);
    transform: scale(1.2);
}

.reviews-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
    font-family: 'Inter', sans-serif;
}

.reviews-stars {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.reviews-stars svg {
    width: 18px;
    height: 18px;
    color: #ffc107;
}

.reviews-quote {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.25rem;
    font-style: italic;
    max-width: 500px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.reviews-customer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.customer-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.customer-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-light);
}

.customer-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.customer-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reviews-decorations-left {
    position: absolute;
    bottom: -2rem;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.decoration-line {
    width: 40px;
    height: 2px;
    background: var(--brown);
}


.leave-review-btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--accent-neon);
    color: #ffffff;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid var(--accent-neon);
    transition: all 0.3s;
}

.leave-review-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
    transform: translateY(-2px);
}

.reviews-image {
    position: relative;
    z-index: 1;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.reviews-image img,
.reviews-image video {
    width: 100%;
    height: auto;
    display: block;
}

.reviews-image video {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    max-height: 240px;
}

/* Map Section */
.map-section {
    background: var(--bg-card);
    padding: 4rem 2rem;
}

.location-hours {
    text-align: center;
    margin-bottom: 2rem;
}

.location-hours-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0 0 0.5rem 0;
}

.location-hours-line {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0.25rem 0;
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 500px;
    border: 4px solid var(--accent-neon);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Section */

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: stretch;
}

/* Contact section only: do not apply to header */
.contact-container .contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    justify-content: flex-start;
    align-items: flex-start;
}

/* Contact social links */
.contact-social {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.contact-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-social-link:hover {
    color: var(--accent-neon);
}

.contact-social-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--brown);
    transition: color 0.2s;
}

.contact-social-link:hover svg {
    color: var(--accent-neon);
}

.contact-tagline {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

.contact-book-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 2rem;
    background: var(--brown);
    color: #ffffff;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid var(--brown);
    transition: all 0.3s;
    width: 100%;
    text-align: center;
}

.contact-book-btn:hover {
    background: var(--brown-light);
    border-color: var(--brown-light);
    color: #ffffff;
    transform: translateY(-2px);
}

.map-container-contact {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--accent-neon);
}

.map-container-contact iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 0 0 0 1.25rem;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
    border-left: 4px solid var(--brown);
}


.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 0;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-light);
}

.contact-details {
    text-align: left;
}

.contact-details h3 {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: left;
}

.contact-details p {
    color: var(--text-muted);
    line-height: 1.8;
    text-align: left;
}

.contact-details a {
    color: var(--accent-neon);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--accent);
}

.contact-form {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid var(--border-dark);
    border-top: 4px solid var(--brown);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-dark);
    border-radius: 2px;
    font-size: 16px; /* Prevents iOS zoom on focus */
    font-family: inherit;
    transition: all 0.3s;
    background: var(--bg-elevated);
    color: var(--text-light);
    min-height: 44px; /* Touch target */
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-neon);
    background: var(--bg-card);
    box-shadow: 0 0 0 3px rgba(29, 92, 29, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-button {
    background: var(--accent);
    color: #fff;
    padding: 1rem 2.5rem;
    border: 2px solid var(--accent);
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    text-transform: none;
    letter-spacing: 0;
}

.submit-button:hover {
    background: var(--accent-neon);
    border-color: var(--accent-neon);
    color: #ffffff;
}

/* Packages page CTA – distinct from footer */
.packages-cta-section {
    padding: 4rem 2rem;
    background: var(--bg-elevated);
    text-align: center;
    border-bottom: 1px solid var(--border-dark);
}

.packages-cta-section .section-subtitle {
    margin-bottom: 2rem;
}

.packages-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .packages-cta-section {
        padding: 3rem 1.25rem;
    }
    .packages-cta-section .section-title {
        font-size: 1.75rem;
    }
    .packages-cta-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .packages-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    .packages-cta-buttons .cta-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .packages-cta-section {
        padding: 2.5rem 1rem;
    }
    .packages-cta-section .section-title {
        font-size: 1.5rem;
    }
}

/* Footer */
footer {
    background: #163E16;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
    border-top: 5px solid var(--brown);
}

.footer-content {
    max-width: 1120px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-left {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 80px;
    width: auto;
    max-height: 80px;
    object-fit: contain;
    display: block;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 300px;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column a,
.footer-column p {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #ffffff;
}

/* Footer social icons */
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.25s;
    text-decoration: none;
}

.footer-social-link:hover {
    background: var(--brown);
    border-color: var(--brown);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom-social {
    display: flex;
    gap: 0.6rem;
}

.footer-bottom-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
    text-decoration: none;
}

.footer-bottom-social a:hover {
    color: #ffffff;
}

.footer-bottom-social svg {
    width: 17px;
    height: 17px;
}

.footer-legal-link {
    color: inherit;
    text-decoration: none;
}

.footer-legal-link:hover {
    color: inherit;
}

.footer-admin-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-admin-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .content-image-duo {
        grid-template-columns: 1fr;
    }

    .before-after-wrap {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .before-after-header {
        text-align: center;
    }

    .before-after-title-underline {
        margin: 0 auto 1.25rem;
    }

    .before-after-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .before-after-arrow {
        padding: 1rem 0;
        transform: rotate(90deg);
    }

    .before-after-title {
        font-size: 2.25rem;
    }

    .motorcycles-triptych {
        grid-template-columns: 1fr;
    }

    .motorcycles-panel:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid var(--border-dark);
    }

    .about-content {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }

    .about-image-gallery {
        height: 400px;
        order: 1;
    }

    .about-content .about-text {
        order: 2;
    }

    .about-video-wrap {
        height: 400px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-right {
        justify-content: flex-start;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .services-header {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }

    .services-main-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid--4col {
        grid-template-columns: repeat(2, 1fr);
    }

    .badge-bar-vehicles {
        padding: 2rem 1rem;
    }

    .badge-item-icon {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 1120px) {
    .nav-menu {
        gap: 0.75rem;
    }

    .nav-menu a {
        font-size: 0.9rem;
        padding: 0.4rem 0.35rem;
    }

    .header-container {
        gap: 0.5rem;
        padding: 0 0.75rem;
    }

    .phone-link {
        padding: 0.45rem 0.85rem;
        font-size: 0.875rem;
    }

    .logo-container img {
        max-width: 220px;
        height: 88px;
        max-height: 88px;
    }
}

@media (max-width: 1024px) {
    .phone-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 1100px) {
    header .contact-info {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
        order: 2;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        max-width: 85vw;
        height: calc(100vh - 80px);
        background: #163E16;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
        width: 100%;
        padding: 0.75rem 0;
        color: #ffffff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
    header.scrolled .nav-menu a {
        color: #ffffff;
    }

    .nav-menu-logo {
        display: block;
        margin-top: auto;
        padding-top: 0.1rem;
        width: 100%;
    }
    .nav-menu-logo a {
        display: block;
        border-bottom: none;
        padding: 0;
    }
    .nav-menu-logo img {
        max-width: 180px;
        height: auto;
        display: block;
    }
}

@media (max-width: 768px) {
    .logo-container img {
        height: 80px;
        max-height: 80px;
    }

    .logo-container {
        margin-left: 0;
        flex-shrink: 0;
    }

    .header-container {
        flex-wrap: nowrap;
        padding: 0 1rem;
        position: relative;
    }

    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }

    .nav-menu a {
        font-size: 1rem;
    }

    body.menu-open {
        overflow: hidden;
    }

    .hero {
        align-items: center;
        justify-content: center;
        padding-top: 0;
        min-height: 100vh;
    }

    .hero-content {
        padding: 2rem 1.5rem;
        margin-top: 0;
        width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-top: 0;
        margin-bottom: 2rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1.25rem;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-grid--4col {
        grid-template-columns: 1fr;
    }

    .addon-grid {
        grid-template-columns: 1fr;
    }

    .services-grid--2col {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-width: 0;
    }

    .service-card-body {
        min-width: 0;
    }

    /* Allow header to grow so pricing doesn't cut off title */
    .service-card-header {
        height: auto;
        min-height: 3.25rem;
    }

    .service-title {
        -webkit-line-clamp: unset;
        line-clamp: unset;
        overflow: visible;
        display: block;
    }

    .maintenance-grid {
        grid-template-columns: 1fr;
    }

    .maintenance-item-image {
        height: 120px;
    }

    .ceramic-callout-inner {
        flex-direction: column;
        text-align: center;
    }

    .ceramic-callout-text p {
        max-width: 100%;
    }

    .badge-bar {
        height: auto;
        padding: 1rem 0;
    }

    .badge-bar-content {
        flex-direction: row;
        gap: 1.5rem;
        padding: 0 1rem;
        flex-wrap: nowrap;
        width: auto;
        min-width: min-content;
    }

    .badge-bar-content.animate-scroll {
        animation: scrollBadge 30s linear infinite;
        gap: 10rem;
    }

    .badge-item {
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .reviews-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        display: flex;
        flex-direction: column;
    }

    .reviews-text {
        order: 2;
        text-align: center;
        padding-left: 0;
    }

    .reviews-image {
        max-width: 500px;
        margin: 0 auto;
        order: 1;
    }

    .reviews-intro {
        margin-left: auto;
        margin-right: auto;
    }

    .reviews-title {
        font-size: 2rem;
    }

    .reviews-main-section {
        padding: 1.5rem 1rem;
    }

    .reviews-section {
        padding: 2rem 1rem;
    }

    .about-image-gallery {
        height: 320px;
    }

    .about-image.main {
        grid-row: 1;
    }

    .about-video-wrap {
        height: 300px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .map-container-contact {
        height: 300px;
    }

    .contact-container .contact-info {
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    /* Mobile: center footer content only */
    footer .footer-content {
        text-align: center;
    }
    footer .footer-main {
        align-items: center;
        justify-items: center;
        text-align: center;
    }
    footer .footer-left {
        align-items: center;
    }
    footer .footer-logo {
        display: flex;
        justify-content: center;
    }
    footer .footer-logo img {
        margin-left: auto;
        margin-right: auto;
    }
    footer .footer-tagline {
        margin-left: auto;
        margin-right: auto;
    }
    footer .footer-right {
        justify-content: center;
    }
    footer .footer-links {
        justify-items: center;
        text-align: center;
        width: 100%;
    }
    footer .footer-column {
        text-align: center;
    }
    footer .footer-column h4,
    footer .footer-column a,
    footer .footer-column p {
        text-align: center;
    }
    footer .footer-social {
        justify-content: center;
    }
    footer .footer-bottom {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 1rem;
    }
    footer .footer-bottom-social {
        justify-content: center;
    }

    .badge-bar-vehicles {
        padding: 1.5rem 1rem;
    }

    .badge-bar-vehicles .badge-bar-content {
        flex-direction: row;
        gap: 2rem;
        flex-wrap: nowrap;
        width: auto;
        min-width: min-content;
    }

    .badge-bar-vehicles .badge-bar-content.animate-scroll {
        animation: scrollBadge 30s linear infinite;
        gap: 6rem;
    }

    .badge-item-icon {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
        min-width: 140px;
        flex-shrink: 0;
    }

    .badge-item-icon .badge-text {
        font-size: 0.9rem;
        white-space: nowrap;
    }

    /* Mobile: center everything (except footer - has its own block below) */
    .section-container,
    .section-header,
    .section-title,
    .section-subtitle,
    .content-section .content-title,
    .content-section .content-text,
    .about-section .about-text,
    .about-teaser-text,
    .services-header,
    .services-secondary-header,
    .services-secondary-header h3,
    .services-secondary-header p,
    .contact-info,
    .contact-item .contact-details,
    .before-after-header,
    .before-after-title,
    .before-after-tagline,
    .motorcycles-title,
    .reviews-intro,
    .reviews-title,
    .content-image-duo,
    .badge-bar-content {
        text-align: center;
    }
    .section-header,
    .services-header,
    .services-secondary-header,
    .about-container,
    .about-teaser-container,
    .reviews-content,
    .contact-container {
        align-items: center;
        justify-content: center;
    }
    .section-container,
    .content-sections,
    .about-section,
    .contact-container .contact-info {
        margin-left: auto;
        margin-right: auto;
    }
    .service-card-body,
    .maintenance-item-body,
    .service-card-header,
    .service-pricing,
    .addon-grid,
    .ceramic-callout-inner {
        text-align: center;
    }
    .service-card,
    .maintenance-item {
        align-items: center;
    }
}

@media (max-width: 480px) {
    section {
        padding: 4rem 1rem;
    }

    .hero {
        min-height: 100vh;
        height: 100vh;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        padding: 2rem 1rem;
        width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 1.75rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        align-items: center;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .service-card-body {
        padding: 1.25rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-grid--4col {
        grid-template-columns: 1fr;
    }

    .services-header {
        padding: 0 1rem;
    }

    .services-main-title {
        font-size: 1.5rem;
    }

    .services-cta-button {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .content-title {
        font-size: 1.5rem;
    }

    .content-text p {
        font-size: 0.95rem;
    }

    .before-after-title {
        font-size: 1.75rem;
    }

    .before-after-tagline {
        font-size: 0.95rem;
    }

    .badge-bar-content {
        padding: 0.5rem 1rem;
        flex-wrap: nowrap;
    }

    .badge-bar-content.animate-scroll {
        animation: scrollBadge 30s linear infinite;
    }

    .badge-item {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .badge-item-icon {
        padding: 0.75rem;
        gap: 0.5rem;
        min-width: 120px;
        flex-shrink: 0;
    }

    .badge-item-icon .badge-text {
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .motorcycles-section {
        padding: 4rem 1rem;
    }

    .motorcycles-title {
        font-size: 1.75rem;
    }

    .motorcycles-panel-inner {
        aspect-ratio: 3 / 4;
    }

    .about-text {
        padding: 2rem 1rem;
    }

    .about-video-wrap {
        height: 250px;
    }

    .reviews-main-section {
        padding: 1rem 0.75rem;
    }

    .reviews-section {
        padding: 1.5rem 0.75rem;
    }


    .reviews-title {
        font-size: 1.25rem;
    }

    .reviews-quote {
        font-size: 0.9rem;
    }

    .reviews-image {
        max-width: 100%;
    }

    .reviews-image video {
        aspect-ratio: 1 / 1;
        max-height: 160px;
    }

    .contact-form {
        padding: 2rem 1rem;
    }

    .contact-item {
        gap: 1rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-details h3 {
        font-size: 1rem;
    }

    .contact-details p {
        font-size: 0.9rem;
    }

    .map-container-contact {
        height: 250px;
        margin-top: 1.5rem;
    }

    .footer-content {
        padding: 2rem 1rem 1.5rem;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }

    .footer-links-column h4 {
        font-size: 1rem;
    }

    .footer-links-column a {
        font-size: 0.9rem;
    }

    .nav-menu {
        width: 100%;
        top: 70px;
        height: calc(100vh - 70px);
    }

    .nav-menu a {
        font-size: 1rem;
    }

    .phone-link span {
        font-size: 0.9rem;
    }
}

/* Very small phones (360px and below) */
@media (max-width: 360px) {
    section {
        padding: 3rem 0.75rem;
    }

    .hero-content {
        padding: 1.5rem 0.75rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .svc-showcase-header,
    .svc-showcase-footer {
        padding: 0.75rem 1rem;
    }

    .svc-showcase-title {
        font-size: 1.15rem;
    }

    .svc-card {
        height: 220px;
    }

    .badge-item {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }

    .contact-form {
        padding: 1.5rem 0.75rem;
    }

    .footer-content {
        padding: 1.5rem 0.75rem 1rem;
    }

    .about-section {
        padding: 0 0.75rem;
    }
}

/* ── Individual Service Pages ── */
.service-hero {
    position: relative;
    margin-top: 72px;
    height: 380px;
    overflow: hidden;
}

.service-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.service-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.25) 100%);
    display: flex;
    align-items: center;
}

.service-hero-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-hero-content h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.service-hero-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 520px;
    line-height: 1.6;
    margin: 0;
}

.service-page-body {
    background: #F5F8F3;
    padding: 6rem 2rem 4rem;
}

/* Breadcrumbs */
.breadcrumbs {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--accent);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--accent-neon);
    text-decoration: underline;
}

.breadcrumb-sep {
    margin: 0 0.4rem;
    color: var(--text-dim);
}

.breadcrumbs [aria-current="page"] {
    color: var(--text-light);
    font-weight: 500;
}

.service-page-grid {
    padding-top: 8rem;
}

.service-page-grid .breadcrumbs {
    max-width: 1100px;
    margin-bottom: 0.5rem;
}

.service-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-content:has(.page-layout) {
    max-width: 1100px;
}

/* Page layout: 2-column grid (interior/exterior pages) */
.page-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: stretch;
    padding-top: 24px;
    padding-bottom: 60px;
}

.page-layout .left-column {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.page-layout .left-column h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0 0 16px;
}

.page-layout .left-column > p {
    margin-bottom: 16px;
}

.page-layout .left-column .image-wrapper {
    margin-top: 20px;
    flex: 1;
    min-height: 200px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.page-layout .left-column .image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.page-layout .whats-included {
    margin-top: 40px;
}

.page-layout .whats-included h2 {
    margin: 0 0 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.page-layout .whats-included .service-features {
    margin-bottom: 0;
}

.page-layout .cta-wrapper {
    margin-top: 24px;
}

.page-layout .cta-wrapper .service-book-btn {
    display: inline-block;
}

.page-layout .right-column .pricing-card {
    position: sticky;
    top: 120px;
    margin: 0;
}

.page-layout .right-column .pricing-card-follow {
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .page-layout {
        grid-template-columns: 1fr;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .page-layout .right-column .pricing-card {
        position: relative;
        top: 0;
    }

    /* Mobile: Header → Photo → Text */
    .page-layout .left-column {
        display: flex;
        flex-direction: column;
    }
    .page-layout .left-column h1 {
        order: 1;
    }
    .page-layout .left-column .image-wrapper {
        order: 2;
    }
    .page-layout .left-column > p {
        order: 3;
    }
}

/* Intro row: description + features left, pricing right */
.service-intro-row {
    display: flex;
    gap: 2.5rem;
    align-items: stretch;
    margin-bottom: 1rem;
}

.service-intro-text,
.service-intro-row > p {
    flex: 1;
    min-width: 0;
}

.service-intro-text > p:first-child {
    margin-bottom: 1rem;
}

.service-intro-text h2 {
    margin: 1.5rem 0 0.75rem;
}

.service-intro-text h2:first-child {
    margin-top: 0;
}

.service-intro-row .service-detail-pricing {
    flex: 0 0 min(280px, 35%);
    margin: 0;
    align-self: stretch;
    min-width: 220px;
}

/* Package row: same layout for multi-package pages */
.service-package-row {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.service-package-row:first-of-type {
    margin-top: 0;
}

.service-package-row .service-package-text {
    flex: 1;
}

.service-package-row .service-package-text h2 {
    margin-top: 0;
}

.service-package-row .service-detail-pricing {
    flex: 0 0 min(260px, 32%);
    margin: 0;
    min-width: 220px;
}

@media (max-width: 768px) {
    .service-intro-row,
    .service-package-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    .service-intro-row .service-detail-pricing,
    .service-package-row .service-detail-pricing {
        flex: none;
        width: 100%;
        min-width: 0;
    }
}

.service-detail-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 2rem 0 1rem;
}

.service-detail-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-detail-content a {
    color: var(--accent);
    text-decoration: none;
}

.service-detail-content a:hover {
    color: var(--accent-neon);
    text-decoration: underline;
}

.service-detail-content .service-book-btn {
    color: #ffffff;
}

.service-detail-content .service-book-btn:hover {
    color: #ffffff;
    text-decoration: none;
}

.service-detail-pricing {
    background: var(--bg-dark);
    background-image: 
        radial-gradient(ellipse at 20% 20%, rgba(255,255,255,0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0,0,0,0.1) 0%, transparent 50%);
    border-radius: 8px;
    padding: 1.75rem 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-lg);
    border: none;
}

.service-detail-pricing h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-detail-pricing p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.service-detail-pricing .price-duration {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.service-detail-pricing .price-disclaimer {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.service-detail-pricing a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
}

.service-detail-pricing a:hover {
    color: #ffffff;
}

.service-detail-pricing .price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.service-detail-pricing .price-row .price-label {
    color: rgba(255, 255, 255, 0.9);
}

.service-detail-pricing .price-value {
    font-weight: 700;
    color: #ffffff;
    font-size: 1.1rem;
}

/* Service detail row: image left, What's Included right */
.service-detail-row {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    margin: 0.75rem 0 2rem;
}

.service-detail-image {
    flex: 1;
    min-width: 0;
    max-width: 48%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 320px;
}

.service-detail-included {
    flex: 1;
    min-width: 0;
    max-width: 52%;
}

.service-detail-included h2 {
    margin: 0 0 1rem;
}

.service-detail-included .service-book-btn {
    display: inline-block;
    margin-top: 1.25rem;
}

@media (max-width: 768px) {
    .service-detail-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    .service-detail-image,
    .service-detail-included {
        max-width: none;
    }
    .service-detail-image img {
        max-height: 280px;
    }
}

.service-detail-faq {
    margin-top: 3rem;
}

.service-detail-content:has(.page-layout) .service-detail-faq {
    margin-top: 2rem;
}

.service-detail-faq h2 {
    margin-bottom: 1.5rem;
}

.service-detail-faq details {
    background: #ffffff;
    border: 1px solid var(--border-dark);
    border-radius: 4px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.service-detail-faq summary {
    padding: 1rem 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    list-style: none;
}

.service-detail-faq summary::-webkit-details-marker {
    display: none;
}

.service-detail-faq summary::after {
    content: '+';
    float: right;
    font-size: 1.25rem;
    color: var(--accent);
}

.service-detail-faq details[open] summary::after {
    content: '−';
}

.service-detail-faq details p {
    padding: 0 1.25rem 1.25rem;
    margin: 0;
    font-size: 0.95rem;
}

.service-detail-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
}

.service-detail-cta .service-book-btn {
    display: inline-block;
}

@media (max-width: 768px) {
    .service-hero {
        height: 280px;
    }
    .service-hero-content h1 {
        font-size: 2.25rem;
    }
    .service-page-body {
        padding: 4rem 1.25rem 2.5rem;
    }
    .breadcrumbs {
        margin-bottom: 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .service-hero {
        height: 240px;
    }
    .service-hero-content h1 {
        font-size: 1.75rem;
    }
    .service-hero-content p {
        font-size: 0.9rem;
    }
    .service-page-body {
        padding: 3.5rem 1rem 2rem;
    }
    .breadcrumbs {
        font-size: 0.8rem;
    }
}
