/* 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: 60% 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 1px 3px rgba(0, 0, 0, 0.95),
        0 2px 12px rgba(0, 0, 0, 0.8),
        0 4px 32px rgba(0, 0, 0, 0.65);
    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 1px 3px rgba(0, 0, 0, 0.95),
        0 2px 10px rgba(0, 0, 0, 0.85),
        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%;
    background: linear-gradient(180deg, var(--accent-neon) 50%, var(--bg-elevated) 50%);
}

.svc-showcase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2.5rem;
    background: transparent;
}

.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: flex-end;
    padding: 1.25rem 2.5rem;
    background: transparent;
}

.svc-showcase-more {
    font-size: clamp(1.5rem, 2.5vw, 1.85rem);
    margin-right: 0.35em;
    color: var(--accent-neon);
    font-weight: 900;
}

.svc-showcase-footer .svc-showcase-all {
    color: var(--text-light);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 1;
    transition: color 0.2s;
}

.svc-showcase-footer .svc-showcase-all:hover {
    color: var(--accent-neon);
}

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

.svc-card {
    position: relative;
    height: 480px;
    display: block;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.svc-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 0;
}

.svc-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.08);
    transition: background 0.35s ease;
    z-index: 1;
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    z-index: 2;
}

.svc-card:hover .svc-card-bg {
    transform: scale(1.06);
}

.svc-card:hover .svc-card-overlay {
    background: rgba(0, 0, 0, 0.22);
}

.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%);
    transition: background 0.35s ease, padding 0.35s ease;
    z-index: 2;
}

.svc-card:hover .svc-card-content {
    background: var(--accent-neon);
    padding: 0.9rem 1.35rem;
}

.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: 340px;
    }
    .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%;
    aspect-ratio: 16 / 12;
    min-height: 0;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Vehicle cards: fill container, no white border */
.service-card-image--interior,
.service-card-image--exterior,
.service-card-image--full-detail,
.service-card-image--premium {
    background-size: cover;
    background-position: center center;
}

/* Paint correction (1-Step & 2-Step): full width, equal height, fill with crop (cover) */
.service-card-image--paint-correction,
.service-card-image--two-step {
    width: 100%;
    aspect-ratio: auto;
    height: 260px;
    background-size: 92%;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #e8e8e8;
}

/* RV & Boat: full width of card, equal height, fill with crop (cover) */
.service-card-image--rv,
.service-card-image--boat {
    width: 100%;
    aspect-ratio: auto;
    height: 160px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.service-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 0;
    flex-shrink: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #e8e8e8;
}

.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);
}

/* Slightly wider container for Paint Correction cards */
.services-secondary-section--wide {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.services-section-inner--wide {
    max-width: 1640px;
    margin-left: auto;
    margin-right: auto;
}

/* Add-On Services follows ceramic bar; bar replaces horizontal divider */
.services-ceramic-bar + .services-secondary-section {
    border-top: none;
    padding-top: 2rem;
    margin-top: 0;
}

@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%;
    aspect-ratio: 16 / 12;
    min-height: 0;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.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: 120px;
    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: 95px;
    }
    .pic-bar-badges {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .pic-bar img {
        height: 80px;
    }
    .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: SEE / hero / THE DIFFERENCE / before-after pairs */
.content-sections-wrapper.see-the-difference-section {
    background: transparent;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.content-sections-wrapper.see-the-difference-section::before {
    display: none;
}

#content-sections.see-the-difference-section {
    padding: 0;
    background: transparent;
}

#reviews.reviews {
    padding: 0;
    background: transparent;
}

.content-sections-wrapper {
    background: #ececec;
    padding: 3.5rem 0 4.5rem;
    position: relative;
}

.content-sections-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-neon) 0%, var(--brown) 100%);
    z-index: 1;
}

.see-the-difference-section .work-showcase {
    position: relative;
}

.see-the-difference-section .work-showcase-inner {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.28fr);
    max-width: 1280px;
    padding: 2rem 2rem 2.25rem;
    gap: 2rem 2.75rem;
    align-items: center;
}

.see-the-difference-section .work-showcase-copy {
    max-width: 26rem;
}

.see-the-difference-section .work-showcase-visuals {
    align-items: stretch;
    gap: 0.75rem;
    width: 100%;
}

.see-the-difference-section .work-showcase-hero {
    width: 100%;
}

.see-the-difference-section .work-showcase-hero img {
    width: 100%;
    height: clamp(175px, 18vw, 235px);
}

.see-the-difference-section .work-showcase-pairs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    width: 100%;
}

.see-the-difference-section .work-ba-stack {
    display: contents;
}

.see-the-difference-section .work-ba-card {
    width: 100%;
}

.see-the-difference-section .work-ba-card-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
}

.work-showcase-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.work-showcase-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.work-showcase-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
}

.work-showcase-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 2rem 3rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 42%);
    gap: 2.5rem 3rem;
    align-items: center;
}

.work-showcase-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.work-showcase-visuals {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.85rem;
    width: 100%;
}

.work-showcase-word,
.work-showcase-phrase {
    margin: 0;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: left;
    color: var(--text-light);
}

.see-the-difference-section .work-showcase-word,
.see-the-difference-section .work-showcase-phrase {
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.work-showcase-word::after,
.work-showcase-phrase::after {
    content: '';
    display: block;
    width: 2.5rem;
    height: 3px;
    background: var(--brown);
    margin: 0.6rem 0 0;
    border-radius: 2px;
}

.work-showcase-phrase {
    margin-top: 0.35rem;
}

.work-showcase-text {
    margin: 1.25rem 0 0;
    max-width: 36rem;
}

.work-showcase-text p {
    margin: 0 0 0.85rem;
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
}

.work-showcase-text p:last-child {
    margin-bottom: 0;
}

.see-the-difference-section .work-showcase-text p {
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.see-the-difference-section .work-showcase-word::after,
.see-the-difference-section .work-showcase-phrase::after {
    background: #ffffff;
}

.content-sections {
    max-width: none;
    margin: 0;
    padding: 0;
}

.work-showcase {
    width: 100%;
    --work-photo-gap: 0.5rem;
    --work-photo-height: clamp(100px, 11vw, 140px);
    --work-photo-width: calc(var(--work-photo-height) * 2 / 3);
    --work-pair-width: calc(var(--work-photo-width) * 2 + var(--work-photo-gap));
    --work-hero-width: var(--work-pair-width);
    --work-hero-height: clamp(140px, 16vw, 190px);
}

.work-showcase-hero {
    margin: 0;
    width: var(--work-hero-width);
    max-width: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.06);
    animation: fadeInUp 0.7s ease-out backwards;
}

.work-showcase-hero img {
    width: 100%;
    height: var(--work-hero-height);
    display: block;
    object-fit: cover;
    object-position: center;
}

.work-showcase-pairs {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.85rem;
    width: 100%;
    animation: fadeInUp 0.7s ease-out 0.15s backwards;
}

.work-showcase-cta {
    display: inline-block;
    margin-top: 1.5rem;
    text-decoration: none;
    color: #ffffff;
    transition: opacity 0.2s ease;
}

.work-showcase-cta:hover {
    opacity: 0.9;
}

.work-showcase-cta-text {
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 0.25em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.work-ba-stack {
    display: grid;
    grid-template-columns: var(--work-photo-width) var(--work-photo-width);
    gap: var(--work-photo-gap);
    width: var(--work-pair-width);
    max-width: 100%;
}

.work-ba-card {
    margin: 0;
    width: var(--work-photo-width);
    max-width: 100%;
    position: relative;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}

.work-ba-card-img {
    position: relative;
    width: var(--work-photo-width);
    height: var(--work-photo-height);
    max-width: 100%;
    overflow: hidden;
}

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

.work-ba-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: rgba(29, 92, 29, 0.2);
}

.work-ba-card:hover .work-ba-card-img img {
    transform: scale(1.04);
}

.work-ba-label {
    position: absolute;
    bottom: 0.7rem;
    left: 0.7rem;
    padding: 0.35rem 0.7rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(0, 0, 0, 0.62);
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.work-ba-label--after {
    background: var(--accent-neon);
}

@media (max-width: 900px) {
    .work-showcase {
        --work-photo-height: clamp(90px, 22vw, 130px);
    }

    .see-the-difference-section .work-showcase-inner {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .see-the-difference-section .work-showcase-copy {
        max-width: none;
    }

    .see-the-difference-section .work-showcase-pairs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .see-the-difference-section .work-showcase-hero img {
        height: clamp(160px, 38vw, 220px);
    }

    .work-showcase-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .work-showcase-visuals {
        align-items: center;
    }

    .work-showcase-pairs {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .content-sections-wrapper {
        padding: 2.75rem 0 3.25rem;
    }

    .see-the-difference-section {
        padding: 0;
    }

    .work-showcase-inner {
        padding: 1.75rem 1.25rem 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;
}

.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;
    }
}

/* 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: 5.5rem 2.5rem;
    min-height: 520px;
}

.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: 4rem;
    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: 2rem;
}

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

/* 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: 2.75rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.25rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    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: 1rem 2.25rem;
    background: var(--accent-neon);
    color: #ffffff;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 700;
    font-size: 1.05rem;
    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: 16 / 10;
    object-fit: cover;
    min-height: 360px;
    max-height: 480px;
}

/* 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 {
    position: relative;
    overflow: hidden;
    background: #1a1a1a url('../assets/images/contact-bg.png?v=20260714') center / cover no-repeat;
    padding: 4.5rem 2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85), 0 1px 2px rgba(0, 0, 0, 0.9);
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 10, 0.65);
    z-index: 0;
}

.contact > .section-container {
    position: relative;
    z-index: 1;
}

.contact .section-title {
    color: #ffffff;
}

.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.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: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-social-link:hover {
    color: #ffffff;
}

.contact-social-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #ffffff;
    transition: color 0.2s;
}

.contact-social-link:hover svg {
    color: #ffffff;
}

.contact-tagline {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    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 .contact-item {
    border-left-color: rgba(255, 255, 255, 0.45);
}

.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 section: SVGs use currentColor — force white */
.contact .contact-icon,
.contact .contact-social-link,
.contact .contact-social-link svg {
    color: #ffffff;
}

.contact .contact-icon svg {
    stroke: #ffffff;
    color: #ffffff;
}

.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 .contact-details h3 {
    color: #ffffff;
}

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

.contact .contact-details p {
    color: rgba(255, 255, 255, 0.78);
}

.contact .contact-details a {
    color: #ffffff;
}

.contact .contact-details a:hover {
    color: rgba(255, 255, 255, 0.85);
}

.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;
    }

    .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: 640px;
        margin: 0 auto;
        order: 1;
    }

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

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

    .reviews-main-section {
        padding: 2rem 1.25rem;
    }

    .reviews-section {
        padding: 4rem 1.5rem;
        min-height: auto;
    }

    .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: 1.5rem 1rem;
    }

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


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

    .reviews-intro {
        font-size: 1.05rem;
    }

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

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

    .reviews-image video {
        aspect-ratio: 16 / 10;
        min-height: 220px;
        max-height: 280px;
    }

    .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;
    padding: 0;
    background: transparent;
}

.service-hero picture {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.service-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    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;
    }
}

/* ── Individual service page template layout (title → pricing → CTA → image → What's Included → FAQ) ── */
/* Same max-width as breadcrumbs so content is flush left with "Home" */
.service-detail-content--template {
    max-width: 1100px;
}

.service-detail-content--template h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

.service-detail-content--template .service-detail-intro {
    margin: 0 0 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--text-light);
}

.service-detail-content--template .service-detail-top-block {
    margin-bottom: 2rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    padding: 1.5rem 1.75rem;
}

.service-detail-content--template .service-detail-pricing-inline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 0;
    margin-bottom: 0.5rem;
}

.service-detail-content--template .price-tier {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.4;
}

.service-detail-content--template .price-tier strong {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-right: 0.25rem;
}

.service-detail-content--template .price-tier-sep {
    width: 1px;
    height: 1.25em;
    background: var(--border-dark);
    margin: 0 0.75rem;
    flex-shrink: 0;
}

.service-detail-content--template .price-duration {
    margin: 0.5rem 0 0.25rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.service-detail-content--template .price-duration::before {
    content: '\23F1\00A0';
    font-size: 0.9em;
    opacity: 0.85;
}

.service-detail-content--template .price-disclaimer {
    margin: 0 0 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.service-detail-content--template .cta-wrapper {
    margin-top: 1.25rem;
}

.service-detail-content--template .cta-wrapper .service-book-btn {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid var(--accent);
    transition: background 0.2s, border-color 0.2s;
}

.service-detail-content--template .cta-wrapper .service-book-btn:hover {
    background: var(--accent-neon);
    border-color: var(--accent-neon);
    color: #fff;
}

.service-detail-content--template .service-detail-hero-img {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-content--template .service-detail-hero-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-detail-content--template .whats-included {
    margin-bottom: 0;
}

.service-detail-content--template .whats-included h2 {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.3;
}

.service-detail-content--template .whats-included h2:not(:first-child) {
    margin-top: 1.5rem;
}

.service-detail-content--template .service-features--checks {
    list-style: none;
    padding: 0;
    margin: 0 0 0;
}

.service-detail-content--template .service-features--checks li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-light);
}

.service-detail-content--template .service-features--checks li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.35em;
    width: 0.6em;
    height: 0.6em;
    background: var(--accent-neon);
    border-radius: 50%;
}

.service-detail-content--template .service-detail-pricing-inline--multi .price-group {
    margin-bottom: 1.25rem;
}

.service-detail-content--template .service-detail-pricing-inline--multi .price-group:last-child {
    margin-bottom: 0;
}

.service-detail-content--template .price-group-title {
    margin: 0 0 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.3;
}

.service-detail-content--template .service-detail-pricing-inline--multi .price-group .price-duration {
    margin-top: 0.35rem;
}

/* FAQ is inside template content */
.service-detail-content--template .service-detail-faq {
    margin-top: 2.5rem;
}

.service-detail-content--template + .service-detail-faq h2,
.service-detail-content--template .service-detail-faq h2 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

.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: '\203A';
    float: right;
    font-size: 1.25rem;
    color: var(--text-muted);
}

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

.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;
    }
}

/* ── Services Page (menu + tiered packages) ── */
.services-page #header .logo-container {
    padding-top: 0;
    align-items: center;
}

.services-page #header .logo-container img {
    height: 64px;
    max-height: 64px;
}

.services-page .service-hero {
    margin-top: 0;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
}

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

.services-page .service-hero-overlay {
    background: transparent;
}

.services-page .service-hero-content {
    padding: 0 2rem;
}

.services-page .service-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
    gap: 2.5rem 3rem;
    align-items: start;
}

.services-page .service-hero-intro h1 {
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 0.75rem;
    letter-spacing: -0.5px;
    padding-top: 0;
}

.services-page .service-hero-intro p {
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    color: rgba(255, 255, 255, 0.82);
    max-width: 32rem;
    line-height: 1.6;
    margin: 0;
}

.services-page .service-hero-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.services-page .service-hero-price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.1rem 1.35rem;
    background: var(--bg-card);
    border: 2px solid var(--brown);
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.services-page .service-hero-price-item--featured {
    border-color: var(--brown-light);
    box-shadow: 0 4px 16px rgba(123, 74, 40, 0.12);
}

.services-page .service-hero-price-item:hover {
    background: var(--green-light);
    border-color: var(--brown-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-1px);
}

.services-page .service-hero-price-head {
    min-width: 0;
}

.services-page .service-hero-price-name {
    margin: 0;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.25;
}

.services-page .service-hero-price-badge {
    display: inline-block;
    margin-left: 0.4rem;
    padding: 0.15rem 0.45rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
    background: var(--accent);
    border-radius: 3px;
    vertical-align: middle;
}

.services-page .service-hero-price-desc {
    margin: 0.25rem 0 0;
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    color: var(--text-muted);
    line-height: 1.35;
}

.services-page .service-hero-price-value {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
    margin: 0;
    flex-shrink: 0;
    font-size: clamp(0.92rem, 1.3vw, 1.05rem);
    font-weight: 600;
    color: var(--accent-neon);
    line-height: 1.25;
    text-align: right;
}

.services-page .service-hero-price-value span:last-child {
    color: var(--text-muted);
    font-weight: 500;
}

.services-page .service-hero-addons-btn {
    display: block;
    width: 100%;
    margin-top: 0.65rem;
    padding: 1rem 1.35rem;
    text-align: center;
    text-decoration: none;
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-neon);
    background: var(--bg-card);
    border: 2px solid var(--brown);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.services-page .service-hero-addons-btn:hover {
    background: var(--green-light);
    border-color: var(--brown-light);
    color: var(--accent-neon);
    box-shadow: var(--shadow-lg);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .services-page .service-hero-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-page .service-hero-pricing {
        max-width: 100%;
    }
}

.services-page-body {
    background: #F5F8F3;
    padding: 0;
}

.services-pricing,
.services-page-body .services-pricing {
    padding: 0;
    background: transparent;
    position: static;
    overflow: visible;
}

.services-page-body #services.services-pricing {
    padding: 0;
    background: transparent;
}

@media (max-width: 768px) {
    .services-page-body {
        padding: 0;
    }

    .services-page .service-hero {
        height: 100vh;
        min-height: 100vh;
    }
}

.svc-menu-page {
    width: 100%;
    max-width: none;
    margin: 0;
}

#maintenance-cta {
    padding: 0;
    background: transparent;
}

#maintenance-cta .svc-menu-cta {
    border-top: none;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
}

.svc-menu-page > .svc-menu-cta {
    border-top: none;
    border-radius: 10px;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow);
}

.svc-menu-panel {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

.svc-menu-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: stretch;
    padding: 0;
    position: sticky;
    top: 72px;
    z-index: 90;
    width: 100%;
    background: #ffffff;
    border: none;
    border-bottom: 2px solid rgba(22, 62, 22, 0.14);
    border-radius: 0;
    box-shadow: 0 2px 12px rgba(22, 62, 22, 0.06);
}

.svc-menu-nav a {
    flex: 1 1 auto;
    min-width: 0;
    padding: 1.1rem 0.85rem;
    font-size: clamp(0.78rem, 1.1vw, 0.9rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    color: var(--text-light);
    border-right: 1px solid rgba(22, 62, 22, 0.1);
    transition: background 0.2s, color 0.2s;
}

.svc-menu-nav a:last-child {
    border-right: none;
}

.svc-menu-nav a:hover {
    background: rgba(29, 92, 29, 0.06);
    color: var(--accent-neon);
}

/* Section blocks */
.svc-block {
    padding: 2.5rem clamp(1.25rem, 4vw, 3rem) 2.75rem;
    border-top: 1px solid rgba(22, 62, 22, 0.08);
    scroll-margin-top: 7.5rem;
}

.svc-menu-panel > .svc-block:first-child {
    border-top: none;
}

#addons {
    padding: 1.25rem clamp(1rem, 3vw, 2rem) 1.5rem;
}

header.svc-block-head {
    position: static;
    height: auto;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    z-index: auto;
    margin-bottom: 1.5rem;
}

.svc-block-head h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin: 0 0 0.35rem;
    letter-spacing: -0.02em;
}

.svc-block-note {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Package cards */
.svc-packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.svc-package {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(22, 62, 22, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.svc-package--featured {
    border-color: rgba(29, 92, 29, 0.35);
    box-shadow: 0 0 0 1px rgba(29, 92, 29, 0.08);
}

.svc-package-photo {
    aspect-ratio: 16 / 9;
    max-height: 160px;
    background-size: cover;
    background-position: center;
}

.svc-package-body {
    padding: 1.15rem 1.25rem 1.35rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.65rem;
}

.svc-package-tag {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.svc-package--featured .svc-package-tag {
    color: var(--accent-neon);
}

.svc-package-body h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-light);
}

.svc-package-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: auto;
    padding-top: 0.35rem;
}

.svc-package-book {
    padding: 0.5rem 1rem;
    background: var(--accent-neon);
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
    transition: background 0.2s;
}

.svc-package-book:hover {
    background: var(--accent);
}

.svc-package-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--brown);
    text-decoration: none;
}

.svc-package-link:hover {
    color: var(--accent-neon);
}

/* Unified price rows */
.svc-price-table,
.svc-price-list {
    display: flex;
    flex-direction: column;
}

.svc-price-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: baseline;
    gap: 1rem 2rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(22, 62, 22, 0.07);
}

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

.svc-price-row-label {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.4;
}

.svc-price-row-value {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--accent-neon);
    white-space: nowrap;
    text-align: right;
}

.svc-price-row--tiered {
    grid-template-columns: 1fr;
    gap: 0.45rem;
}

.svc-package-body .svc-price-row--tiered {
    padding: 0.5rem 0 0;
    border-bottom: none;
}

.svc-price-row-tiers {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.svc-price-row-tiers strong {
    color: var(--accent-neon);
    font-weight: 800;
}

.svc-price-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2.5rem;
}

.svc-price-table .svc-price-row:nth-last-child(-n+2) {
    border-bottom: none;
}

/* Specialty / RV service cards */
.svc-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

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

.svc-service-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(22, 62, 22, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.svc-service-card-media {
    height: clamp(230px, 30vw, 320px);
    background-size: cover;
    background-position: center;
}

.svc-service-grid--2 .svc-service-card-media {
    height: clamp(260px, 34vw, 380px);
}

.svc-service-card-body {
    padding: 1.15rem 1.25rem 1.35rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.75rem;
}

.svc-service-card-body h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.3;
}

.svc-service-card-body .svc-block-note {
    margin-top: -0.35rem;
    font-size: 0.82rem;
}

.svc-service-card-body .svc-price-list {
    flex: 1;
}

.svc-service-card-body .svc-price-row {
    padding: 0.55rem 0;
}

.svc-service-card-link {
    margin-top: auto;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brown);
    text-decoration: none;
}

.svc-service-card-link:hover {
    color: var(--accent-neon);
}

/* Footer CTA */
.svc-menu-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(420px, 52vw, 600px);
    padding: 3rem 2rem;
    background: var(--bg-dark);
    text-align: center;
    color: #fff;
    border-top: 1px solid rgba(22, 62, 22, 0.08);
    overflow: hidden;
}

.svc-menu-cta-photos {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    z-index: 0;
}

.svc-menu-cta-photo {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.svc-menu-cta-photo--atv {
    background-image: url('../assets/images/auto-maintenance.webp?v=2');
}

.svc-menu-cta-photo--golf {
    background-image: url('../assets/images/auto-maintenance-golf.webp?v=1');
}

.svc-menu-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: min(44rem, 92%);
    margin: 0 auto;
}

.svc-menu-cta-title {
    margin: 0;
    font-size: clamp(1.35rem, 2.8vw, 2.1rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: -0.01em;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.95),
        0 2px 8px rgba(0, 0, 0, 0.85),
        0 4px 24px rgba(0, 0, 0, 0.75);
}

.svc-menu-cta-btn {
    display: inline-block;
    padding: 0.95rem 2.35rem;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 4px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    transition: background 0.2s, transform 0.2s;
}

.svc-menu-cta-btn:hover {
    background: #3d9a3d;
    transform: translateY(-1px);
}

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

    .svc-service-grid--2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .svc-menu-nav {
        top: 64px;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .svc-menu-nav a {
        flex: 0 0 auto;
        min-width: max-content;
        padding: 1rem 1.15rem;
        font-size: 0.82rem;
        border-right: 1px solid rgba(22, 62, 22, 0.1);
    }

    .svc-block {
        padding: 2rem 1.25rem 2.25rem;
    }

    .svc-menu-cta-photos {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }

    .svc-menu-cta {
        min-height: clamp(520px, 85vw, 720px);
        padding: 2rem 1.5rem 3rem;
    }

    .svc-menu-cta-inner {
        max-width: 100%;
        gap: 1.75rem;
    }

    .svc-menu-cta-title {
        font-size: clamp(1.2rem, 5vw, 1.65rem);
    }

    .svc-packages-grid {
        grid-template-columns: 1fr;
    }

    .svc-price-table {
        grid-template-columns: 1fr;
    }

    .svc-price-table .svc-price-row:nth-last-child(-n+2) {
        border-bottom: 1px solid rgba(22, 62, 22, 0.07);
    }

    .svc-price-table .svc-price-row:last-child {
        border-bottom: none;
    }

    .svc-price-row--tiered .svc-price-row-tiers {
        flex-direction: column;
        gap: 0.25rem;
    }
}

/* ── Individual service detail pages (hero + bands, no card grid) ── */
.service-detail-page-wrap {
    padding: 0;
    background: #ffffff;
}

.service-detail-hero {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    background: transparent;
    padding: 0;
}

.service-detail-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.service-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.68) 22%,
        rgba(0, 0, 0, 0.3) 42%,
        rgba(0, 0, 0, 0) 62%
    );
    z-index: 1;
}

.service-detail-hero-inner {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 6.5rem 2rem 3rem clamp(1.25rem, 3vw, 2.5rem);
    box-sizing: border-box;
}

.service-detail-hero-breadcrumbs {
    position: absolute;
    top: 5.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 100%;
    max-width: 1140px;
    margin: 0;
    padding: 0 2rem;
    box-sizing: border-box;
    font-size: 0.85rem;
    text-align: left;
}

.service-detail-hero-breadcrumbs a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
}

.service-detail-hero-breadcrumbs a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.service-detail-hero-breadcrumbs .breadcrumb-sep {
    color: rgba(255, 255, 255, 0.55);
}

.service-detail-hero-breadcrumbs [aria-current="page"] {
    color: #ffffff;
    font-weight: 600;
}

.service-detail-hero-content {
    max-width: 34rem;
    margin-right: auto;
    text-align: left;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.service-detail-hero-content h1 {
    margin: 0 0 0.9rem;
    font-size: clamp(1.85rem, 4vw, 2.65rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #ffffff;
}

.service-detail-hero-price {
    margin: 0 0 1.75rem;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 500;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.95);
}

.service-detail-hero-price strong {
    font-weight: 800;
}

.service-detail-hero-price-label {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}

.service-detail-hero-price-sep {
    margin: 0 0.45rem;
    opacity: 0.55;
}

.service-detail-hero-included {
    margin: 0 0 2rem;
}

.service-detail-hero-included-title {
    margin: 0 0 0.9rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
}

.service-detail-hero-included-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
}

.service-detail-hero-included-list li {
    position: relative;
    padding: 0.1rem 0 0.1rem 1.35rem;
    font-size: clamp(0.92rem, 1.5vw, 1.02rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
}

.service-detail-hero-included-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: var(--accent-neon);
    font-weight: 700;
}

.service-detail-hero-intro {
    margin: 0 0 1.35rem;
    font-size: clamp(0.98rem, 1.7vw, 1.08rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
}

.service-detail-hero-intro--note {
    margin-top: -0.65rem;
    margin-bottom: 1.1rem;
    font-size: 0.95rem;
}

.service-detail-hero-cta {
    display: inline-block;
    padding: 0.8rem 1.65rem;
    background: var(--brown);
    border: 2px solid var(--brown);
    border-radius: 4px;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.service-detail-hero-cta:hover {
    background: var(--brown-light);
    border-color: var(--brown-light);
    color: #ffffff;
    transform: translateY(-1px);
}

.service-detail-hero-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--accent-neon);
    z-index: 2;
}

.service-detail-body {
    padding: 3rem 2rem 4rem;
}

.service-detail-body--booking {
    padding-top: 2.5rem;
    background: #F5F8F3;
    scroll-margin-top: 5.5rem;
}

.service-detail-body--booking[hidden] {
    display: none !important;
}

.service-detail-body-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.service-detail-booking-frame {
    display: block;
    width: 100%;
    min-height: 720px;
    height: 720px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    overflow: hidden;
}

.service-detail-overview {
    margin: 0;
    background: transparent;
    padding: 0;
}

.sdp-overview-grid {
    display: grid;
    grid-template-columns: minmax(210px, 280px) minmax(0, 1fr);
    gap: 2.5rem 3.5rem;
    align-items: start;
}

.sdp-overview-grid--photo {
    grid-template-columns: minmax(200px, 250px) minmax(0, 1fr) minmax(260px, 340px);
    align-items: stretch;
}

.sdp-section-label {
    margin: 0 0 0.75rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brown);
}

.sdp-section-label--sub {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--accent-neon);
}

.sdp-included-block-wrap {
    margin: 0;
    padding: 0;
    border: none;
}

.sdp-pricing-block .service-detail-hero-cta--inline {
    width: auto;
    min-width: 0;
    margin-top: 0.25rem;
}

.sdp-price-group {
    margin-bottom: 1.15rem;
}

.sdp-price-group:last-of-type {
    margin-bottom: 0.65rem;
}

.sdp-price-label {
    margin: 0 0 0.4rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-neon);
    line-height: 1.35;
}

.sdp-price-tier {
    display: block;
    font-size: 0.98rem;
    color: var(--text-light);
    line-height: 1.5;
}

.sdp-price-tier + .sdp-price-tier {
    margin-top: 0.15rem;
}

.sdp-price-tier strong {
    font-size: 1.45rem;
    font-weight: 800;
    margin-right: 0.3rem;
}

.sdp-price-sep {
    display: none;
}

.sdp-price-duration {
    margin: 0.35rem 0 0;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.sdp-price-disclaimer {
    margin: 0.5rem 0 0.85rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.service-detail-hero-cta--inline {
    display: inline-block;
    width: auto;
    box-sizing: border-box;
    text-align: center;
    background: var(--accent-neon);
    border-color: var(--accent-neon);
}

.service-detail-hero-cta--inline:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.sdp-included-photo {
    margin: 0;
    height: 100%;
    min-height: 100%;
}

.sdp-included-photo img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.sdp-included-block + .sdp-included-block {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(22, 62, 22, 0.08);
}

.sdp-included-block h2 {
    margin: 0 0 1rem;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.35;
    color: var(--accent-neon);
}

.sdp-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.sdp-feature-list li {
    position: relative;
    padding: 0.15rem 0 0.15rem 1.5rem;
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--text-light);
}

.sdp-feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.15rem;
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    color: var(--accent-neon);
    font-size: 0.85rem;
    font-weight: 800;
    line-height: 1.55;
}

.sdp-faq-section {
    margin-top: 3.5rem;
    padding-top: 2.75rem;
    border-top: 1px solid rgba(22, 62, 22, 0.08);
    background: transparent;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
}

.sdp-faq-list {
    margin: 0;
}

.sdp-faq-item {
    border-bottom: 1px solid rgba(22, 62, 22, 0.1);
}

.sdp-faq-item summary {
    padding: 1.05rem 1.75rem 1.05rem 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    list-style: none;
}

.sdp-faq-item summary::-webkit-details-marker {
    display: none;
}

.sdp-faq-item summary::after {
    content: '+';
    float: right;
    font-size: 1.2rem;
    line-height: 1;
    color: var(--brown);
    font-weight: 400;
}

.sdp-faq-item[open] summary::after {
    content: '−';
}

.sdp-faq-item[open] summary {
    color: var(--accent-neon);
}

.sdp-faq-answer {
    padding: 0 0 1.15rem;
}

.sdp-faq-answer p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.sdp-faq-answer p a {
    color: var(--accent);
}

/* Legacy full-width FAQ band (unused by ServiceDetailPage) */
.service-detail-faq-band {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: var(--bg-elevated);
    border-top: 1px solid var(--border-dark);
    padding: 3.5rem 2rem 4rem;
    box-sizing: border-box;
}

.service-detail-faq-band-inner {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-faq-kicker {
    margin: 0 0 0.5rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brown);
}

.service-detail-faq-band h2 {
    margin: 0 0 1.75rem;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-light);
}

.service-detail-faq-band details {
    background: #ffffff;
    border-radius: 4px;
    margin-bottom: 0.65rem;
    overflow: hidden;
    border-left: 4px solid var(--brown);
}

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

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

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

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

.service-detail-faq-band details p {
    margin: 0;
    padding: 0 1.15rem 1.1rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.service-detail-faq-band details p a {
    color: var(--accent);
}

@media (max-width: 900px) {
    .sdp-overview-grid,
    .sdp-overview-grid--photo {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sdp-included-photo {
        min-height: 300px;
        max-height: 420px;
    }
}

@media (max-width: 768px) {
    .service-detail-hero {
        height: 100vh;
        min-height: 100vh;
        display: block;
    }

    .service-detail-hero-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .service-detail-hero-overlay {
        position: absolute;
        inset: 0;
    }

    .service-detail-hero-inner {
        position: absolute;
        inset: 0;
        align-items: center;
        justify-content: flex-start;
        padding: 5.5rem 1.25rem 2rem;
    }

    .service-detail-hero-breadcrumbs {
        top: 5.25rem;
        padding: 0 1.25rem;
        font-size: 0.78rem;
    }

    .service-detail-body {
        padding: 2rem 1.25rem 3rem;
    }

    .sdp-faq-section {
        margin-top: 2.5rem;
        padding-top: 2rem;
    }
}
