/* ============================================
   AUTOMEDIC – Ground-Up Rebuild 2026
   Design: clean, light, modern (Inter + blue accent)
   ============================================ */

/* ---------- Google Font ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ---------- Design Tokens ---------- */
:root {
    /* Primary */
    --primary: #0F172A;
    --primary-light: #1E293B;
    --primary-accent: #2563EB;
    --accent: #2563EB;
    --accent-light: #3B82F6;
    --accent-hover: #1D4ED8;

    /* Text */
    --text: #0F172A;
    --text-secondary: #64748B;
    --text-light: #94A3B8;
    --text-on-dark: #F8FAFC;

    /* Backgrounds */
    --bg: #FFFFFF;
    --bg-alt: #F8FAFC;
    --bg-section: #F1F5F9;
    --bg-glass: rgba(255, 255, 255, 0.7);
    --bg-dark: #0F172A;

    /* Borders */
    --border: #E2E8F0;
    --border-light: #F1F5F9;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.03);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.08), 0 10px 10px -5px rgba(0,0,0,0.02);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.12);

    /* Radius */
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Transitions */
    --transition-fast: all 0.15s cubic-bezier(0.4,0,0.2,1);
    --transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
    --transition-slow: all 0.3s cubic-bezier(0.4,0,0.2,1);

    /* Type Scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    font-size: var(--text-base);
}

img { max-width: 100%; height: auto; display: block; }
img[loading="lazy"] { opacity: 0; transition: opacity .3s ease; }
img[loading="lazy"].loaded { opacity: 1; }

/* Accessibility */
.skip-link {
    position: absolute; top: -40px; left: 0;
    background: var(--primary); color: white;
    padding: var(--space-sm); text-decoration: none;
    z-index: 100; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { top: 0; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Fade-in animations */
.fade-in {
    opacity: 0; transform: translateY(20px);
    transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---------- Container ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-lg); }
@media (min-width: 1536px) { .container { max-width: 1360px; } }

/* ===========================================
   NAV – Glassmorphism sticky bar
   =========================================== */
.navbar {
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-light);
    position: sticky; top: 0; z-index: 1000;
    padding: var(--space-sm) 0;
    transition: var(--transition);
}
.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255,255,255,.95);
}

.nav-wrapper {
    display: flex; justify-content: space-between;
    align-items: center; gap: var(--space-lg);
}

.logo a { display: flex; align-items: center; text-decoration: none; }
.logo-img {
    height: 40px; width: auto; max-width: 170px;
    object-fit: contain; transition: var(--transition-fast);
}
.logo-img:hover { transform: scale(1.03); }

.nav-actions { display: flex; align-items: center; gap: var(--space-xl); }

.nav-menu {
    display: flex; list-style: none; gap: var(--space-lg); align-items: center;
}
.nav-menu a {
    color: var(--text); text-decoration: none;
    font-weight: 600; font-size: var(--text-sm);
    letter-spacing: -.01em; transition: var(--transition-fast);
    padding: var(--space-xs) 0; position: relative;
}
.nav-menu a::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px; background: var(--accent);
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); }
.nav-menu a:hover, .nav-menu a.active { color: var(--accent); }

/* Language toggle */
.language-toggle {
    display: inline-flex; align-items: center; gap: var(--space-xs);
    padding: 3px; background: var(--bg-alt);
    border-radius: 999px; border: 1px solid var(--border);
}
.language-label {
    font-size: var(--text-xs); letter-spacing: .05em;
    text-transform: uppercase; color: var(--text-secondary);
    padding-left: var(--space-sm); font-weight: 600;
}
.lang-btn {
    border: none; background: transparent; color: var(--text);
    padding: 5px 12px; border-radius: 999px; font-weight: 700;
    font-size: var(--text-xs); cursor: pointer;
    transition: var(--transition-fast); letter-spacing: .02em;
}
.lang-btn.active { background: var(--primary); color: white; box-shadow: var(--shadow-sm); }
.lang-btn:not(.active):hover { background: white; }

/* Mobile hamburger */
.mobile-menu-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer;
    padding: var(--space-sm); min-width: 44px; min-height: 44px;
    align-items: center; justify-content: center;
    border-radius: var(--radius-sm);
}
.mobile-menu-toggle:focus { outline: 2px solid var(--accent); outline-offset: 2px; }
.mobile-menu-toggle span {
    width: 22px; height: 2px; background: var(--text);
    transition: var(--transition-fast); border-radius: 2px;
}

/* ===========================================
   BUTTONS
   =========================================== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 24px; font-size: var(--text-sm); font-weight: 700;
    text-decoration: none; border-radius: var(--radius);
    transition: var(--transition); border: none; cursor: pointer;
    letter-spacing: -.01em; font-family: inherit;
}
.btn-primary {
    background: var(--accent); color: white; box-shadow: var(--shadow);
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.btn-secondary {
    background: white; color: var(--primary);
    border: 2px solid var(--border); box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
    background: var(--bg-alt); border-color: var(--primary);
    transform: translateY(-2px); box-shadow: var(--shadow);
}
.btn-large { padding: 16px 32px; font-size: var(--text-base); border-radius: var(--radius-lg); }
.btn:focus { outline: 3px solid rgba(59,130,246,.4); outline-offset: 2px; }

/* ===========================================
   HERO – Full-width centered
   =========================================== */
.hero-modern {
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
    padding: var(--space-4xl) 0 var(--space-3xl);
    position: relative; overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.hero-modern::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(37,99,235,.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(37,99,235,.04) 0%, transparent 50%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-3xl); align-items: start;
    position: relative; z-index: 1;
}
.hero-text { animation: fadeInUp .7s cubic-bezier(.4,0,.2,1); }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
    text-transform: uppercase; letter-spacing: .15em;
    font-size: var(--text-xs); color: var(--accent);
    margin-bottom: var(--space-md); font-weight: 700;
}
.hero-modern h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    line-height: 1.08; margin-bottom: var(--space-lg);
    font-weight: 800; letter-spacing: -.03em;
}
.hero-description {
    font-size: var(--text-lg); color: var(--text-secondary);
    margin-bottom: var(--space-xl); line-height: 1.7; max-width: 540px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-md); margin-bottom: var(--space-xl); }

/* Hero card */
.hero-card {
    background: white; border-radius: var(--radius-xl);
    padding: var(--space-2xl); box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    animation: fadeInUp .7s cubic-bezier(.4,0,.2,1) .15s both;
}
.hero-card-header { margin-bottom: var(--space-lg); }
.hero-card-header h2 {
    font-size: var(--text-2xl); font-weight: 800;
    letter-spacing: -.02em; color: var(--primary);
    margin-top: var(--space-sm);
}
.status-pill {
    display: inline-block;
    background: rgba(37,99,235,.1); color: var(--accent);
    padding: 4px 12px; border-radius: 999px;
    font-size: var(--text-xs); font-weight: 700;
}
.hero-card-body { display: flex; flex-direction: column; gap: var(--space-sm); }
.hero-card-row {
    display: flex; justify-content: space-between; align-items: center;
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: var(--space-sm) var(--space-md); background: var(--bg-alt);
    font-size: var(--text-sm); transition: var(--transition-fast);
}
.hero-card-row:hover { background: white; box-shadow: var(--shadow-sm); }
.hero-card-cta { text-align: center; margin-top: var(--space-sm); }
.hero-card-cta .btn { width: 100%; justify-content: center; }

/* ===========================================
   TRUST STRIP
   =========================================== */
.trust-strip {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border-light);
    padding: var(--space-lg) 0;
}
.trust-strip-grid {
    display: flex; justify-content: center; gap: var(--space-xl);
    flex-wrap: wrap;
}
.trust-item {
    display: flex; align-items: center; gap: var(--space-sm);
    font-weight: 600; font-size: var(--text-sm); color: var(--text);
    white-space: nowrap;
}
.trust-icon { font-size: 1.25rem; }

/* ===========================================
   SECTIONS / LAYOUT
   =========================================== */
.main-content { padding: var(--space-4xl) 0; }

.section-header { text-align: center; margin-bottom: var(--space-3xl); }
.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800; margin-bottom: var(--space-sm);
    letter-spacing: -.02em;
}
.section-header p {
    font-size: var(--text-lg); color: var(--text-secondary);
    max-width: 560px; margin: 0 auto; line-height: 1.7;
}
.underline {
    width: 48px; height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    margin: var(--space-md) auto; border-radius: 2px;
}

/* Page header (services / contact) */
.page-header {
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
    padding: var(--space-3xl) 0 var(--space-2xl);
    text-align: center; position: relative; overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.page-header::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(37,99,235,.04) 0%, transparent 70%);
    pointer-events: none;
}
.page-header h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800; margin-bottom: var(--space-sm);
    letter-spacing: -.03em; position: relative; z-index: 1;
}
.page-header p {
    font-size: var(--text-lg); color: var(--text-secondary);
    position: relative; z-index: 1;
}

/* ===========================================
   SERVICE CARDS – 3-col grid, left accent
   =========================================== */
.services-overview { margin-bottom: var(--space-4xl); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}
.service-card {
    background: white; padding: var(--space-xl);
    border-radius: var(--radius-lg); box-shadow: var(--shadow);
    border: 1px solid var(--border); border-left: 4px solid var(--accent);
    transition: var(--transition); position: relative;
}
.service-card:hover {
    transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.service-icon { font-size: 2rem; margin-bottom: var(--space-sm); display: inline-block; }
.service-card h3 {
    font-size: var(--text-lg); font-weight: 700;
    margin-bottom: var(--space-xs); letter-spacing: -.01em;
}
.service-card > p {
    color: var(--text-secondary); line-height: 1.6; font-size: var(--text-sm);
    margin-bottom: var(--space-sm);
}
.service-details {
    list-style: none; display: flex; flex-direction: column; gap: 6px;
}
.service-details li {
    padding-left: var(--space-lg); position: relative;
    color: var(--text-secondary); font-size: var(--text-sm);
}
.service-details li::before {
    content: '✓'; position: absolute; left: 0;
    color: var(--accent); font-weight: 700;
}

/* ===========================================
   FEATURE CARDS – 2×2 grid
   =========================================== */
.features-section { margin-bottom: var(--space-4xl); }
.features-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}
.feature-card {
    background: white; padding: var(--space-xl);
    border-radius: var(--radius-lg); box-shadow: var(--shadow);
    border: 1px solid var(--border); transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-4px); box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
.feature-icon { font-size: 2rem; margin-bottom: var(--space-sm); display: inline-block; }
.feature-card h3 {
    font-size: var(--text-lg); font-weight: 700;
    margin-bottom: var(--space-xs); letter-spacing: -.01em;
}
.feature-card > p { color: var(--text-secondary); font-size: var(--text-sm); line-height: 1.6; }

/* ===========================================
   BRANDS SERVED
   =========================================== */
.brands-section { margin-bottom: var(--space-4xl); }
.brands-grid {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: var(--space-sm);
}
.brand-tag {
    background: var(--bg-alt); border: 1px solid var(--border);
    border-radius: 999px; padding: 8px 20px;
    font-size: var(--text-sm); font-weight: 600; color: var(--text);
    transition: var(--transition-fast);
}
.brand-tag:hover { background: white; box-shadow: var(--shadow-sm); }

/* ===========================================
   CTA SECTION – Full-bleed blue gradient
   =========================================== */
.cta-section {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: white; padding: var(--space-3xl) var(--space-lg);
    text-align: center; border-radius: var(--radius-2xl);
    position: relative; overflow: hidden;
    margin-top: var(--space-2xl);
}
.cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,.1) 0%, transparent 60%);
    pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800; margin-bottom: var(--space-md); letter-spacing: -.02em;
}
.cta-content p {
    font-size: var(--text-lg); margin-bottom: var(--space-xl);
    opacity: .95; max-width: 520px; margin-left: auto; margin-right: auto;
}
.cta-section .btn-primary {
    background: white; color: var(--accent);
}
.cta-section .btn-primary:hover {
    background: var(--bg-alt); transform: translateY(-2px);
}

/* ===========================================
   FOOTER – Dark 3-column
   =========================================== */
.footer {
    background: var(--primary); color: white;
    padding: var(--space-3xl) 0 var(--space-xl); margin-top: var(--space-4xl);
}
.footer-content {
    display: grid; grid-template-columns: 1.2fr 1fr 1fr;
    gap: var(--space-2xl); margin-bottom: var(--space-2xl);
}
.footer-section h3, .footer-section h4 {
    margin-bottom: var(--space-md); color: white;
    font-weight: 700; font-size: var(--text-lg);
}
.footer-section p {
    color: rgba(255,255,255,.75); line-height: 1.7;
    margin-bottom: var(--space-sm); font-size: var(--text-sm);
}
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: var(--space-xs); }
.footer-section ul li a {
    color: rgba(255,255,255,.75); text-decoration: none;
    transition: var(--transition-fast); font-size: var(--text-sm);
}
.footer-section ul li a:hover { color: var(--accent-light); }

.footer-bottom {
    text-align: center; padding-top: var(--space-xl);
    border-top: 1px solid rgba(255,255,255,.1);
}
.footer-bottom p { color: rgba(255,255,255,.5); font-size: var(--text-sm); }

.social-links { display: flex; gap: var(--space-md); }
.social-link {
    color: rgba(255,255,255,.75); text-decoration: none;
    transition: var(--transition-fast); font-size: var(--text-sm);
}
.social-link:hover { color: var(--accent-light); }

/* ===========================================
   SERVICE INTRO BANNER (services page)
   =========================================== */
.service-intro-banner {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: white; padding: var(--space-2xl);
    border-radius: var(--radius-xl); margin-bottom: var(--space-2xl);
}
.intro-grid {
    display: grid; grid-template-columns: 1fr 320px;
    gap: var(--space-2xl); align-items: start;
}
.intro-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: var(--space-md); font-weight: 800; letter-spacing: -.02em;
}
.intro-subtitle { font-size: var(--text-lg); margin-bottom: var(--space-lg); opacity: .95; }

.specials-banner {
    background: rgba(255,255,255,.15); padding: var(--space-md);
    border-radius: var(--radius); margin: var(--space-lg) 0;
    backdrop-filter: blur(10px);
}
.specials-banner h3 { margin: 0; font-size: var(--text-base); font-weight: 700; }

.intro-description { font-size: var(--text-base); margin: var(--space-lg) 0; line-height: 1.7; }

.intro-checklist {
    list-style: none; display: flex; flex-direction: column; gap: var(--space-sm);
}
.intro-checklist li {
    position: relative; padding-left: var(--space-xl); font-weight: 500; font-size: var(--text-sm);
}
.intro-checklist li::before {
    content: '✓'; position: absolute; left: 0;
    color: rgba(255,255,255,.8); font-weight: 700;
}
.intro-note { font-size: var(--text-sm); opacity: .85; line-height: 1.6; margin-top: var(--space-md); }

.intro-card {
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-xl); padding: var(--space-xl);
    backdrop-filter: blur(10px);
}
.intro-card-eyebrow {
    text-transform: uppercase; letter-spacing: .12em;
    font-size: var(--text-xs); color: rgba(255,255,255,.65);
    margin-bottom: var(--space-sm); font-weight: 700;
}
.intro-card h3 { font-size: var(--text-xl); margin-bottom: var(--space-xs); font-weight: 700; }
.intro-rate { font-size: var(--text-2xl); margin: var(--space-sm) 0; font-weight: 800; }
.intro-card p { font-size: var(--text-sm); opacity: .9; line-height: 1.6; margin-bottom: var(--space-sm); }

.intro-card-list {
    list-style: none; display: flex; flex-direction: column; gap: 6px;
    margin: var(--space-md) 0;
}
.intro-card-list li {
    padding-left: var(--space-md); position: relative; font-size: var(--text-sm);
}
.intro-card-list li::before {
    content: '•'; position: absolute; left: 0; color: var(--accent-light); font-weight: 700;
}
.intro-card-note { font-size: var(--text-sm); opacity: .85; }
.intro-card-note a { color: white; text-decoration: underline; }

/* ===========================================
   QUICK AVAILABILITY CHIPS
   =========================================== */
.quick-availability {
    margin: var(--space-xl) 0;
    padding: var(--space-lg);
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    background: var(--bg-alt); box-shadow: var(--shadow-sm);
    display: flex; gap: var(--space-lg); align-items: center;
    flex-wrap: wrap; justify-content: space-between;
}
.availability-copy h3 { margin-bottom: 2px; font-size: var(--text-base); font-weight: 700; }
.availability-copy p { margin: 0; color: var(--text-secondary); font-size: var(--text-sm); }

.availability-chips { display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.availability-chip {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 10px 16px; border-radius: 999px;
    border: 1px solid var(--border); background: white;
    color: var(--text); text-decoration: none;
    font-weight: 600; font-size: var(--text-sm);
    transition: var(--transition); cursor: pointer;
}
.availability-chip:hover {
    background: var(--accent); color: white;
    border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow);
}

/* ===========================================
   PROMO SELECTOR (services page)
   =========================================== */
.promo-selector {
    margin: var(--space-2xl) 0;
    border: 1px solid var(--border); border-radius: var(--radius-xl);
    background: white; box-shadow: var(--shadow);
    overflow: hidden;
}
.promo-selector-header {
    padding: var(--space-xl) var(--space-xl) 0;
}
.promo-selector-header h2 {
    font-size: var(--text-2xl); font-weight: 800;
    letter-spacing: -.02em; margin-bottom: var(--space-xs);
}
.promo-selector-header p {
    color: var(--text-secondary); font-size: var(--text-sm); margin-bottom: var(--space-lg);
}

.promo-tabs {
    display: flex; gap: var(--space-xs); padding: 0 var(--space-xl);
    border-bottom: 1px solid var(--border); overflow-x: auto;
}
.promo-tab {
    border: none; background: transparent; cursor: pointer;
    padding: var(--space-sm) var(--space-lg);
    font-weight: 700; font-size: var(--text-sm);
    color: var(--text-secondary); position: relative;
    transition: var(--transition-fast); white-space: nowrap;
    font-family: inherit;
}
.promo-tab::after {
    content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
    height: 2px; background: var(--accent);
    transform: scaleX(0); transition: transform .2s ease;
}
.promo-tab.active { color: var(--accent); }
.promo-tab.active::after { transform: scaleX(1); }
.promo-tab:hover { color: var(--text); }

.promo-body { display: grid; grid-template-columns: 240px 1fr; min-height: 320px; }
.promo-options {
    border-right: 1px solid var(--border); padding: var(--space-lg);
    display: flex; flex-direction: column; gap: var(--space-xs);
}
.promo-option {
    border: none; background: var(--bg-alt); cursor: pointer;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius); font-size: var(--text-sm);
    font-weight: 600; text-align: left; transition: var(--transition-fast);
    font-family: inherit; color: var(--text);
}
.promo-option:hover { background: var(--bg-section); }
.promo-option.active {
    background: var(--accent); color: white;
}
.promo-option-index { margin-right: 4px; opacity: .6; }

.promo-detail { padding: var(--space-xl); }
.promo-detail-badge {
    display: inline-flex; background: var(--accent); color: white;
    padding: 4px 12px; border-radius: 999px; font-size: var(--text-xs);
    font-weight: 700; margin-bottom: var(--space-sm);
}
.promo-detail-title {
    font-size: var(--text-xl); font-weight: 800;
    margin-bottom: var(--space-xs); letter-spacing: -.01em;
}
.promo-detail-price {
    font-size: var(--text-2xl); font-weight: 800;
    color: var(--accent); margin-bottom: var(--space-sm);
}
.promo-detail-description {
    color: var(--text-secondary); font-size: var(--text-sm);
    line-height: 1.6; margin-bottom: var(--space-md);
}
.promo-detail-features {
    list-style: none; display: flex; flex-direction: column; gap: 6px;
    margin-bottom: var(--space-lg);
}
.promo-detail-features li {
    padding-left: var(--space-lg); position: relative;
    font-size: var(--text-sm); color: var(--text);
}
.promo-detail-features li::before {
    content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700;
}
.promo-detail-note {
    font-size: var(--text-sm); color: var(--text-secondary);
    font-style: italic; margin-bottom: var(--space-md);
}
.promo-category-note {
    font-size: var(--text-sm); color: var(--text-secondary);
    padding: var(--space-md) var(--space-xl);
    border-top: 1px solid var(--border);
    background: var(--bg-alt);
}

/* ===========================================
   BRAKE SERVICE CARD
   =========================================== */
.brake-service-card {
    background: white; padding: var(--space-2xl);
    border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
    margin: var(--space-2xl) 0; text-align: center;
}
.brake-content h3 {
    color: var(--primary); margin-bottom: var(--space-lg);
    font-size: var(--text-2xl); font-weight: 800;
}
.brake-content > p {
    color: var(--text-secondary); line-height: 1.7;
    margin-bottom: var(--space-lg); font-size: var(--text-base);
}
.brake-features {
    list-style: none; display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-sm); margin: var(--space-xl) 0; text-align: left;
}
.brake-features li {
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-alt); border-radius: var(--radius);
    color: var(--text); font-weight: 600; font-size: var(--text-sm);
}
.brake-note {
    background: #FEF3C7; border-left: 4px solid #F59E0B;
    padding: var(--space-md); border-radius: var(--radius);
    margin: var(--space-lg) 0; color: #92400E; font-size: var(--text-sm);
}
.brake-buttons {
    display: flex; gap: var(--space-md); justify-content: center;
    flex-wrap: wrap; margin-top: var(--space-lg);
}

/* ===========================================
   PRICING TABLE
   =========================================== */
.pricing-table-section { margin: var(--space-2xl) 0; }
.pricing-table-container { margin-top: var(--space-xl); overflow-x: auto; }

.pricing-table {
    width: 100%; border-collapse: collapse; background: white;
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow); border: 1px solid var(--border);
}
.pricing-table thead {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%); color: white;
}
.pricing-table th {
    padding: var(--space-md) var(--space-lg); text-align: left;
    font-weight: 700; font-size: var(--text-sm);
}
.pricing-table tbody tr {
    border-bottom: 1px solid var(--border); transition: var(--transition-fast);
}
.pricing-table tbody tr:hover { background: var(--bg-alt); }
.pricing-table tbody tr:last-child { border-bottom: none; }
.pricing-table td {
    padding: var(--space-md) var(--space-lg); font-size: var(--text-sm);
}
.pricing-table td:first-child { font-weight: 600; }
.pricing-table td:last-child {
    font-weight: 700; color: var(--accent); text-align: right;
}
.table-note {
    margin-top: var(--space-lg); color: var(--text-secondary);
    font-size: var(--text-sm); text-align: center; font-style: italic;
}
.table-loading { text-align: center; color: var(--text-secondary); padding: var(--space-xl); }

/* ===========================================
   CONTACT INFO BOX (services page)
   =========================================== */
.contact-info-section-services { margin: var(--space-2xl) 0; }
.contact-info-box {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: white; padding: var(--space-2xl);
    border-radius: var(--radius-xl); text-align: center;
}
.contact-info-box h3 {
    font-size: var(--text-2xl); margin-bottom: var(--space-md); font-weight: 800;
}
.contact-info-box p {
    font-size: var(--text-base); margin-bottom: var(--space-lg); opacity: .95;
}
.contact-info-box a { color: white; text-decoration: underline; font-weight: 700; }
.contact-buttons {
    display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap;
}

/* ===========================================
   BOOKING SYSTEM (contact page)
   =========================================== */
.booking-section { margin-bottom: var(--space-3xl); }

.booking-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}
.booking-services, .booking-calendar, .booking-slots {
    background: white; border-radius: var(--radius-lg);
    border: 1px solid var(--border); box-shadow: var(--shadow);
    padding: var(--space-lg);
}
.booking-services h3, .booking-calendar h3, .booking-slots h3 {
    margin-bottom: var(--space-md); font-size: var(--text-base); font-weight: 700;
}
.booking-calendar-info { margin-bottom: var(--space-xs); }
.booking-calendar-controls {
    display: flex; gap: var(--space-sm); margin-bottom: var(--space-md);
}

.service-buttons { display: flex; flex-direction: column; gap: var(--space-sm); }
.service-button {
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: var(--space-sm) var(--space-md); background: var(--bg-alt);
    text-align: left; font-weight: 600; cursor: pointer;
    transition: var(--transition); font-size: var(--text-sm);
    font-family: inherit; color: var(--text);
}
.service-button:hover { background: white; border-color: var(--accent); }
.service-button.active {
    border-color: var(--accent); background: white;
    color: var(--accent); box-shadow: var(--shadow-sm);
}

.booking-days {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: var(--space-sm);
}
.booking-day {
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: var(--space-sm); text-align: left; background: var(--bg-alt);
    cursor: pointer; transition: var(--transition); font-family: inherit;
}
.booking-day:hover:not(:disabled) {
    background: white; border-color: var(--accent); transform: translateY(-1px);
}
.booking-day.active {
    border-color: var(--accent); background: white; box-shadow: var(--shadow-sm);
}
.booking-day strong { display: block; font-size: var(--text-sm); margin-bottom: 2px; }
.booking-day span { display: block; font-size: var(--text-xs); color: var(--text-secondary); }
.booking-day:disabled { opacity: .35; cursor: not-allowed; }

.slot-buttons { display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.slot-button {
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 10px 16px; background: white; cursor: pointer;
    font-weight: 600; color: var(--text); transition: var(--transition);
    font-size: var(--text-sm); font-family: inherit;
}
.slot-button:hover:not(:disabled) { border-color: var(--accent); background: rgba(37,99,235,.04); }
.slot-button.active {
    border-color: var(--accent); background: rgba(37,99,235,.08); color: var(--accent);
}
.slot-button:disabled { opacity: .3; cursor: not-allowed; }

.slot-note {
    margin-top: var(--space-md); color: #92400E;
    font-size: var(--text-sm); display: none;
}
.booking-selected {
    color: var(--text-secondary); margin-bottom: var(--space-md); font-size: var(--text-sm);
}

/* ===========================================
   CONTACT LAYOUT (2-col)
   =========================================== */
.contact-layout {
    display: grid; grid-template-columns: 280px 1fr;
    gap: var(--space-xl); margin-top: var(--space-2xl);
}
.contact-info-stack { display: flex; flex-direction: column; gap: var(--space-md); }

.contact-card {
    background: white; border-radius: var(--radius-lg);
    padding: var(--space-lg); border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.contact-card h2, .contact-card h3 {
    margin-bottom: var(--space-sm); font-weight: 700; font-size: var(--text-base);
}
.contact-card p {
    color: var(--text-secondary); line-height: 1.6; margin-bottom: var(--space-xs);
}
.contact-link {
    text-decoration: none; color: var(--text); font-weight: 600;
    transition: var(--transition-fast);
}
.contact-link:hover { color: var(--accent); }

.booking-summary { border: 2px solid var(--accent); }
.booking-summary-list {
    list-style: none; margin: var(--space-sm) 0 var(--space-md);
    display: flex; flex-direction: column; gap: 4px;
}
.booking-summary-list li { font-size: var(--text-sm); }

/* ===========================================
   FORMS
   =========================================== */
.contact-form-panel {
    background: white; border-radius: var(--radius-xl);
    padding: var(--space-xl); border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.pulse-highlight { animation: pulse 1s cubic-bezier(.4,0,.2,1); }
@keyframes pulse {
    0%, 100% { box-shadow: var(--shadow); }
    50% { box-shadow: 0 0 0 6px rgba(37,99,235,.15), var(--shadow); }
}
.contact-form-panel h2 {
    font-size: var(--text-2xl); font-weight: 800;
    margin-bottom: var(--space-lg); letter-spacing: -.02em;
}

.contact-form { display: flex; flex-direction: column; gap: var(--space-md); }
.form-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group { display: flex; flex-direction: column; }
.form-group label {
    margin-bottom: 6px; font-weight: 600;
    font-size: var(--text-sm); letter-spacing: -.01em;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px; border: 1px solid var(--border);
    border-radius: var(--radius); font-size: var(--text-sm);
    font-family: inherit; transition: var(--transition-fast);
    background: var(--bg-alt);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none; border-color: var(--accent);
    background: white; box-shadow: 0 0 0 3px rgba(37,99,235,.08);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #EF4444; background: #FEF2F2;
}
.field-error {
    color: #EF4444; font-size: var(--text-xs);
    margin-top: 4px; font-weight: 600;
}

.form-message {
    padding: var(--space-md) var(--space-lg); border-radius: var(--radius);
    margin-bottom: var(--space-lg); font-weight: 600; font-size: var(--text-sm);
}
.form-message.success {
    background: #D1FAE5; border: 1px solid #10B981; color: #065F46;
}
.form-message.error {
    background: #FEF2F2; border: 1px solid #EF4444; color: #991B1B;
}

/* ===========================================
   STICKY CTA BAR
   =========================================== */
.sticky-cta {
    position: fixed; left: 50%; bottom: var(--space-lg);
    transform: translateX(-50%);
    display: flex; gap: var(--space-xs); padding: 8px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 999px; box-shadow: var(--shadow-xl);
    border: 1px solid var(--border); z-index: 1100;
    animation: slideUp .4s cubic-bezier(.4,0,.2,1);
}
@keyframes slideUp {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.sticky-cta .cta-link {
    text-decoration: none; font-weight: 700; font-size: var(--text-sm);
    color: var(--text); padding: 10px 18px; border-radius: 999px;
    transition: var(--transition-fast); display: inline-flex;
    align-items: center; justify-content: center; min-width: 110px;
}
.sticky-cta .cta-link.primary {
    background: var(--accent); color: white; box-shadow: var(--shadow-sm);
}
.sticky-cta .cta-link.primary:hover {
    background: var(--accent-hover); transform: translateY(-2px);
}
.sticky-cta .cta-link.secondary {
    background: var(--bg-alt); border: 1px solid var(--border);
}
.sticky-cta .cta-link.secondary:hover { background: white; transform: translateY(-2px); }
.sticky-cta .cta-link.accent {
    background: var(--accent); color: white; box-shadow: var(--shadow-sm);
}
.sticky-cta .cta-link.accent:hover {
    background: var(--accent-light); transform: translateY(-2px);
}

/* ===========================================
   TOAST NOTIFICATIONS
   =========================================== */
.toast-container {
    position: fixed; top: var(--space-lg); right: var(--space-lg);
    display: flex; flex-direction: column; gap: var(--space-sm);
    z-index: 1200;
}
.toast {
    padding: var(--space-md) var(--space-lg); border-radius: var(--radius);
    background: var(--primary); color: white; box-shadow: var(--shadow-lg);
    opacity: 0; transform: translateX(80px);
    transition: opacity .3s cubic-bezier(.4,0,.2,1), transform .3s cubic-bezier(.4,0,.2,1);
    min-width: 260px; font-weight: 600; font-size: var(--text-sm);
}
.toast.visible { opacity: 1; transform: translateX(0); }
.toast-success { background: var(--accent); }
.toast-error { background: #EF4444; }

/* ===========================================
   WHATSAPP FLOAT
   =========================================== */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px;
    background: #25D366; color: white;
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-lg); z-index: 1000;
    transition: var(--transition); text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(37,211,102,.45);
}
.whatsapp-float svg { width: 32px; height: 32px; }
.whatsapp-float span { display: none; }

/* ===========================================
   RESPONSIVE – Mobile-first breakpoints
   =========================================== */

/* Hide sticky CTA on desktop */
@media (min-width: 960px) {
    .sticky-cta { display: none; }
}

/* Tablet & below */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-card { max-width: 420px; }
    .intro-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .booking-grid { grid-template-columns: 1fr 1fr; }
    .booking-services { grid-column: 1 / -1; }
    .contact-layout { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .promo-body { grid-template-columns: 1fr; }
    .promo-options {
        border-right: none; border-bottom: 1px solid var(--border);
        flex-direction: row; overflow-x: auto; padding: var(--space-sm);
    }
    .promo-option { white-space: nowrap; }
}

/* Mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle { display: flex; }

    .nav-menu {
        position: fixed; top: 60px; left: -100%;
        flex-direction: column;
        background: rgba(255,255,255,.98);
        backdrop-filter: blur(20px);
        width: 100%; text-align: center;
        transition: left .3s cubic-bezier(.4,0,.2,1);
        box-shadow: var(--shadow-xl);
        padding: var(--space-xl) 0; gap: var(--space-md);
    }
    .nav-actions {
        flex-direction: column; align-items: flex-end;
        width: 100%; gap: var(--space-md);
    }
    .nav-menu.active { left: 0; }

    .hero-modern { padding: var(--space-2xl) 0; }
    .hero-actions { flex-direction: column; align-items: stretch; }

    .services-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .booking-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .sticky-cta {
        width: calc(100% - 24px); justify-content: space-between;
        left: 12px; transform: none; border-radius: var(--radius-lg);
    }
    .sticky-cta .cta-link { flex: 1; min-width: auto; padding: 10px 8px; font-size: var(--text-xs); }

    .whatsapp-float { bottom: 90px; width: 52px; height: 52px; }
    .whatsapp-float svg { width: 26px; height: 26px; }

    .quick-availability { flex-direction: column; align-items: flex-start; }
    .availability-chips { width: 100%; }

    .trust-strip-grid { gap: var(--space-md); }
}

/* Small phones */
@media (max-width: 480px) {
    .container { padding: 0 var(--space-md); }
    .logo-img { height: 34px; }
    .btn { padding: 10px 18px; font-size: var(--text-xs); }
    .btn-large { padding: 12px 22px; font-size: var(--text-sm); }
}
