/* ============================================
   AUTOMEDIC - Clean Modern Professional Design 2025
   ============================================ */

/* Modern CSS Variables */
:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --accent: #10b981;
    --accent-dark: #059669;
    --text: #111827;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg: #ffffff;
    --bg-alt: #f9fafb;
    --bg-section: #f3f4f6;
    --border: #e5e7eb;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --transition: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
}

/* Skip to main content for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Smooth scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Performance optimizations */
* {
    -webkit-tap-highlight-color: transparent;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

/* Modern Hero */
.hero-modern {
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.4), rgba(15, 23, 42, 0.95)), #0f172a;
    color: #f8fafc;
    padding: 80px 0 60px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: stretch;
}

.hero-text {
    color: #f8fafc;
}

.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    color: rgba(248, 250, 252, 0.7);
    margin-bottom: 16px;
}

.hero-modern h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(248, 250, 252, 0.85);
    margin-bottom: 20px;
}

.hero-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-highlights li {
    padding-left: 20px;
    border-left: 2px solid rgba(248, 250, 252, 0.4);
    color: rgba(248, 250, 252, 0.8);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.hero-meta-item {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(248, 250, 252, 0.15);
    border-radius: var(--radius-lg);
    padding: 16px;
}

.hero-meta-item span {
    display: block;
    font-weight: 600;
}

.hero-meta-item small {
    color: rgba(248, 250, 252, 0.7);
}

.hero-card {
    background: white;
    color: var(--text);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

.hero-card-header h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.hero-card-eyebrow {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.hero-card-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
}

.hero-card-row a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.status-pill {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-dark);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.hero-card-cta {
    text-align: center;
}

.hero-card-cta .btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 12px;
}

.hero-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Trust Strip */
.trust-strip {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    padding: 24px 0;
}

.trust-item {
    background: white;
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.trust-label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--primary);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:focus {
    outline: 3px solid rgba(37, 99, 235, 0.5);
    outline-offset: 2px;
    border-radius: 4px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

/* Hero Section */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

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

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.85) 0%, rgba(30, 64, 175, 0.85) 100%);
}

.hero-content-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    font-weight: 500;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 4;
    pointer-events: none;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.slider-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.slider-btn:focus {
    outline: 3px solid rgba(37, 99, 235, 0.5);
    outline-offset: 2px;
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: white;
    width: 24px;
    border-radius: 6px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary:focus,
.btn-secondary:focus,
.btn:focus {
    outline: 3px solid rgba(37, 99, 235, 0.5);
    outline-offset: 2px;
}

.btn-primary:active,
.btn-secondary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Main Content */
.main-content {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text);
}

.underline {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 1.5rem auto;
    border-radius: 2px;
}

/* About Section */
.about-section {
    margin-bottom: 80px;
}

.about-modern {
    margin: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    align-items: start;
}

.about-aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.info-card h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: var(--primary);
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-card li {
    padding-left: 18px;
    position: relative;
    color: var(--text-secondary);
}

.info-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text);
}

.about-text strong {
    color: var(--primary);
    font-weight: 600;
}

.lead {
    font-size: 20px;
    font-weight: 500;
}

/* Info Panels */
.info-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin: 40px 0 80px;
}

.info-panel {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.info-panel h3 {
    margin-bottom: 12px;
}

.panel-links,
.panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.panel-links a {
    color: var(--primary);
    text-decoration: none;
    padding: 10px 14px;
    border-radius: var(--radius);
    background: var(--bg-alt);
    transition: var(--transition);
}

.panel-links a:hover {
    background: var(--primary);
    color: white;
}

.panel-list li {
    color: var(--text-secondary);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

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

.service-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.service-card > p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-details {
    list-style: none;
    margin-top: 16px;
}

.service-details li {
    padding: 8px 0;
    padding-left: 24px;
    color: var(--text-secondary);
    position: relative;
}

.service-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Emergency Banner */
.emergency-banner {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 24px 0;
    margin: 48px 0;
    border-radius: var(--radius-lg);
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.emergency-icon {
    font-size: 32px;
}

.emergency-text h3 {
    margin: 0;
    font-size: 24px;
}

.emergency-text p {
    margin: 4px 0 0 0;
    opacity: 0.9;
}

.btn-emergency {
    white-space: nowrap;
}

/* Service Area */
.service-area-section {
    margin: 80px 0;
}

.service-area-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    margin-top: 48px;
}

.service-area-list h3 {
    color: var(--primary);
    margin-bottom: 24px;
    font-size: 24px;
}

.areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.areas-grid ul {
    list-style: none;
}

.areas-grid li {
    padding: 8px 0;
    color: var(--text);
    font-weight: 500;
}

.map-container {
    position: relative;
}

.map-marker-card {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 12px;
    align-items: center;
    max-width: 240px;
}

.map-marker-card .marker-icon {
    font-size: 28px;
}

.map-marker-card p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.4;
    font-size: 0.9rem;
}

.map-container iframe {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.map-info {
    margin-top: 16px;
    padding: 20px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    text-align: center;
}

.map-info p {
    margin-bottom: 12px;
    color: var(--text);
}

/* Calculator */
.calculator-section {
    background: var(--bg-alt);
    padding: 80px 0;
    margin: 80px 0;
    border-radius: var(--radius-xl);
}

.calculator-container {
    max-width: 800px;
    margin: 48px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.calculator-form {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.calc-group {
    margin-bottom: 20px;
}

.calc-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
}

.calc-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 16px;
    transition: var(--transition);
}

.calc-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.quote-result {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.quote-price {
    font-size: 48px;
    font-weight: 800;
    margin: 16px 0;
}

.quote-note {
    font-size: 14px;
    opacity: 0.9;
    margin: 16px 0;
}

/* FAQ */
.faq-section {
    margin: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 48px auto 0;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-alt);
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
}

.faq-toggle {
    font-size: 24px;
    color: var(--primary);
    font-weight: 300;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Reviews */
.reviews-section {
    background: var(--bg-alt);
    padding: 80px 0;
    margin: 80px 0;
    border-radius: var(--radius-xl);
}

.reviews-container {
    max-width: 600px;
    margin: 48px auto 0;
}

.google-reviews-widget {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border);
}

.google-logo {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
}

.stars-large {
    color: #fbbf24;
    font-size: 24px;
    display: block;
}

.rating-text {
    display: block;
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 8px;
}

.reviews-note {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.reviews-cta {
    margin-top: 24px;
    color: var(--text-secondary);
    font-size: 14px;
}

.reviews-cta a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.reviews-cta a:hover {
    text-decoration: underline;
}

/* Trust Badges */
.trust-badges-section {
    margin: 80px 0;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.trust-badge {
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.trust-badge:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.badge-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.trust-badge h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.trust-badge p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* Action Cards */
.action-cards-section {
    margin: 80px 0;
}

.action-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.action-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.action-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.action-card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.action-card h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}

.action-card-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.quick-links-list {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.quick-links-list li {
    margin-bottom: 8px;
}

.quick-links-list a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: block;
    padding: 12px 16px;
    border-radius: var(--radius);
    background: var(--bg-alt);
    transition: var(--transition);
}

.quick-links-list a:hover {
    background: var(--primary);
    color: white;
    transform: translateX(4px);
}

/* Gallery */
.gallery-section {
    margin: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    aspect-ratio: 1;
}

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

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-alt);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    border: 2px dashed var(--border);
}

.gallery-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.4;
}

.gallery-placeholder p {
    color: var(--text);
    font-weight: 600;
    margin: 8px 0;
}

.gallery-placeholder small {
    color: var(--text-secondary);
    font-size: 14px;
}

.gallery-note {
    text-align: center;
    color: var(--text-secondary);
    margin-top: 32px;
    font-style: italic;
}

/* Image Section */
.image-section {
    margin: 80px 0;
    text-align: center;
}

.main-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
    display: block;
}

/* Service Intro Banner */
.service-intro-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 60px 40px;
    border-radius: var(--radius-xl);
    margin: 48px 0;
    text-align: center;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    text-align: left;
    align-items: start;
}

.intro-main h2 {
    margin-bottom: 12px;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.intro-subtitle {
    font-size: 1.25rem;
    margin-bottom: 24px;
    opacity: 0.95;
}

.specials-banner {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: var(--radius);
    margin: 24px 0;
}

.specials-banner h3 {
    margin: 0;
    font-size: 1.5rem;
}

.intro-description {
    font-size: 1.125rem;
    margin: 24px 0;
    line-height: 1.7;
}

.intro-checklist {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.intro-checklist li {
    position: relative;
    padding-left: 32px;
    font-weight: 500;
}

.intro-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 700;
}

.intro-note {
    font-size: 1rem;
    line-height: 1.7;
    margin: 24px 0;
    opacity: 0.95;
}

.intro-card {
    background: rgba(15, 23, 42, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-lg);
}

.intro-card h3 {
    font-size: 1.5rem;
}

.intro-card-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.intro-rate {
    font-size: 1.8rem;
    margin: 12px 0;
}

.intro-card-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.intro-card-list li {
    padding-left: 20px;
    position: relative;
}

.intro-card-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.intro-card-note a {
    color: white;
    font-weight: 600;
}

.pricing-note {
    margin-top: 24px;
    font-size: 1.125rem;
}

.highlight-price {
    color: #fbbf24;
    font-size: 1.5em;
    font-weight: 800;
}

/* Pricing Table */
.pricing-table-section {
    margin: 80px 0;
}

.pricing-table-container {
    margin-top: 48px;
    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, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.pricing-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
}

.pricing-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.pricing-table tbody tr:hover {
    background: var(--bg-alt);
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table td {
    padding: 16px 20px;
    color: var(--text);
}

.pricing-table td:first-child {
    font-weight: 500;
}

.pricing-table td:last-child {
    font-weight: 700;
    color: var(--primary);
    text-align: right;
    font-size: 17px;
}

.table-note {
    margin-top: 24px;
    color: var(--text-secondary);
    font-size: 14px;
    text-align: center;
    font-style: italic;
}

/* Contact Info */
.contact-info-section-services {
    margin: 80px 0;
}

.contact-info-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 48px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.contact-info-box h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-info-box p {
    font-size: 1.125rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.contact-info-box a {
    color: white;
    text-decoration: underline;
}

.contact-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Form */
.contact-hero-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-hero-text p {
    line-height: 1.8;
    color: var(--text-secondary);
}

.contact-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.contact-info-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.contact-card h2,
.contact-card h3 {
    margin-bottom: 12px;
    color: var(--text);
}

.contact-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-card .contact-link {
    display: inline-block;
    padding: 10px 14px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-decoration: none;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
    margin-bottom: 8px;
}

.contact-card .contact-link:hover {
    background: var(--primary);
    color: white;
}

.booking-section {
    margin: 80px 0;
}

.booking-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.booking-step {
    flex: 1;
    min-width: 160px;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.booking-step span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.booking-step.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.booking-step.active span {
    background: rgba(255,255,255,0.15);
    border-color: white;
    color: white;
}

.booking-step.completed {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.booking-step.completed span {
    background: rgba(255,255,255,0.2);
    border-color: white;
    color: white;
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.booking-services,
.booking-calendar,
.booking-slots {
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 24px;
}

.booking-services h3 {
    margin-bottom: 12px;
}

.service-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-button {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px;
    background: var(--bg-alt);
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.service-button.active {
    border-color: var(--primary);
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow);
}

.service-note {
    margin-top: 16px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.booking-summary-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-summary-list li {
    color: var(--text);
}

.booking-calendar-info h3 {
    margin-bottom: 8px;
}

.booking-calendar-info p {
    color: var(--text-secondary);
}

.booking-calendar-controls {
    display: flex;
    gap: 12px;
    margin: 16px 0;
    flex-wrap: wrap;
}

.booking-days {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}

.booking-day {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 12px;
    text-align: left;
    background: var(--bg-alt);
    cursor: pointer;
    transition: var(--transition);
}

.booking-day strong {
    display: block;
    font-size: 1rem;
}

.booking-day span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.booking-day.active {
    border-color: var(--primary);
    background: white;
    box-shadow: var(--shadow);
}

.booking-day:disabled,
.slot-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.booking-slots h3 {
    margin-bottom: 12px;
}

.booking-selected {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.slot-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

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

.slot-button.active {
    border-color: var(--accent);
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-dark);
}

.slot-note {
    margin-top: 16px;
    color: #92400e;
    display: none;
}

.booking-hint {
    margin-top: 16px;
    background: var(--bg-alt);
    padding: 16px;
    border-radius: var(--radius);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-form-panel {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.pulse-highlight {
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.3) !important;
    transition: box-shadow 0.3s ease;
}

.contact-form-panel h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.field-error {
    color: #ef4444;
    font-size: 14px;
    margin-top: 6px;
    display: block;
}

.form-message {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.form-message.success {
    background: #d1fae5;
    border: 1px solid #10b981;
    color: #065f46;
}

.form-message.error {
    background: #fee2e2;
    border: 1px solid #ef4444;
    color: #991b1b;
}

.form-note {
    margin-top: 32px;
    padding: 20px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    font-size: 14px;
    color: var(--text-secondary);
}

.form-note code {
    background: rgba(37, 99, 235, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    color: var(--primary);
}

.contact-features {
    list-style: none;
}

.contact-features li {
    padding: 8px 0;
    color: var(--text-secondary);
}

.appointment-note {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-top: 24px;
}

.appointment-note p {
    margin: 0;
    color: #92400e;
    font-size: 15px;
    line-height: 1.6;
}

/* Promotions */
.promo-intro {
    margin: 80px 0 40px;
}

.promo-intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.promo-summary,
.promo-payment-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.promo-summary-list {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--text-secondary);
}

.promo-summary-list li::before {
    content: '•';
    color: var(--accent);
    display: inline-block;
    width: 16px;
    margin-right: 8px;
}

.promo-payment-card img {
    margin-top: 16px;
    max-width: 160px;
}

.promo-note-card {
    margin-top: 24px;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 20px;
    border-left: 4px solid var(--primary);
    color: var(--text-secondary);
}

.promo-selector {
    margin: 80px 0;
}

.promo-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.promo-tab {
    border: 1px solid var(--border);
    background: white;
    color: var(--text);
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.promo-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.promo-category-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 16px;
    display: none;
}

.promo-layout {
    display: grid;
    grid-template-columns: minmax(240px, 320px) 1fr;
    gap: 24px;
    align-items: start;
}

.promo-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.promo-option {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px 18px;
    background: white;
    text-align: left;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
}

.promo-option.active {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    color: var(--primary);
}

.promo-option:focus {
    outline: 3px solid rgba(37, 99, 235, 0.3);
    outline-offset: 2px;
}

.promo-detail {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.promo-detail-badge {
    display: inline-flex;
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.promo-detail-price {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 8px 0 12px;
    color: var(--text);
}

.promo-detail-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.promo-detail-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.promo-detail-features li {
    padding: 10px 12px;
    border-radius: var(--radius);
    background: var(--bg-alt);
    color: var(--text-secondary);
}

.promo-detail-note {
    margin-bottom: 20px;
    color: #92400e;
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 12px 16px;
    border-radius: var(--radius);
    display: none;
}

.promo-detail-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.promo-option[hidden] {
    display: none;
}

.promotions-section {
    margin: 80px 0;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.promo-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid var(--border);
    position: relative;
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.promo-card:hover::before {
    transform: scaleX(1);
}

.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.promo-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Promotions preview on home */
.promotions-preview {
    margin: 80px 0;
}

.promo-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.promo-preview-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    position: relative;
}

.promo-preview-card .promo-badge {
    position: absolute;
    top: 16px;
    right: 16px;
}

.promo-preview-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.promo-preview-card p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.promo-note {
    margin-top: 20px;
    color: var(--text-secondary);
    font-style: italic;
}

/* Customer highlight */
.customer-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: stretch;
    margin: 80px 0;
}

.customer-highlight-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.customer-highlight-card p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.customer-stats {
    background: var(--bg-alt);
    border-radius: var(--radius-xl);
    padding: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    text-align: center;
    border: 1px solid var(--border);
}

.customer-stats span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.customer-stats small {
    color: var(--text-secondary);
}

.promo-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}

.promo-price {
    margin: 20px 0;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 18px;
    margin-right: 8px;
}

.new-price {
    color: var(--primary);
    font-size: 32px;
    font-weight: 800;
}

.promo-card > p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.promo-features {
    list-style: none;
    margin-bottom: 24px;
}

.promo-features li {
    padding: 8px 0;
    color: var(--text);
}

.payment-banner {
    background: linear-gradient(135deg, #0070ba 0%, #003087 100%);
    color: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    margin: 48px 0;
    text-align: center;
}

.payment-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.payment-content p {
    font-size: 16px;
    margin-bottom: 16px;
    opacity: 0.95;
}

.paypal-logo {
    max-width: 200px;
    height: auto;
    margin-top: 16px;
}

.pricing-note {
    background: #eff6ff;
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: var(--radius);
    margin: 32px 0;
    color: var(--text);
    font-size: 15px;
}

.group-note {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 16px 20px;
    border-radius: var(--radius);
    margin: 24px 0;
    color: #92400e;
    font-size: 14px;
}

.group-card {
    border: 2px solid var(--accent);
}

.brake-service-card {
    background: white;
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin-top: 48px;
    text-align: center;
}

.brake-content h3 {
    color: var(--primary);
    margin-bottom: 24px;
    font-size: 28px;
}

.brake-content > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 18px;
}

.brake-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 32px 0;
    text-align: left;
}

.brake-features li {
    padding: 12px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    color: var(--text);
}

.brake-note {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 16px;
    border-radius: var(--radius);
    margin: 32px 0;
    color: #92400e;
    font-size: 15px;
}

.brake-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.testimonial-card.with-image {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.testimonial-image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.testimonial-content {
    flex: 1;
}

.testimonial-rating {
    margin-bottom: 16px;
}

.stars {
    color: #fbbf24;
    font-size: 18px;
}

.testimonial-text {
    color: var(--text);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 16px;
}

.testimonial-author {
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.testimonial-author strong {
    display: block;
    color: var(--text);
    margin-bottom: 4px;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 14px;
}

.customer-overview {
    margin: 48px 0 80px;
}

.customer-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    align-items: start;
}

.customer-overview-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text);
}

.customer-highlights {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.customer-highlights li::before {
    content: '•';
    color: var(--accent);
    display: inline-block;
    width: 16px;
    font-size: 1.2em;
    font-weight: 700;
    margin-right: 8px;
}

.customer-highlights li {
    color: var(--text-secondary);
}

.customer-overview-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.customer-overview-card h3 {
    margin-bottom: 12px;
}

.customer-overview-card a {
    display: inline-flex;
    margin: 12px 0 20px;
    align-items: center;
}

.overview-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--text-secondary);
}

.intro-text strong {
    color: var(--primary);
    font-weight: 600;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.95;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    margin-top: 80px;
    text-align: center;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

/* Terms */
.terms-section {
    margin-top: 80px;
    padding: 40px;
    background: var(--bg-alt);
    border-radius: var(--radius-xl);
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-content p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 64px 0 24px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--accent);
    font-weight: 700;
    font-size: 20px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 32px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    padding: 4px 0;
}

.social-link:hover {
    color: var(--accent);
    padding-left: 8px;
}

/* 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: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

.whatsapp-float span {
    display: none;
}

/* Better touch targets for mobile */
@media (max-width: 768px) {
    .btn,
    a.btn {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 24px;
    }
    
    .nav-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-grid,
    .info-panels,
    .promo-preview-grid,
    .customer-highlight,
    .trust-strip-grid,
    .intro-grid,
    .promo-layout,
    .promo-intro-grid,
    .contact-layout,
    .customer-overview-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

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

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 32px 0;
        gap: 16px;
    }

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

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

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

    .hero-description {
        font-size: 1rem;
    }

    .page-header {
        padding: 48px 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .main-content {
        padding: 48px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .service-area-content {
        grid-template-columns: 1fr;
    }

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

    .emergency-content {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-card.with-image {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-image {
        margin: 0 auto;
    }

    .features-grid,
    .services-grid,
    .promotions-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-slider {
        height: 500px;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

    .section-header h2 {
        font-size: 1.75rem;
    }

    .logo-img {
        height: 40px;
    }
}
