/* ==========================================================================
   KW MOBILE AUTO DETAILING - PREMIUM LOCAL SERVICE CSS DESIGN SYSTEM
   ========================================================================== */

/* 1. Theme Variables & Design Tokens */
:root {
    /* Harmonious Curated Colors */
    --clr-bg-primary: #ffffff;
    --clr-bg-secondary: #f8fafc; /* Cool slate white */
    --clr-bg-dark: #0f172a;      /* Deep navy slate */
    --clr-bg-card-dark: #1e293b; /* Medium slate */
    
    --clr-txt-primary: #0f172a;  /* Deep charcoal slate */
    --clr-txt-secondary: #475569;/* Slate grey */
    --clr-txt-light: #f8fafc;
    --clr-txt-muted: #94a3b8;
    
    --clr-accent: #0284c7;       /* Electric clean sky blue */
    --clr-accent-hover: #0369a1;
    --clr-accent-light: #e0f2fe;
    --clr-accent-gold: #eab308;  /* Shine Gold for trust badges and sealant focus */
    --clr-border: #e2e8f0;       /* Soft borders */
    
    /* Spacing & Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
    
    /* Fonts */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Global Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. Global Resets & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--clr-bg-primary);
    color: var(--clr-txt-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--clr-txt-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Section Dividers */
section {
    padding: 5rem 0;
}

.sub-title {
    display: inline-block;
    color: var(--clr-accent);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.section-title-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
}

.section-title-wrapper h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.section-lead {
    color: var(--clr-txt-secondary);
    font-size: 1.125rem;
}

/* 3. Button Styles (High-Converting & Clicky) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--clr-accent);
    color: var(--clr-txt-light);
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.4);
}

.btn-primary:hover {
    background-color: var(--clr-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.5);
}

.btn-secondary {
    background-color: var(--clr-bg-dark);
    color: var(--clr-txt-light);
}

.btn-secondary:hover {
    background-color: #1e293b;
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--clr-accent);
    color: var(--clr-txt-light);
}

.btn-full {
    width: 100%;
}

/* 4. Header & Navigation */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--clr-border);
    position: relative;
    z-index: 100;
    backdrop-filter: blur(8px);
    padding: 1rem 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--clr-txt-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.accent-dot {
    width: 10px;
    height: 10px;
    background-color: var(--clr-accent);
    border-radius: var(--radius-full);
}

.nav-menu {
    display: none; /* Hidden on mobile */
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 500;
    color: var(--clr-txt-secondary);
}

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

.header-phone {
    display: flex;
    align-items: center;
}

.phone-link-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--clr-accent-light);
    color: var(--clr-accent-hover);
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    white-space: nowrap;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.phone-link-pill:hover {
    background-color: var(--clr-accent);
    color: var(--clr-txt-light);
    transform: translateY(-1px);
}

/* Stronger Get a Quote Navigation Button */
.nav-cta {
    background-color: var(--clr-accent-gold) !important;
    color: var(--clr-txt-primary) !important;
    box-shadow: 0 4px 10px rgba(234, 179, 8, 0.35) !important;
    border: none !important;
    padding: 0.55rem 1.35rem !important;
    font-size: 0.95rem !important;
    border-radius: var(--radius-md) !important;
    font-weight: 700 !important;
}

.nav-cta:hover {
    background-color: #e2a806 !important;
    box-shadow: 0 6px 15px rgba(234, 179, 8, 0.45) !important;
    transform: translateY(-1.5px) !important;
}

/* On extra small screens, hide the phone text to avoid header crowding */
@media (max-width: 400px) {
    .phone-link-pill .phone-number-text {
        display: none;
    }
    .phone-link-pill {
        padding: 0.5rem 0.6rem;
        border-radius: var(--radius-full);
    }
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle .bar {
    width: 24px;
    height: 3px;
    background-color: var(--clr-txt-primary);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

/* Mobile Menu Open State classes */
.mobile-menu-toggle.open .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* 5. Hero Section (Mobile-First) */
.hero-section {
    background-color: var(--clr-bg-secondary);
    padding: 3rem 0 4rem 0;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--clr-accent-light);
    color: var(--clr-accent-hover);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.hero-lead {
    font-size: 1.125rem;
    color: var(--clr-txt-secondary);
    margin-bottom: 2rem;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.trust-item {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--clr-txt-secondary);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.check-icon {
    color: var(--clr-accent);
    font-weight: bold;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* 6. Services Section */
.services-section {
    background-color: var(--clr-bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background-color: var(--clr-bg-secondary);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--clr-accent-light);
}

.featured-service {
    background-color: var(--clr-bg-dark);
    color: var(--clr-txt-light);
    border: 2px solid var(--clr-accent);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background-color: var(--clr-accent-gold);
    color: var(--clr-txt-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.featured-service h3 {
    color: var(--clr-txt-light);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--clr-accent-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.featured-service .service-icon-wrapper {
    background-color: rgba(255, 255, 255, 0.1);
}

.service-icon {
    font-size: 1.75rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--clr-txt-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.featured-service p {
    color: var(--clr-txt-muted);
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.925rem;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--clr-accent);
}

.featured-service .service-features li::before {
    color: var(--clr-accent-gold);
}

/* Add-ons styling */
.addons-container {
    background-color: var(--clr-bg-secondary);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    margin-top: 4rem;
}

.addons-container h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.addon-item {
    font-size: 0.95rem;
}

.addon-bullet {
    color: var(--clr-accent);
    margin-right: 0.25rem;
}

/* 7. Before/After Interactive Slider Section */
.before-after-section {
    background-color: var(--clr-bg-secondary);
}

.slider-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--clr-border);
}

.before-after-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    user-select: none;
    overflow: hidden;
}

.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-graphic {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Absolute Mask overlay for dirty car */
.foreground-img {
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
    z-index: 10;
}

/* Range input overlay running over the container */
.slider-drag-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; /* Fully invisible */
    cursor: col-resize;
    z-index: 30;
}

/* Sliding Divider line */
.slider-drag-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: var(--clr-accent-gold);
    z-index: 20;
    pointer-events: none;
    transform: translateX(-50%);
}

.slider-handle-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background-color: var(--clr-accent-gold);
    color: var(--clr-txt-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 3px solid #ffffff;
}

/* 8. Pricing Section & Vehicle size calculator */
.pricing-section {
    background-color: var(--clr-bg-primary);
}

.vehicle-size-selector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin: 2rem auto 0 auto;
    max-width: 600px;
}

.selector-btn {
    width: 100%;
    background-color: var(--clr-bg-secondary);
    border: 1px solid var(--clr-border);
    color: var(--clr-txt-secondary);
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.selector-btn:hover {
    background-color: var(--clr-accent-light);
    color: var(--clr-accent-hover);
}

.selector-btn.active {
    background-color: var(--clr-accent);
    color: var(--clr-txt-light);
    border-color: var(--clr-accent);
    box-shadow: 0 4px 10px rgba(2, 132, 199, 0.2);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3.5rem;
    align-items: center;
}

.pricing-card {
    background-color: var(--clr-bg-primary);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.featured-card {
    border: 3px solid var(--clr-accent);
    position: relative;
    box-shadow: var(--shadow-lg);
}

.card-glow-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--clr-accent-gold);
    color: var(--clr-txt-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 1.25rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(234, 179, 8, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.35rem;
    color: var(--clr-txt-secondary);
    margin-bottom: 0.75rem;
}

.featured-card .pricing-header h3 {
    color: var(--clr-accent-hover);
}

.price-amount {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--clr-txt-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
    transition: var(--transition-fast);
}

.price-term {
    color: var(--clr-txt-muted);
    font-size: 0.85rem;
}

.pricing-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.pricing-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.pricing-checklist li span {
    color: var(--clr-accent);
    font-weight: bold;
    flex-shrink: 0;
    line-height: 1.4;
}

/* 9. Why Choose Us Section */
.why-choose-us-section {
    background-color: var(--clr-bg-secondary);
}

.why-container {
    max-width: 1000px;
}

.why-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.why-content p {
    color: var(--clr-txt-secondary);
    margin-bottom: 3rem;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.why-card {
    background-color: var(--clr-bg-primary);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.why-num {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--clr-accent-light);
    line-height: 1;
}

.why-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.why-card p {
    font-size: 0.925rem;
    color: var(--clr-txt-secondary);
    margin-bottom: 0;
}

/* 10. Service Areas Map Footprint */
.service-areas-section {
    background-color: var(--clr-bg-primary);
    border-bottom: 1px solid var(--clr-border);
}

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

.city-card {
    background-color: var(--clr-bg-secondary);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
}

.city-card h4 {
    font-size: 1.5rem;
    color: var(--clr-accent-hover);
    margin-bottom: 0.75rem;
}

.city-neighborhoods {
    font-size: 0.9rem;
    color: var(--clr-txt-secondary);
}

/* 11. High-Converting Booking/Quote Form */
.quote-form-section {
    background-color: var(--clr-bg-secondary);
}

.quote-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.quote-info h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}

.quote-info p {
    color: var(--clr-txt-secondary);
    margin-bottom: 2.5rem;
}

.contact-quick-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-block {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.5rem;
    background-color: var(--clr-bg-primary);
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.info-block h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.info-block p {
    font-size: 0.9rem;
    color: var(--clr-txt-secondary);
    margin-bottom: 0;
}

.quote-form-wrapper {
    background-color: var(--clr-bg-primary);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-lg);
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.quote-form label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--clr-txt-secondary);
}

.required {
    color: #ef4444;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--clr-txt-primary);
    transition: var(--transition-fast);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

/* Success Message Classes */
.hidden {
    display: none !important;
}

.form-success-alert {
    text-align: center;
    padding: 2rem 1rem;
}

.success-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.5rem;
}

.form-success-alert h4 {
    font-size: 1.5rem;
    color: #16a34a;
    margin-bottom: 0.75rem;
}

.form-success-alert p {
    color: var(--clr-txt-secondary);
    font-size: 0.95rem;
}

/* 12. FAQ Section */
.faq-section {
    background-color: var(--clr-bg-primary);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--clr-txt-primary);
}

.faq-item p {
    font-size: 0.925rem;
    color: var(--clr-txt-secondary);
}

/* 13. Footer Section */
.main-footer {
    background-color: var(--clr-bg-dark);
    color: var(--clr-txt-light);
    padding: 4rem 0 2rem 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2.5rem;
}

.footer-brand h5,
.footer-links-group h5,
.footer-service-cities h5 {
    color: var(--clr-txt-light);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-brand h5::after,
.footer-links-group h5::after,
.footer-service-cities h5::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--clr-accent-gold);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-txt-light);
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand p {
    color: var(--clr-txt-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-hours {
    color: var(--clr-accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-links-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-group a {
    color: var(--clr-txt-muted);
    font-size: 0.9rem;
}

.footer-links-group a:hover {
    color: var(--clr-accent-gold);
}

.footer-service-cities ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-service-cities li {
    color: var(--clr-txt-muted);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.25rem;
}

.footer-service-cities li::before {
    content: "📍";
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--clr-txt-muted);
}

.demo-site-notice {
    color: var(--clr-accent-gold);
    font-weight: 600;
}

/* ==========================================================================
   14. MEDIA QUERIES (RESPONSIVE RESPONSIVENESS)
   ========================================================================== */

/* Tablet Layout (768px and up) */
@media (min-width: 768px) {
    /* Header toggling on desktop */
    .mobile-menu-toggle {
        display: none;
    }
    
    .nav-menu {
        display: flex;
    }
    
    /* Hero layout */
    .hero-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 3rem;
    }
    
    .hero-content h1 {
        font-size: 3.25rem;
    }
    
    .hero-ctas {
        flex-direction: row;
    }
    
    /* Services grid */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-service {
        grid-column: span 2;
    }
    
    /* Add-ons layout */
    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Price selector toggling horizontal */
    .vehicle-size-selector {
        flex-direction: row;
        justify-content: center;
    }
    
    .selector-btn {
        width: auto;
    }
    
    /* Pricing grid desktop adjustment */
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: stretch;
    }
    
    .featured-card {
        transform: scale(1.03);
        z-index: 10;
    }
    
    /* Why choose us cards */
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Cities footprint */
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Booking form row layout */
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Booking grid block */
    .quote-container {
        grid-template-columns: 0.95fr 1.05fr;
        gap: 4rem;
    }
    
    /* FAQs layout split */
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Footer columns */
    .footer-container {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* Desktop Large Layout (1024px and up) */
@media (min-width: 1024px) {
    /* Services three columns */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .featured-service {
        grid-column: span 1;
    }
    
    /* Pricing margins */
    .pricing-grid {
        gap: 2rem;
    }
    
    /* Why Us 4 columns */
    .why-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Cities footprint 4 columns */
    .cities-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==========================================================================
   15. MANUAL VERIFICATION REFINEMENTS (REAL LOCAL SERVICE FOCUS)
   ========================================================================== */

/* Logo responsive tweaks */
.logo {
    font-size: 1.75rem;
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.45rem;
    }
}

/* Hero Trust Strip Layout */
.trust-strip {
    background-color: var(--clr-bg-primary);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    padding: 1.5rem 0;
    margin-top: 3.5rem;
    box-shadow: var(--shadow-sm);
}

.trust-strip-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.trust-strip-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-strip-icon {
    font-size: 1.75rem;
    background-color: var(--clr-bg-secondary);
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-strip-card strong {
    display: block;
    font-size: 0.95rem;
    color: var(--clr-txt-primary);
    font-family: var(--font-heading);
}

.trust-strip-card p {
    font-size: 0.8rem;
    color: var(--clr-txt-secondary);
    margin-bottom: 0;
}

/* Realistic 3-Card Before/After Gallery */
.before-after-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.gallery-card {
    background-color: var(--clr-bg-primary);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gallery-card-visual {
    display: flex;
    height: 180px;
    border-bottom: 1px solid var(--clr-border);
}

.split-side {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 1.25rem 1rem;
    overflow: hidden;
    transition: var(--transition-normal);
}

.before-side {
    background-color: #f8fafc;
}

.after-side {
    background-color: #f0fdf4;
    border-left: 1px solid var(--clr-border);
}

.split-label {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-sm);
    letter-spacing: 0.05em;
    z-index: 10;
}

.before-side .split-label {
    background-color: #ef4444;
    color: #ffffff;
}

.after-side .split-label {
    background-color: #22c55e;
    color: #ffffff;
}

.split-side p {
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 0.75rem;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    z-index: 10;
    text-align: center;
}

.gallery-card-body {
    padding: 1.5rem;
}

.gallery-card-body h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--clr-txt-primary);
}

.gallery-card-body p {
    font-size: 0.875rem;
    color: var(--clr-txt-secondary);
    line-height: 1.5;
}

/* Realistic 3-Card Before/After Gallery Background Styles */
.salt-before {
    background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.45) 8%, transparent 35%), 
                radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.4) 10%, transparent 45%), 
                radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.3) 12%, transparent 30%),
                #475569;
    background-size: cover;
}

.salt-after {
    background: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 0), #1e293b;
    background-size: 8px 8px;
}

.hair-before {
    background: repeating-linear-gradient(45deg, rgba(255,255,255,0.08) 0px, rgba(255,255,255,0.08) 1px, transparent 1px, transparent 12px), 
                repeating-linear-gradient(-30deg, rgba(255,255,255,0.06) 0px, rgba(255,255,255,0.06) 1px, transparent 1px, transparent 8px), 
                #334155;
}

.hair-after {
    background: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 0), #1e293b;
    background-size: 8px 8px;
}

.shine-before {
    background: radial-gradient(circle at 20% 80%, rgba(120, 53, 15, 0.15) 10%, transparent 40%),
                radial-gradient(circle at 80% 30%, rgba(120, 53, 15, 0.2) 15%, transparent 50%),
                #64748b;
}

.shine-after {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.15);
}

/* Sparkle overlay inside shine-after */
.shine-after::after {
    content: "✦";
    position: absolute;
    color: #ffffff;
    font-size: 1.5rem;
    top: 20%;
    right: 20%;
    opacity: 0.8;
    animation: sparkle-glow 3s infinite alternate;
}

@keyframes sparkle-glow {
    0% { transform: scale(0.8) rotate(0deg); opacity: 0.5; }
    100% { transform: scale(1.2) rotate(180deg); opacity: 0.9; }
}

/* Secondary slider layouts */
.slider-secondary-container {
    margin-top: 4.5rem;
    background-color: var(--clr-bg-primary);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.slider-secondary-container h4 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.slider-desc {
    font-size: 0.9rem;
    color: var(--clr-txt-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Touch targets and Mobile responsive spacing */
.quote-form input,
.quote-form select,
.quote-form textarea {
    min-height: 48px; /* Large click targets */
}

/* Responsive grid breaks and stacking queries */
@media (max-width: 576px) {
    .hero-ctas {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .pricing-card {
        padding: 2rem 1.25rem;
    }
    
    .quote-form-wrapper {
        padding: 2rem 1.25rem;
    }
    
    .service-card {
        padding: 2.25rem 1.25rem;
    }
}

@media (min-width: 640px) {
    .trust-strip-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .before-after-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .slider-secondary-container {
        padding: 3.5rem;
    }
}

@media (min-width: 992px) {
    .trust-strip-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

