/* ============================================
   RAPID REPAIR OKC — "Modern Muscle Garage"
   Dark automotive theme with gold accents
   ============================================ */

/* --- CSS Variables --- */
:root {
    --bg-primary: #0D0D0D;
    --bg-secondary: #141414;
    --bg-tertiary: #1A1A1A;
    --bg-card: #1E1E1E;
    --bg-card-hover: #262626;
    --accent: #F5A623;
    --accent-hover: #FFB84D;
    --accent-dim: rgba(245, 166, 35, 0.15);
    --accent-glow: rgba(245, 166, 35, 0.4);
    --red: #C4141A;
    --red-hover: #E01B22;
    --text-primary: #F0F0F0;
    --text-secondary: #BBBBBB;
    --text-muted: #888888;
    --border: #2A2A2A;
    --border-light: #333333;
    --green: #4CAF50;
    --font-display: 'Teko', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --font-stats: 'Rajdhani', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
    --shadow-gold: 0 0 20px rgba(245, 166, 35, 0.2);
    --radius: 4px;
    --radius-lg: 8px;
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Subtle noise texture overlay on body */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

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

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

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

ul, ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-stats);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 2px;
    background: var(--accent);
    transform: translateY(-50%);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 20px;
    line-height: 1.05;
}

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

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

.text-accent {
    color: var(--accent);
}

.text-accent-red {
    color: var(--red);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.btn:hover::after {
    transform: translateX(100%);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #D4901A 100%);
    color: #0D0D0D;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
    color: #0D0D0D;
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background: var(--accent-dim);
    color: #fff;
    border-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-danger {
    background: transparent;
    color: #fff;
    border: 2px solid var(--red);
}

.btn-danger:hover {
    background: rgba(196, 20, 26, 0.15);
    color: #fff;
    border-color: var(--red-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--accent);
    background: var(--accent-dim);
    color: var(--accent-hover);
}

.btn-lg {
    padding: 20px 48px;
    font-size: 1.3rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
}

.nav-header.scrolled {
    background: rgba(13, 13, 13, 0.95);
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
}

.logo-rapid {
    color: #fff;
    font-size: 1.6rem;
    margin-right: 4px;
}

.logo-repair {
    color: var(--accent);
    font-size: 1.6rem;
    margin-right: 4px;
}

.logo-okc {
    color: var(--red);
    font-size: 1.6rem;
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: var(--radius);
    transition: all var(--transition);
    letter-spacing: 0.03em;
}

.nav-link:hover {
    color: var(--accent);
    background: var(--accent-dim);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--accent) 0%, #D4901A 100%);
    color: #0D0D0D;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 10px 14px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all var(--transition);
    animation: subtle-pulse 3s ease-in-out infinite;
    flex-shrink: 0;
}

.nav-cta:hover {
    color: #0D0D0D;
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
    box-shadow: var(--shadow-gold);
    transform: translateY(-1px);
}

@keyframes subtle-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.3); }
    50% { box-shadow: 0 0 0 6px rgba(245, 166, 35, 0); }
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 26px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition);
    border-radius: 2px;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-mechanic.jpg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.hero-bg.loaded {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(13, 13, 13, 0.7) 0%,
        rgba(13, 13, 13, 0.5) 40%,
        rgba(13, 13, 13, 0.75) 70%,
        rgba(13, 13, 13, 0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-stats);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    line-height: 1;
    margin-bottom: 24px;
    text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.hero-title-accent {
    color: var(--accent);
    position: relative;
}

.hero-title-accent::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 50px;
}

/* Hero scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--accent);
    border-radius: 12px;
    position: relative;
}

.hero-scroll-indicator span::after {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-bob 2s ease-in-out infinite;
}

@keyframes scroll-bob {
    0%, 100% { top: 6px; opacity: 1; }
    50% { top: 18px; opacity: 0.3; }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    position: relative;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    margin-top: -40px;
    z-index: 3;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-align: center;
}

.stat-value {
    display: flex;
    align-items: baseline;
    gap: 0;
    line-height: 1;
}

.stat-number {
    font-family: var(--font-stats);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-stats);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent);
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-icon {
    margin-bottom: 4px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border-light);
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 20%, var(--red) 50%, var(--accent) 80%, transparent 100%);
    opacity: 0.4;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover {
    border-color: var(--accent);
    background: var(--bg-card-hover);
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-md), 0 0 30px rgba(245, 166, 35, 0.08);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card--featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(245, 166, 35, 0.05) 100%);
}

.service-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-family: var(--font-stats);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--red);
    color: #fff;
    padding: 4px 10px;
    border-radius: var(--radius);
}

.service-icon {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background: var(--accent-dim);
    border: 1px solid rgba(245, 166, 35, 0.2);
}

.service-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.service-link {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

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

.service-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.services-cta {
    text-align: center;
    padding-top: 20px;
}

.services-cta p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.why-us-texture {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(245, 166, 35, 0.1) 20px,
        rgba(245, 166, 35, 0.1) 21px
    );
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 24px;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: all var(--transition);
}

.why-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md), 0 4px 30px rgba(245, 166, 35, 0.06);
}

.why-card h3 {
    transition: color var(--transition);
}

.why-card:hover h3 {
    color: var(--accent);
}

.why-card--highlight {
    border-color: var(--red);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(196, 20, 26, 0.08) 100%);
    box-shadow: 0 0 30px rgba(196, 20, 26, 0.1);
}

.why-number {
    font-family: var(--font-stats);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.why-icon {
    margin-bottom: 12px;
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.why-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-primary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 50px;
}

.step-card {
    text-align: center;
    padding: 40px 28px;
    position: relative;
}

.step-number {
    font-family: var(--font-stats);
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.7;
}

.step-connector {
    position: absolute;
    top: 50px;
    right: -16px;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.step-card:last-child .step-connector {
    display: none;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.step-card p a {
    font-weight: 600;
}

.how-cta {
    text-align: center;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

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

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
}

.about-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(13, 13, 13, 0.9);
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 16px 24px;
    text-align: center;
    backdrop-filter: blur(8px);
}

.badge-years {
    display: block;
    font-family: var(--font-stats);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.badge-text {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.2em;
}

.about-content .section-tag {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text-primary);
}

/* ============================================
   SERVICE AREAS
   ============================================ */
.service-areas {
    padding: 100px 0;
    background: var(--bg-primary);
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
}

.area-tag {
    display: inline-block;
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.area-tag:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-dim);
    transform: translateY(-2px);
}

.area-tag:first-child {
    border-color: var(--accent);
    color: var(--accent);
    font-weight: 600;
    background: var(--accent-dim);
}

.areas-cta {
    text-align: center;
}

.areas-cta p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: Georgia, serif;
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.15;
    line-height: 1;
}

.testimonial-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    border: none;
    padding: 0;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.author-location {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: 100px 0;
    background: var(--bg-primary);
}

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

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--accent);
    transition: transform var(--transition);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   EMERGENCY CTA
   ============================================ */
.emergency-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, rgba(245, 166, 35, 0.08) 100%);
    border-top: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.emergency-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(245, 166, 35, 0.03) 40px,
        rgba(245, 166, 35, 0.03) 41px
    );
    pointer-events: none;
}

.emergency-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.emergency-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 16px;
}

.emergency-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.emergency-phone {
    margin-bottom: 16px;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-stats);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--red);
    text-decoration: none;
    transition: all var(--transition);
    animation: phone-glow 2s ease-in-out infinite;
}

.phone-link:hover {
    color: var(--red-hover);
    transform: scale(1.05);
}

@keyframes phone-glow {
    0%, 100% { text-shadow: 0 0 10px rgba(196, 20, 26, 0.3); }
    50% { text-shadow: 0 0 25px rgba(196, 20, 26, 0.5); }
}

.emergency-email {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.emergency-email a {
    font-weight: 600;
}

.emergency-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.e-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent-dim);
    border: 1px solid rgba(245, 166, 35, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 16px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
}

.footer-logo .logo-rapid,
.footer-logo .logo-repair { margin-right: 6px; }

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color var(--transition);
}

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

.footer-heading {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    color: var(--accent);
}

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: all var(--transition);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-areas-text {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-hours p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.6;
}


/* ============================================
   ANIMATIONS
   ============================================ */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.animate-fade-down {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeDown 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 400px;
    }

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

    .why-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-secondary);
        border-left: 1px solid var(--border);
        padding: 80px 24px 24px;
        transition: right var(--transition);
        flex-direction: column;
        z-index: 999;
    }

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

    .nav-links {
        flex-direction: column;
        gap: 4px;
    }

    .nav-link {
        padding: 14px 16px;
        font-size: 1rem;
        border-bottom: 1px solid var(--border);
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        padding: 100px 16px 60px;
    }

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

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
    }

    .stats-grid {
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .step-connector {
        display: none;
    }

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

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

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

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

    .btn {
        width: 100%;
        justify-content: center;
    }

    .btn-lg {
        padding: 18px 24px;
        font-size: 1.1rem;
    }

    .emergency-badges {
        flex-direction: column;
        align-items: center;
    }

    .phone-link {
        font-size: 2rem;
    }

    /* Mobile sticky call button */
    .mobile-call-btn {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 998;
        background: linear-gradient(135deg, var(--accent) 0%, #D4901A 100%);
        padding: 16px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        font-family: var(--font-display);
        font-size: 1.2rem;
        font-weight: 600;
        color: #0D0D0D;
        text-decoration: none;
        letter-spacing: 0.08em;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
    }
}

@media (min-width: 769px) {
    .mobile-call-btn {
        display: none;
    }
}

/* ============================================
   QUOTE FORM
   ============================================ */
.quote-form-wrapper {
    margin-top: 48px;
    padding: 40px;
    background: rgba(13, 13, 13, 0.6);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(8px);
}

.form-heading {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 24px;
    color: var(--accent);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

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

.form-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input {
    padding: 14px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition);
}

.form-input::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
}

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

.form-group:last-of-type {
    margin-bottom: 20px;
}

.btn-form-submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    background: linear-gradient(135deg, var(--red) 0%, #A01015 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(196, 20, 26, 0.3);
}

.btn-form-submit:hover {
    background: linear-gradient(135deg, var(--red-hover) 0%, var(--red) 100%);
    color: #fff;
    box-shadow: 0 0 20px rgba(196, 20, 26, 0.4);
}

/* ============================================
   VEHICLES SERVED
   ============================================ */
.vehicles-served {
    margin-top: 48px;
    text-align: center;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.vehicles-heading {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--accent);
}

.vehicles-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.vehicles-text strong {
    color: var(--text-primary);
}

/* ============================================
   SERVICE PAGES
   ============================================ */
.service-page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 72px;
}

.service-page-hero .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-page-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 13, 13, 0.88) 0%,
        rgba(13, 13, 13, 0.7) 50%,
        rgba(13, 13, 13, 0.85) 100%
    );
}

.service-page-hero .hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 24px;
    max-width: 800px;
}

.service-page-hero .hero-content .section-tag {
    text-align: left;
}

.service-page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 16px;
    line-height: 1.05;
}

.service-page-hero .hero-subtitle {
    text-align: left;
    font-size: 1.1rem;
    margin-bottom: 28px;
}

.service-page-hero .hero-ctas {
    justify-content: flex-start;
}

/* Service detail content */
.service-detail {
    padding: 80px 0;
    background: var(--bg-primary);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-detail-content h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.service-detail-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-detail-content ul {
    margin-bottom: 20px;
}

.service-detail-content li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    padding: 6px 0 6px 28px;
    position: relative;
}

.service-detail-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 16px;
    height: 2px;
    background: var(--accent);
}

.service-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    position: sticky;
    top: 96px;
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Signs you need this service */
.service-signs {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
}

.signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.sign-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--red);
    border-radius: var(--radius);
    padding: 24px;
    transition: all var(--transition);
}

.sign-card:hover {
    border-left-color: var(--accent);
    transform: translateX(4px);
    background: var(--bg-card-hover);
}

.sign-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.sign-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Service page CTA band */
.service-cta-band {
    padding: 60px 0;
    background: var(--bg-primary);
    text-align: center;
}

.service-cta-band h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.service-cta-band p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

/* Related services */
.related-services {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: all var(--transition);
    text-decoration: none;
    display: block;
}

.related-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.related-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #fff;
    transition: color var(--transition);
}

.related-card:hover h3 {
    color: var(--accent);
}

.related-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Breadcrumb */
.breadcrumb {
    padding: 16px 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.breadcrumb-list a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.breadcrumb-list a:hover {
    color: var(--accent);
}

.breadcrumb-sep {
    color: var(--border-light);
}

.breadcrumb-current {
    color: var(--accent);
}

/* ============================================
   404 PAGE
   ============================================ */
.page-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 72px 24px 40px;
    position: relative;
    overflow: hidden;
}

.page-404::before {
    content: '404';
    position: absolute;
    font-family: var(--font-display);
    font-size: clamp(15rem, 30vw, 30rem);
    font-weight: 700;
    color: var(--bg-card);
    z-index: 0;
    line-height: 1;
    user-select: none;
    opacity: 0.5;
}

.page-404-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.page-404-code {
    font-family: var(--font-stats);
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 700;
    color: var(--red);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 40px rgba(196, 20, 26, 0.3);
}

.page-404-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 16px;
    color: var(--accent);
}

.page-404-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.page-404-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Service includes grid — replaces boring bullet lists */
.service-includes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.include-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.include-item:hover {
    border-color: var(--accent);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.include-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: var(--accent-dim);
    border: 1px solid rgba(245, 166, 35, 0.2);
}

.include-text h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 4px;
}

.include-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Service intro card — wraps intro paragraphs */
.service-intro-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 32px;
}

.service-intro-card p {
    margin-bottom: 12px;
}

.service-intro-card p:last-child {
    margin-bottom: 0;
}

/* Vehicle badge strip */
.vehicle-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.vehicle-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent-dim);
    border: 1px solid rgba(245, 166, 35, 0.2);
    border-radius: 50px;
    font-family: var(--font-stats);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.05em;
}

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

    .service-intro-card {
        padding: 24px 20px;
    }
}

/* Service page responsive */
@media (max-width: 1024px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail-image {
        position: static;
    }

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

@media (max-width: 768px) {
    .service-page-hero {
        min-height: 40vh;
    }

    .service-page-hero .hero-content {
        padding: 40px 16px;
    }

    .service-page-hero .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .service-detail,
    .service-signs,
    .related-services {
        padding: 50px 0;
    }

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

    .service-detail-image img {
        height: 280px;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .sign-card {
        padding: 20px 18px;
    }

    .sign-card h3 {
        font-size: 1rem;
    }

    .related-card {
        padding: 22px 18px;
    }

    .service-cta-band {
        padding: 40px 0;
    }

    .service-cta-band h2 {
        font-size: 1.6rem;
    }

    .breadcrumb-list {
        font-size: 0.75rem;
        overflow-x: auto;
        white-space: nowrap;
    }

    .vehicle-badges {
        gap: 6px;
    }

    .vehicle-badge {
        padding: 5px 10px;
        font-size: 0.72rem;
    }

    .include-item {
        padding: 16px;
        gap: 10px;
    }

    .include-icon {
        width: 30px;
        height: 30px;
    }

    .include-icon svg {
        width: 14px;
        height: 14px;
    }

    .include-text h4 {
        font-size: 0.9rem;
    }

    .include-text p {
        font-size: 0.8rem;
    }

    .page-404-ctas {
        flex-direction: column;
        align-items: center;
    }
}

/* Small mobile */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 16px;
    }

    .service-card {
        padding: 24px 20px;
    }

    .logo-rapid,
    .logo-repair,
    .logo-okc {
        font-size: 1.2rem;
    }

    .emergency-title {
        font-size: 1.6rem;
    }

    .phone-link {
        font-size: 1.6rem;
    }

    .about-image-badge {
        padding: 10px 16px;
    }

    .badge-years {
        font-size: 1.8rem;
    }

    /* Service pages at 400px */
    .service-page-hero h1 {
        font-size: 1.6rem;
    }

    .service-page-hero .hero-subtitle {
        font-size: 0.95rem;
    }

    .service-cta-band h2 {
        font-size: 1.4rem;
    }

    .sign-card {
        padding: 16px 14px;
    }

    .include-item {
        padding: 14px;
    }

    .breadcrumb {
        padding: 12px 0;
    }
}

/* Desktop/mobile text swap */
.mobile-text { display: none; }
.desktop-text { display: inline; }

/* ============================================
   CONSOLIDATED MOBILE (768px)
   ============================================ */
@media (max-width: 768px) {
    /* Text swap — shorter CTA on mobile */
    .mobile-text { display: inline; }
    .desktop-text { display: none; }

    /* About section photo — show face on mobile */
    .about-image img {
        object-position: center 20%;
    }

    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }

    .quote-form-wrapper {
        padding: 24px 20px;
        margin-top: 32px;
    }

    /* Logo — scale down for mobile header */
    .logo-rapid,
    .logo-repair,
    .logo-okc {
        font-size: 1.4rem;
    }

    /* Stats bar — horizontal scroll prevention */
    .stats-grid {
        flex-direction: column;
        gap: 16px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    /* About section image */
    .about-image img {
        height: 300px;
    }

    .about-image-badge {
        bottom: 12px;
        right: 12px;
        padding: 12px 18px;
    }

    .badge-years {
        font-size: 2rem;
    }

    /* Vehicles served box */
    .vehicles-served {
        padding: 24px 20px;
        margin-top: 32px;
    }

    .vehicles-heading {
        font-size: 1.2rem;
    }

    /* Service areas tags — prevent overflow */
    .areas-grid {
        gap: 8px;
    }

    .area-tag {
        padding: 8px 14px;
        font-size: 0.82rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 24px 20px;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    /* FAQ */
    .faq-question {
        font-size: 0.95rem;
        padding: 20px 0;
    }

    /* Emergency CTA */
    .emergency-cta {
        padding: 50px 0;
    }

    .emergency-badges {
        gap: 8px;
    }

    .e-badge {
        padding: 6px 14px;
        font-size: 0.8rem;
    }

    /* Why Us cards */
    .why-card {
        padding: 28px 24px;
    }

    .why-number {
        font-size: 2.5rem;
    }

    /* How It Works steps */
    .step-number {
        font-size: 3rem;
    }

    .step-card {
        padding: 24px 16px;
    }

    /* Section spacing — tighter on mobile */
    .services,
    .why-us,
    .how-it-works,
    .about,
    .service-areas,
    .testimonials,
    .faq {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

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

    /* Footer — pad bottom for sticky call button */
    .site-footer {
        padding-bottom: 80px;
    }

    /* Hero scroll indicator — hide on mobile since they naturally scroll */
    .hero-scroll-indicator {
        display: none;
    }

    /* Hero badge — prevent overflow */
    .hero-badge {
        font-size: 0.7rem;
        letter-spacing: 0.15em;
        padding: 6px 16px;
    }

    /* Prevent text overflow anywhere */
    .about-content p,
    .testimonial-text,
    .faq-answer p,
    .vehicles-text,
    .service-desc {
        overflow-wrap: break-word;
        word-break: break-word;
    }

    /* Nav logo — ensure it doesn't push hamburger off screen */
    .nav-logo {
        max-width: 60%;
    }
}
