/* ============================================================
   V AUTO CARE — Tooele, UT
   Design: Black · Red · White — Industrial Automotive
   Fonts: Bebas Neue (display) · Barlow Condensed (heading) · DM Sans (body)
   ============================================================ */

/* === ROOT ===================================================== */
:root {
    --black:      #0A0B0D;
    --dark:       #111214;
    --surface:    #17181C;
    --card:       #1E1F24;
    --card-hover: #242529;
    --border:     #2A2B30;
    --red:        #D42020;
    --red-light:  #E84444;
    --red-dark:   #A81010;
    --red-glow:   rgba(212, 32, 32, 0.10);
    --red-edge:   rgba(212, 32, 32, 0.24);
    --white:      #F5F0EB;
    --muted:      #8A8F9A;
    --dim:        #4A4F5A;

    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body:    'DM Sans', sans-serif;

    --ease:   cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 6px;
    --max-w:  1200px;
}

/* === RESET ==================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    animation: pageFade 0.5s ease both;
}
@keyframes pageFade {
    from { opacity: 0; }
    to   { opacity: 1; }
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* === UTILITY ================================================== */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 28px;
}
.red { color: var(--red); }

/* === KEYFRAMES ================================================ */
@keyframes heroUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes breatheV {
    0%, 100% { opacity: 0.022; transform: translateY(-52%) scale(1); }
    50%       { opacity: 0.038; transform: translateY(-52%) scale(1.025); }
}
@keyframes shimmerSweep {
    0%       { left: -100%; }
    55%, 100% { left: 220%; }
}
@keyframes pulseRing {
    0%   { transform: scale(1);   opacity: 0.55; }
    100% { transform: scale(1.6); opacity: 0; }
}
@keyframes scanLine {
    0%   { top: -2px; opacity: 0; }
    5%   { opacity: 1; }
    95%  { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}
@keyframes gradientPulse {
    0%   { background-position: 0%   50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0%   50%; }
}
@keyframes underlineIn {
    from { width: 0; }
    to   { width: 100%; }
}

/* === SCROLL REVEAL — HYDRAULIC LIFT =========================== */
.reveal {
    opacity: 0;
    transform: translateY(80px) scaleY(0.97);
    transform-origin: bottom center;
    transition:
        opacity  0.65s ease-out,
        transform 0.82s cubic-bezier(0.175, 0.885, 0.32, 1.22);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0) scaleY(1);
}

/* === SECTION LIFT ARM ========================================= */
/* Arm sweeps left → right as each section enters the viewport,   */
/* like hydraulic arms extending under a vehicle before the lift  */
/* begins to rise.                                                 */
section:not(#hero) {
    position: relative;
}
section:not(#hero)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--red)              0%,
        rgba(245, 163, 32, 0.9) 25%,
        rgba(245, 163, 32, 0.5) 65%,
        transparent            100%
    );
    transition: width 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
    z-index: 2;
    pointer-events: none;
}
section:not(#hero).lift-active::before {
    width: 100%;
}

/* === BUTTONS ================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.25s var(--ease);
    position: relative;
    overflow: hidden;
}
/* Shimmer sweep on btn-primary */
.btn-primary {
    background: var(--red);
    color: #ffffff;
}
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
    animation: shimmerSweep 2.8s ease-in-out infinite;
}
.btn-primary:hover {
    background: var(--red-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 32, 32, 0.38);
}
.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--border);
}
.btn-ghost:hover {
    border-color: var(--red-edge);
    color: var(--red);
}
.btn-red {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--red);
    color: #ffffff;
    border-radius: var(--radius);
    transition: all 0.25s var(--ease);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn-red::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmerSweep 2.8s ease-in-out 0.4s infinite;
}
.btn-red:hover {
    background: var(--red-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 32, 32, 0.38);
}
.btn-outline {
    display: inline-block;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    border: 1.5px solid var(--red-edge);
    border-radius: var(--radius);
    margin-top: 24px;
    transition: all 0.25s var(--ease);
}
.btn-outline:hover {
    background: var(--red-glow);
    border-color: var(--red);
    transform: translateY(-1px);
}

/* === SECTION HEADERS ========================================== */
.section-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5.5vw, 68px);
    line-height: 0.93;
    color: var(--white);
    letter-spacing: 0.015em;
    margin-bottom: 18px;
}
.section-sub {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 480px;
}
.section-header { margin-bottom: 56px; }

/* === NAVIGATION =============================================== */
/* Red accent top bar */
#navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: var(--red);
    transform-origin: left;
    animation: underlineIn 0.8s var(--ease) 0.3s both;
}
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 22px 0;
    transition: padding 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
    border-bottom: 1px solid transparent;
}
#navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 11, 13, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: var(--border);
}
.nav-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-img {
    height: 44px;
    width: auto;
    display: block;
    transition: filter 0.25s var(--ease);
}
.logo:hover .logo-img {
    filter: brightness(1.1) drop-shadow(0 0 10px rgba(212, 32, 32, 0.5));
}
.logo-v {
    font-family: 'Teko', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: var(--red);
    line-height: 1;
    letter-spacing: -0.02em;
    text-shadow: 0 0 14px rgba(212, 32, 32, 0.55), 1px 1px 0 rgba(212, 32, 32, 0.3);
    transition: color 0.2s, text-shadow 0.2s;
}
.logo:hover .logo-v {
    color: var(--red-light);
    text-shadow: 0 0 20px rgba(212, 32, 32, 0.75), 1px 1px 0 rgba(212, 32, 32, 0.4);
}
.logo-text {
    font-family: var(--font-display);
    font-size: 38px;
    color: var(--white);
    letter-spacing: 0.1em;
    line-height: 1;
}
.nav-links {
    display: flex;
    gap: 36px;
    margin-left: auto;
    margin-right: 36px;
}
/* Animated underline on nav links */
.nav-links a {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.2s;
    position: relative;
    padding-bottom: 3px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffffff;
    background: var(--red);
    padding: 10px 22px;
    border-radius: var(--radius);
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.nav-cta:hover {
    background: var(--red-light);
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: #07080A;
    z-index: 199;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 36px 48px;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
    overflow: hidden;
}
.mobile-menu::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--red) 0%, transparent 100%);
}
.mobile-menu-bg-v {
    position: absolute;
    font-family: var(--font-display);
    font-size: clamp(260px, 70vw, 440px);
    color: rgba(212, 32, 32, 0.045);
    line-height: 1;
    right: -6%;
    bottom: -4%;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.04em;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    justify-content: center;
}
.mobile-menu ul li {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 0.35s ease calc(var(--i, 0) * 0.065s + 0.08s),
                transform 0.35s ease calc(var(--i, 0) * 0.065s + 0.08s);
}
.mobile-menu ul li:first-child {
    border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu.open ul li {
    opacity: 1;
    transform: translateX(0);
}
.mobile-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    font-family: var(--font-display);
    font-size: clamp(36px, 9vw, 50px);
    color: var(--white);
    line-height: 1;
    transition: color 0.2s, padding-left 0.2s;
}
.mobile-link:hover {
    color: var(--red);
    padding-left: 6px;
}
.mobile-link-num {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--red);
    opacity: 0.65;
    min-width: 24px;
    align-self: flex-end;
    padding-bottom: 7px;
    flex-shrink: 0;
}
.mobile-cta-block {
    padding-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.35s ease 0.52s, transform 0.35s ease 0.52s;
}
.mobile-menu.open .mobile-cta-block {
    opacity: 1;
    transform: translateY(0);
}
.mobile-cta-call,
.mobile-cta-sms {
    width: 100%;
    justify-content: center;
}
.mobile-hours {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    color: var(--muted);
    text-transform: uppercase;
    text-align: center;
    margin-top: 6px;
}

/* === HERO ===================================================== */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 90px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 75% 50% at 50% 0%, rgba(212, 32, 32, 0.09), transparent),
        var(--black);
}
/* Subtle grid texture */
#hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 32, 32, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 32, 32, 0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
    z-index: 0;
}
/* Scan line animation */
#hero::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,32,32,0.4), transparent);
    z-index: 1;
    pointer-events: none;
    animation: scanLine 8s linear 1.5s infinite;
}
/* Large decorative V — breathes */
.hero-bg-v {
    position: absolute;
    font-family: var(--font-display);
    font-size: clamp(300px, 48vw, 640px);
    color: rgba(212, 32, 32, 0.028);
    line-height: 1;
    right: -3%;
    top: 50%;
    transform: translateY(-52%);
    pointer-events: none;
    user-select: none;
    z-index: 0;
    letter-spacing: -0.04em;
    animation: breatheV 9s ease-in-out infinite;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 40px 28px 0;
    width: 100%;
}
.hero-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
    border: 1px solid var(--red-edge);
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
    animation: heroUp 0.7s var(--ease) 0.15s both;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(62px, 11vw, 128px);
    line-height: 0.9;
    color: var(--white);
    margin-bottom: 28px;
    letter-spacing: 0.01em;
    animation: heroUp 0.85s var(--ease) 0.25s both;
}
.hero-sub {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
    animation: heroUp 0.75s var(--ease) 0.38s both;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: heroUp 0.75s var(--ease) 0.5s both;
}

/* Hero building image — right side */
.hero-image-wrap {
    position: absolute;
    right: 0;
    top: 0;
    width: 52%;
    height: calc(100% - 88px);
    z-index: 1;
    overflow: hidden;
    animation: heroImageIn 1.4s var(--ease) 0.2s both;
}
.hero-building-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    opacity: 0.38;
    filter: grayscale(30%) contrast(1.12) brightness(0.78);
    display: block;
}
/* Left & bottom fades — blend into dark bg */
.hero-image-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg,
            var(--black) 0%,
            rgba(10, 11, 13, 0.9) 16%,
            rgba(10, 11, 13, 0.45) 44%,
            rgba(10, 11, 13, 0.05) 78%,
            transparent 100%
        ),
        linear-gradient(to top,
            var(--black) 0%,
            rgba(10, 11, 13, 0.6) 15%,
            transparent 35%
        );
    z-index: 2;
    pointer-events: none;
}
/* Subtle red brand tint */
.hero-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(212, 32, 32, 0.07);
    z-index: 3;
    pointer-events: none;
}
@keyframes heroImageIn {
    from { opacity: 0; transform: scale(1.06) translateX(24px); }
    to   { opacity: 1; transform: scale(1)    translateX(0); }
}

/* Hero stats bar */
.hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 56px;
    border-top: 1px solid var(--border);
    background: var(--black);
    animation: heroUp 0.7s var(--ease) 0.65s both;
}
.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 44px;
    transition: background 0.2s;
}
.stat:hover { background: rgba(212,32,32,0.04); }
.stat-num {
    font-family: var(--font-display);
    font-size: 40px;
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.01em;
}
.stat-num .star { color: var(--red); }
.stat-label {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.06em;
    margin-top: 5px;
    white-space: nowrap;
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
}
.stat-divider {
    width: 1px;
    height: 44px;
    background: var(--border);
    flex-shrink: 0;
}

/* === SERVICES ================================================= */
#services {
    padding: 100px 0;
    background: var(--dark);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}
.service-card {
    background: var(--card);
    padding: 0;
    transition: background 0.25s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}
.service-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--surface);
    position: relative;
}
/* Dark overlay tint on image */
.service-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(10,11,13,0.55) 100%);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.3s;
}
.service-card:hover .service-img::before { opacity: 0.7; }
/* Placeholder style when image is missing */
.service-img::after {
    content: 'Photo coming soon';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--dim);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}
.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
    transition: transform 0.5s var(--ease);
}
.service-card:hover .service-img img { transform: scale(1.06); }
/* Service card flat icons */
.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 108px;
    background:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 8px,
            rgba(245, 163, 32, 0.03) 8px,
            rgba(245, 163, 32, 0.03) 9px
        ),
        var(--surface);
    position: relative;
    overflow: hidden;
    transition: background 0.3s var(--ease);
}
.service-icon svg {
    width: 54px;
    height: 54px;
    transition: transform 0.35s var(--ease);
    position: relative;
    z-index: 1;
}
.service-icon::after {
    content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 163, 32, 0.18) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.35s;
    pointer-events: none;
}
.service-card:hover .service-icon svg  { transform: scale(1.12); }
.service-card:hover .service-icon::after { opacity: 1; }

.service-content {
    padding: 26px 28px 24px;
}
/* Red bottom-border sweep on hover */
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--red);
    transition: width 0.4s var(--ease);
    z-index: 3;
}
.service-card:hover::after { width: 100%; }
.service-card:hover {
    background: var(--card-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(212, 32, 32, 0.12);
    z-index: 1;
}
.service-content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 10px;
}
.service-content p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
}
.services-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 28px;
    padding: 24px 32px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.services-footer p {
    font-size: 14px;
    color: var(--muted);
}

/* === ABOUT ==================================================== */
#about {
    padding: 100px 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}
#about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 600px 500px at 75% 50%, rgba(212, 32, 32, 0.04), transparent);
    pointer-events: none;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.about-text .section-title { margin-bottom: 24px; }
.about-text p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.78;
    margin-bottom: 16px;
}
.about-text strong { color: var(--white); font-weight: 500; }
.about-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 40px;
}
.badge {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 22px;
    transition: border-color 0.25s, transform 0.3s var(--ease);
}
.badge:hover {
    border-color: var(--red-edge);
    transform: translateY(-2px);
}
.badge-num {
    display: block;
    font-family: var(--font-display);
    font-size: 34px;
    color: var(--red);
    line-height: 1;
    letter-spacing: 0.01em;
}
.badge-star { font-size: 26px; }
.badge-label {
    display: block;
    font-size: 12px;
    color: var(--muted);
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-top: 5px;
}
.about-features {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px 20px;
    border-radius: var(--radius);
    transition: background 0.25s;
    border-left: 2px solid transparent;
}
.feature:hover {
    background: var(--card);
    border-left-color: var(--red);
}
.feature-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    background: var(--red);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-top: 1px;
    transition: transform 0.3s;
}
.feature:hover .feature-icon { transform: scale(1.15); }
.feature h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 5px;
}
.feature p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
}

/* === REVIEWS ================================================== */
#reviews {
    padding: 100px 0;
    background: var(--surface);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.review-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 36px 32px;
    position: relative;
    transition: border-color 0.25s, transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.review-card:hover {
    border-color: var(--red-edge);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(212, 32, 32, 0.10);
}
.review-stars {
    color: var(--red);
    font-size: 17px;
    letter-spacing: 3px;
    margin-bottom: 22px;
}
.review-card blockquote {
    font-size: 15px;
    color: var(--white);
    line-height: 1.78;
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
}
.review-card blockquote::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 96px;
    color: rgba(212, 32, 32, 0.10);
    position: absolute;
    top: -24px;
    left: -10px;
    line-height: 1;
    pointer-events: none;
}
.review-card cite {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red);
    font-style: normal;
}
.reviews-footer {
    text-align: center;
    margin-top: 48px;
}
.reviews-footer p {
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.04em;
}

/* === LOCATIONS ================================================ */
#locations {
    padding: 100px 0;
    background: var(--dark);
}
.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.locations-single {
    grid-template-columns: 1fr;
    max-width: 580px;
}
.location-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 40px 40px 36px;
    transition: border-color 0.25s, box-shadow 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}
/* Left red accent bar */
.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--red);
    transition: height 0.4s var(--ease);
    border-radius: 0 0 4px 0;
}
.location-card:hover::before { height: 100%; }
.location-card:hover {
    border-color: var(--red-edge);
    box-shadow: 0 12px 40px rgba(212, 32, 32, 0.08);
}
.location-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    background: var(--red-glow);
    border: 1px solid var(--red-edge);
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.location-card h3 {
    font-family: var(--font-display);
    font-size: 34px;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}
.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}
.location-detail svg { flex-shrink: 0; margin-top: 1px; }
.location-detail span,
.location-detail a {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.5;
}
.location-detail a { color: var(--red); transition: color 0.2s; }
.location-detail a:hover { color: var(--red-light); }
.location-hours {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.location-hours h4 {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dim);
    margin-bottom: 14px;
}
.location-hours table { width: 100%; border-collapse: collapse; }
.location-hours td {
    padding: 6px 0;
    font-size: 14px;
    color: var(--white);
    line-height: 1.4;
}
.location-hours td:last-child { text-align: right; color: var(--muted); }
.location-hours .closed { color: var(--dim); }

/* === CTA BANNER =============================================== */
#contact { background: var(--black); }
.cta-banner {
    background: linear-gradient(130deg, var(--red) 0%, #A81010 60%, #7A0808 100%);
    background-size: 250% 250%;
    animation: gradientPulse 8s ease infinite;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}
/* Decorative grid on CTA */
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}
.cta-text {
    position: relative;
    z-index: 1;
}
.cta-text h2 {
    font-family: var(--font-display);
    font-size: clamp(44px, 6vw, 76px);
    color: #ffffff;
    line-height: 0.92;
    letter-spacing: 0.01em;
    margin-bottom: 18px;
}
.cta-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 8px;
    line-height: 1.6;
}
.cta-detail {
    font-family: var(--font-heading) !important;
    font-size: 12px !important;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45) !important;
    margin-top: 12px !important;
}
.cta-phones {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.phone-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.10);
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    min-width: 240px;
    text-align: center;
    transition: all 0.25s;
}
.phone-link:hover {
    background: rgba(255, 255, 255, 0.20);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.phone-label {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}
.phone-num {
    font-family: var(--font-display);
    font-size: 28px;
    color: #ffffff;
    letter-spacing: 0.02em;
}
.phone-or {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
}

/* === FOOTER =================================================== */
#footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 72px 0 36px;
    position: relative;
}
#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), transparent 60%);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 56px;
}
.footer-brand p {
    font-size: 14px;
    color: var(--muted);
    margin: 18px 0 24px;
    max-width: 280px;
    line-height: 1.7;
}
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.2s;
}
.social-link:hover { color: var(--white); }
.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--dim);
    margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
    font-size: 14px;
    color: var(--muted);
    transition: color 0.2s, padding-left 0.2s;
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact p { font-size: 14px; color: var(--muted); line-height: 1.8; }
.footer-contact a { color: var(--red); transition: color 0.2s; }
.footer-contact a:hover { color: var(--red-light); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--dim); letter-spacing: 0.04em; }

/* === SERVICE CARD INTERACTION ================================= */
.service-card { cursor: pointer; }
.service-tap {
    display: inline-block;
    margin-top: 14px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.25s, transform 0.25s;
}
.service-card:hover .service-tap,
.service-card:focus .service-tap {
    opacity: 1;
    transform: translateX(0);
}
.service-card:focus {
    outline: 2px solid var(--red);
    outline-offset: -2px;
}

/* === SERVICE MODAL ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
}
.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.modal-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px 40px 36px;
    max-width: 740px;
    width: 100%;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s var(--ease);
    max-height: 90vh;
    overflow-y: auto;
}
.modal-overlay.open .modal-card {
    transform: translateY(0) scale(1);
}
/* Red top accent */
.modal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    border-radius: 12px 12px 0 0;
}
.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    flex-shrink: 0;
}
.modal-close:hover {
    border-color: var(--red-edge);
    background: var(--card-hover);
}
.modal-close:hover path { stroke: var(--white); }
.modal-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    padding-top: 4px;
}
.modal-icon-wrap {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-glow);
    border: 1px solid var(--red-edge);
    border-radius: 12px;
}
.modal-icon-wrap svg { width: 40px; height: 40px; }
.modal-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    background: var(--red-glow);
    border: 1px solid var(--red-edge);
    padding: 3px 12px;
    border-radius: 100px;
    margin-bottom: 8px;
}
.modal-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1;
}
.modal-desc {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}
.modal-body {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: start;
}
.modal-col-label {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dim);
    margin-bottom: 14px;
}
.modal-issues {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.modal-issues li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--white);
    line-height: 1.5;
}
.modal-issues li::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
    margin-top: 6px;
}
.modal-time {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 24px;
}
.modal-cta {
    width: 100%;
    justify-content: center;
    font-size: 13px;
}

@media (max-width: 600px) {
    .modal-card { padding: 32px 24px 28px; }
    .modal-body { grid-template-columns: 1fr; gap: 24px; }
    .modal-header { gap: 14px; }
    .modal-icon-wrap { width: 52px; height: 52px; }
}

/* === MOBILE STICKY CALL ======================================= */
.sticky-call {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 20px;
    background: var(--red);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 22px;
    border-radius: 100px;
    box-shadow: 0 6px 24px rgba(212, 32, 32, 0.42);
    z-index: 100;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, background 0.2s;
}
/* Pulse ring animation */
.sticky-call::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 100px;
    border: 2px solid var(--red);
    animation: pulseRing 2.2s ease-out infinite;
}
.sticky-call:hover {
    transform: translateY(-2px);
    background: var(--red-light);
}

/* === RESPONSIVE =============================================== */
@media (max-width: 1024px) {
    .services-grid  { grid-template-columns: repeat(2, 1fr); }
    .about-grid     { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid    { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand   { grid-column: 1 / -1; }
    .locations-single { max-width: 100%; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }

    .hero-image-wrap { display: none; }

    .hero-stats { flex-wrap: wrap; justify-content: center; }
    .stat { padding: 16px 28px; }
    .stat-divider { display: none; }

    .services-grid    { grid-template-columns: 1fr; }
    .about-badges     { grid-template-columns: repeat(2, 1fr); }
    .services-footer  { flex-direction: column; align-items: flex-start; }
    .reviews-grid     { grid-template-columns: 1fr; }
    .locations-grid   { grid-template-columns: 1fr; }
    .cta-banner       { flex-direction: column; align-items: flex-start; padding: 56px 32px; }
    .cta-phones       { width: 100%; align-items: stretch; }
    .phone-link       { min-width: auto; }
    .footer-grid      { grid-template-columns: 1fr; gap: 36px; }
    .footer-brand     { grid-column: auto; }
    .footer-bottom    { flex-direction: column; text-align: center; }

    .sticky-call { display: inline-flex; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .stat-num { font-size: 32px; }
    .about-badges { grid-template-columns: 1fr; }
    .location-card { padding: 28px 24px; }
    .cta-banner { padding: 48px 24px; }
}


/* === MAPS SECTION === */
/* ============================================================
   maps.css â€” Locations section with Google Maps embeds
   Prefix: maps-
   Add this <link> to <head> alongside style.css:
     <link rel="stylesheet" href="snippets/maps.css">
   (Adjust path if you move the file.)
   ============================================================ */

/* --- Two-column grid ---------------------------------------- */
.maps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 16px;
}

/* --- Individual location card ------------------------------- */
.maps-location-card {
    background: #1E1F24;               /* matches --card */
    border: 1px solid #2A2B30;         /* matches --border */
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.maps-location-card:hover {
    border-color: rgba(212, 32, 32, 0.24);  /* --red-edge */
    box-shadow: 0 12px 40px rgba(212, 32, 32, 0.08);
}

/* Amber top-edge accent bar on hover */
.maps-location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 40px;
    background: #F5A320;
    border-radius: 0 0 4px 0;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.maps-location-card:hover::before {
    height: 100%;
}

/* --- Location info block (text + hours + button) ------------ */
.maps-location-info {
    padding: 36px 32px 28px;
    font-style: normal;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* --- Map container ------------------------------------------ */
.maps-map-container {
    border-top: 2px solid #F5A320;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    flex-shrink: 0;
    line-height: 0;                    /* kill inline whitespace gap */
}

.maps-map-container iframe {
    display: block;
    width: 100%;
    height: 300px;
    border: 0;
    filter: grayscale(20%) contrast(1.05);  /* subtle industrial tone */
}

/* --- Directions button -------------------------------------- */
.maps-directions-btn {
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    padding-top: 24px;
    align-self: flex-start;
}

/* --- Responsive: tablet (â‰¤1024px) â€” keep 2 cols but tighten  */
@media (max-width: 1024px) {
    .maps-grid {
        gap: 24px;
    }

    .maps-location-info {
        padding: 28px 24px 24px;
    }
}

/* --- Responsive: mobile (â‰¤768px) â€” stack vertically --------- */
@media (max-width: 768px) {
    .maps-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .maps-location-card {
        border-radius: 8px;
    }

    .maps-map-container {
        border-radius: 0 0 8px 8px;
    }

    .maps-map-container iframe {
        height: 260px;
    }

    .maps-location-info {
        padding: 28px 24px 20px;
    }
}

/* --- Responsive: small mobile (â‰¤480px) ---------------------- */
@media (max-width: 480px) {
    .maps-map-container iframe {
        height: 220px;
    }
}


/* === CONTACT SECTION === */
/* ============================================================
   V AUTO CARE â€” Contact Section Styles
   Companion to: snippets/contact-section.html
   All classes prefixed "contact-"
   Relies on variables defined in css/style.css (:root block).
   ============================================================ */

/* === SECTION SHELL =========================================== */
#contact {
    background: #111214;      /* slightly lighter than --black */
    padding: 96px 0 112px;
}

/* === SECTION HEADER ========================================== */
/* Re-uses .section-label / .section-title / .section-sub from
   style.css â€” no override needed unless you want to center them */
.contact-header {
    text-align: center;
}
.contact-header .section-sub {
    margin: 0 auto;
}

/* === LAYOUT WRAPPER ========================================== */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 56px;
    align-items: start;
}

/* === FORM ==================================================== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* â”€â”€ Rows â”€â”€ */
.contact-row {
    display: flex;
    gap: 20px;
    margin-bottom: 22px;
}
.contact-row--2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.contact-row--submit {
    margin-top: 8px;
    margin-bottom: 0;
}

/* â”€â”€ Fields â”€â”€ */
.contact-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;
    min-width: 0;   /* prevent grid overflow */
}

/* â”€â”€ Labels â”€â”€ */
.contact-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #F2EDE4;
}
.contact-required {
    color: #F5A320;
    margin-left: 2px;
}

/* â”€â”€ Inputs, Selects, Textarea â”€â”€ */
.contact-input {
    width: 100%;
    background: #1a1a1a;
    color: #F2EDE4;
    border: 1.5px solid #2A2B30;
    border-radius: 6px;
    padding: 13px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    outline: none;
    transition:
        border-color 0.22s ease,
        background   0.22s ease,
        box-shadow   0.22s ease;
    appearance: none;
    -webkit-appearance: none;
}
.contact-input::placeholder {
    color: #4A4F5A;
}
.contact-input:hover {
    border-color: #3a3b42;
}
.contact-input:focus {
    border-color: #F5A320;
    background: #1e1e1e;
    box-shadow: 0 0 0 3px rgba(245, 163, 32, 0.14);
}

/* â”€â”€ Textarea â”€â”€ */
.contact-textarea {
    resize: vertical;
    min-height: 130px;
}

/* â”€â”€ Select wrapper (custom arrow) â”€â”€ */
.contact-select-wrap {
    position: relative;
}
.contact-select-wrap .contact-input {
    padding-right: 40px;
    cursor: pointer;
}
.contact-select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #F5A320;
    pointer-events: none;
    line-height: 1;
}
/* Select option contrast (best-effort â€” browser controlled) */
.contact-select option {
    background: #1a1a1a;
    color: #F2EDE4;
}

/* === SUBMIT BUTTON =========================================== */
.contact-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    background: #F5A320;
    color: #0A0B0D;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 0.12em;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition:
        background   0.22s ease,
        transform    0.22s ease,
        box-shadow   0.22s ease;
}
/* Shimmer sweep â€” matches brand button style */
.contact-submit::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
    animation: shimmerSweep 2.8s ease-in-out 0.6s infinite;
}
.contact-submit:hover {
    background: #fbb540;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245, 163, 32, 0.30);
}
.contact-submit:active {
    transform: translateY(0);
    box-shadow: none;
}
.contact-submit svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.contact-submit:hover svg {
    transform: translateX(4px);
}

/* === SIDE INFO PANEL ========================================= */
.contact-info {
    background: #17181C;
    border: 1px solid #2A2B30;
    border-radius: 8px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-info-block {
    padding: 0 0 28px;
}
.contact-info-block:last-child {
    padding-bottom: 0;
}

.contact-info-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 0.08em;
    color: #F5A320;
    margin-bottom: 10px;
}

.contact-info-address {
    font-size: 15px;
    color: #F2EDE4;
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-info-phone {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #F5A320;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}
.contact-info-phone:hover {
    color: #fbb540;
}

.contact-info-hours {
    font-size: 13px;
    color: #8A8F9A;
    line-height: 1.7;
}

.contact-info-divider {
    height: 1px;
    background: #2A2B30;
    margin: 0 0 28px;
}

/* â”€â”€ Badge cluster â”€â”€ */
.contact-info-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 4px;
}
.contact-badge {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #F2EDE4;
    background: #1E1F24;
    border: 1px solid #2A2B30;
    border-radius: 4px;
    padding: 5px 10px;
}

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

/* Tablet â€” stack info panel below form */
@media (max-width: 960px) {
    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0;
        padding: 28px 24px;
    }
    .contact-info-block {
        flex: 1 1 200px;
        padding: 0 24px 24px 0;
    }
    .contact-info-divider {
        display: none;
    }
}

/* Mobile â€” all fields full width */
@media (max-width: 600px) {
    #contact {
        padding: 72px 0 88px;
    }
    .contact-row--2col {
        grid-template-columns: 1fr;
    }
    .contact-submit {
        width: 100%;
        justify-content: center;
        font-size: 17px;
        padding: 16px 24px;
    }
    .contact-info {
        flex-direction: column;
        padding: 28px 20px;
    }
    .contact-info-block {
        flex: none;
    }
    .contact-info-divider {
        display: block;
    }
}


/* === FAQ SECTION === */
/* ============================================================
   FAQ SECTION â€” V Auto Care
   Requires: css/style.css (root variables, .container, .reveal,
             .section-label, .section-title, .section-sub, .btn)
   ============================================================ */

/* === SECTION LAYOUT ========================================= */
#faq {
    padding: 96px 0 104px;
    background: #111214;       /* var(--dark) â€” one step up from --black */
    position: relative;
}

/* Subtle amber grain texture overlay */
#faq::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(245, 163, 32, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 163, 32, 0.018) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
    z-index: 0;
}

#faq .container {
    position: relative;
    z-index: 1;
}

/* === SECTION HEADER ========================================= */
.faq-header {
    max-width: 640px;
}

/* === ACCORDION LIST ========================================= */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

/* === ACCORDION ITEM ========================================= */
.faq-item {
    border-bottom: 1px solid rgba(245, 163, 32, 0.14);
    transition: background 0.25s ease;
}

.faq-item:first-child {
    border-top: 1px solid rgba(245, 163, 32, 0.14);
}

/* === DETAILS / SUMMARY RESET ================================ */
.faq-details {
    background: transparent;
}

/* Remove default triangle in all browsers */
.faq-details > summary {
    list-style: none;
}
.faq-details > summary::-webkit-details-marker {
    display: none;
}

/* === SUMMARY ROW ============================================ */
.faq-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 8px 22px 20px;
    cursor: pointer;
    user-select: none;
    outline: none;
    transition: background 0.2s ease;
}

.faq-summary:focus-visible {
    outline: 2px solid #F5A320;
    outline-offset: 2px;
    border-radius: 4px;
}

/* === QUESTION TEXT ========================================== */
.faq-question {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(16px, 2.2vw, 19px);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #F5F0EB;
    line-height: 1.35;
    transition: color 0.2s ease;
}

/* === CHEVRON ICON =========================================== */
.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(245, 163, 32, 0.28);
    border-radius: 50%;
    background: rgba(245, 163, 32, 0.06);
    transition:
        background   0.25s ease,
        border-color 0.25s ease,
        transform    0.25s ease;
}

.faq-chevron {
    display: block;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === ANSWER BODY ============================================ */
.faq-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    /* JS drives max-height; CSS controls the easing */
}

.faq-body p {
    font-family: 'DM Sans', sans-serif;
    font-size: 15.5px;
    line-height: 1.75;
    color: #C8C4BC;
    padding: 0 8px 24px 20px;
}

.faq-body p + p {
    margin-top: -8px;
}

.faq-body a {
    color: #F5A320;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.faq-body a:hover {
    color: #FFBE55;
}

.faq-body strong {
    color: #F5F0EB;
    font-weight: 600;
}

/* === OPEN / ACTIVE STATE ==================================== */

/* Amber left accent bar on open item */
.faq-item.faq-open {
    background: rgba(245, 163, 32, 0.045);
    border-bottom-color: rgba(245, 163, 32, 0.28);
    box-shadow: inset 3px 0 0 0 #F5A320;
}

.faq-item.faq-open + .faq-item {
    border-top: none; /* avoid double border when adjacent to open item */
}

/* Question text goes amber when open */
.faq-item.faq-open .faq-question {
    color: #F5A320;
}

/* Icon background fills + border brightens */
.faq-item.faq-open .faq-icon {
    background: rgba(245, 163, 32, 0.15);
    border-color: #F5A320;
}

/* Chevron rotates 180Â° when open */
.faq-item.faq-open .faq-chevron {
    transform: rotate(180deg);
}

/* Hover state (not open) */
.faq-item:not(.faq-open) .faq-summary:hover .faq-question {
    color: #F5A320;
}

.faq-item:not(.faq-open) .faq-summary:hover .faq-icon {
    background: rgba(245, 163, 32, 0.1);
    border-color: rgba(245, 163, 32, 0.55);
}

/* === BOTTOM CTA ============================================= */
.faq-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(42, 43, 48, 0.8);
    flex-wrap: wrap;
}

.faq-cta p {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #8A8F9A;
    text-transform: uppercase;
}

/* === RESPONSIVE ============================================= */
@media (max-width: 768px) {
    #faq {
        padding: 72px 0 80px;
    }

    .faq-summary {
        padding: 18px 4px 18px 20px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-body p {
        font-size: 15px;
    }

    .faq-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-top: 40px;
    }
}

@media (max-width: 375px) {
    .faq-icon {
        width: 28px;
        height: 28px;
    }

    .faq-chevron {
        width: 16px;
        height: 16px;
    }
}


/* === BOOKING SECTION === */
/* ============================================================
   V AUTO CARE â€” Booking Section Styles
   File: snippets/booking.css
   Add to <head>: <link rel="stylesheet" href="snippets/booking.css">
   Depends on: css/style.css (CSS custom properties + .reveal, .container,
               .section-label, Bebas Neue / DM Sans fonts loaded in index.html)
   ============================================================ */

/* === SECTION SHELL ========================================== */
#booking {
    padding: 100px 0;
    background: linear-gradient(160deg, #0d0e10 0%, #111214 60%, #0d0e10 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle amber glow in top-right to separate from adjacent sections */
#booking::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(245, 163, 32, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* === TWO-COLUMN GRID ======================================== */
/* Desktop: 60 / 40 split */
.booking-grid {
    display: grid;
    grid-template-columns: 60fr 40fr;
    gap: 64px;
    align-items: start;
}

/* === LEFT COLUMN â€” EMBED ==================================== */
.booking-col--embed {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Section label reused from style.css .section-label â€” no override needed */

.booking-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 5.5vw, 72px);
    line-height: 0.93;
    color: #F2EDE4;
    letter-spacing: 0.015em;
    margin-bottom: 14px;
}

.booking-sub {
    font-size: 17px;
    color: #8A8F9A;
    line-height: 1.7;
    max-width: 460px;
}

/* Calendly widget wrapper */
.booking-widget-wrap {
    background: #17181C;
    border: 1px solid #2A2B30;
    border-radius: 10px;
    overflow: hidden;
    /* Calendly sets its own height via the data-url widget;
       the wrapper just provides a styled container. */
}

.booking-widget-wrap .calendly-inline-widget {
    display: block;
    width: 100%;
}

/* Note below the widget */
.booking-calendly-note {
    font-size: 13.5px;
    color: #8A8F9A;
    line-height: 1.6;
}

.booking-calendly-note a {
    color: #F5A320;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.booking-calendly-note a:hover {
    color: #ffbe4f;
}

/* === RIGHT COLUMN â€” CALL ==================================== */
.booking-col--call {
    display: flex;
    flex-direction: column;
    gap: 28px;
    /* Stick to the top of the grid row so the heading
       aligns with the left column heading */
    padding-top: 4px;
}

.booking-call-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    letter-spacing: 0.04em;
    color: #F2EDE4;
    line-height: 1;
}

/* === CALL CARDS ============================================= */
.booking-call-card {
    background: #1E1F24;
    border: 1.5px solid rgba(245, 163, 32, 0.30);
    border-radius: 10px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.booking-call-card:hover {
    border-color: rgba(245, 163, 32, 0.65);
    box-shadow: 0 0 28px rgba(245, 163, 32, 0.08);
}

.booking-card-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #F5A320;
}

.booking-card-hours {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #8A8F9A;
    line-height: 1.5;
}

.booking-hours-icon {
    flex-shrink: 0;
    opacity: 0.85;
}

/* === CALL BUTTON ============================================ */
.booking-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 20px;
    background: #F5A320;
    color: #0A0B0D;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 0.06em;
    border-radius: 6px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

/* Shimmer sweep on the call button â€” matches brand animation */
.booking-call-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    animation: bookingShimmer 3s ease-in-out infinite;
}

@keyframes bookingShimmer {
    0%        { left: -100%; }
    55%, 100% { left: 220%; }
}

.booking-call-btn .booking-phone-icon path {
    stroke: #0A0B0D;
}

.booking-call-btn:hover {
    background: #ffc040;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245, 163, 32, 0.30);
}

.booking-call-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

/* === TRUST CALLOUT ========================================== */
.booking-trust {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 20px;
    background: #17181C;
    border: 1px solid #2A2B30;
    border-radius: 8px;
}

.booking-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    color: #8A8F9A;
    line-height: 1.4;
}

.booking-trust-item svg {
    flex-shrink: 0;
}

/* === RESPONSIVE â€” TABLET (â‰¤ 900px) ========================= */
@media (max-width: 900px) {
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .booking-col--call {
        padding-top: 0;
    }

    .booking-call-heading {
        font-size: 36px;
    }
}

/* === RESPONSIVE â€” MOBILE (â‰¤ 480px) ========================= */
@media (max-width: 480px) {
    #booking {
        padding: 72px 0;
    }

    .booking-title {
        font-size: 44px;
    }

    .booking-call-btn {
        font-size: 22px;
        padding: 14px 16px;
    }

    .booking-widget-wrap .calendly-inline-widget {
        min-width: unset !important;
    }

    .booking-call-card {
        padding: 22px 18px;
    }
}

/* === FAKE CALENDAR === */
.fake-cal {
    background: #111214;
    border: 1px solid rgba(245, 163, 32, 0.25);
    border-radius: 8px;
    overflow: hidden;
    font-family: 'DM Sans', sans-serif;
}
.fake-cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(245, 163, 32, 0.08);
    border-bottom: 1px solid rgba(245, 163, 32, 0.2);
}
.fake-cal-month {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    color: #F2EDE4;
}
.fake-cal-nav {
    background: none;
    border: 1px solid rgba(245, 163, 32, 0.4);
    color: #F5A320;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
    transition: background 0.2s;
}
.fake-cal-nav:hover { background: rgba(245, 163, 32, 0.15); }
.fake-cal-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 10px 12px 4px;
    gap: 4px;
}
.fake-cal-days-header span {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(242, 237, 228, 0.45);
    text-transform: uppercase;
}
.fake-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 4px 12px 12px;
    gap: 4px;
}
.fake-cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.85rem;
    color: rgba(242, 237, 228, 0.25);
    cursor: default;
    transition: background 0.15s, color 0.15s;
}
.fake-cal-day.available {
    color: #F2EDE4;
    cursor: pointer;
}
.fake-cal-day.available:hover {
    background: rgba(245, 163, 32, 0.2);
    color: #F5A320;
}
.fake-cal-day.selected {
    background: #F5A320;
    color: #0A0B0D;
    font-weight: 700;
}
.fake-cal-day.today {
    border: 1px solid rgba(245, 163, 32, 0.5);
    color: #F2EDE4;
}
.fake-cal-times {
    border-top: 1px solid rgba(245, 163, 32, 0.15);
    padding: 16px 20px;
    display: none;
}
.fake-cal-times-label {
    font-size: 0.85rem;
    color: rgba(242, 237, 228, 0.7);
    margin-bottom: 12px;
}
.fake-cal-times-label strong { color: #F5A320; }
.fake-cal-time-slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.fake-cal-time-btn {
    background: rgba(245, 163, 32, 0.08);
    border: 1px solid rgba(245, 163, 32, 0.3);
    color: #F2EDE4;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    font-family: 'DM Sans', sans-serif;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.fake-cal-time-btn:hover,
.fake-cal-time-btn.selected {
    background: rgba(245, 163, 32, 0.2);
    border-color: #F5A320;
    color: #F5A320;
}
.fake-cal-book {
    border-top: 1px solid rgba(245, 163, 32, 0.15);
    padding: 16px 20px;
    text-align: center;
    display: none;
}
.fake-cal-book-btn {
    display: block;
    width: 100%;
    margin-bottom: 8px;
}
.fake-cal-book-note {
    font-size: 0.78rem;
    color: rgba(242, 237, 228, 0.45);
    margin: 0;
}


/* ============================================================
   NEW FRICTIONLESS IMPROVEMENTS
   ============================================================ */

/* === OPEN / CLOSED STATUS BADGES ============================= */
.location-status {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 10px;
    line-height: 1.4;
}
.status-open {
    background: rgba(34, 197, 94, 0.12);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.28);
}
.status-open::before {
    content: '\25cf';
    margin-right: 5px;
    font-size: 9px;
    animation: statusPulse 1.8s ease-out infinite;
}
.status-closed {
    background: rgba(212, 32, 32, 0.10);
    color: #f87171;
    border: 1px solid rgba(212, 32, 32, 0.22);
}
@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

/* Hero status — slightly larger */
.hero-status {
    font-size: 13px;
    padding: 5px 12px;
    margin-bottom: 0;
}
.stat--status {
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

/* Contact sidebar status */
.contact-status {
    margin-bottom: 8px;
    font-size: 11px;
}

/* === SMS BUTTON IN HERO ====================================== */
.btn-sms {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

/* === BOOKING SMS LINK ========================================= */
.booking-sms-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
    padding: 2px 0;
}
.booking-sms-btn:hover { color: var(--white); }

/* === CTA BANNER SMS PHONE LINK =============================== */
.phone-link--sms {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}
.phone-link--sms .phone-label {
    color: rgba(255, 255, 255, 0.40);
}
.phone-link--sms .phone-num {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.75);
}


/* === SERVICE MODAL PRICING BADGE ============================= */
.modal-price {
    display: inline-block;
    background: rgba(245, 163, 32, 0.08);
    border: 1px solid rgba(245, 163, 32, 0.22);
    color: #F5A320;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 7px 14px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

/* === REVIEW PLATFORM LINKS =================================== */
.reviews-platform-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 4px;
}
.review-platform-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--muted);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.review-platform-link:hover {
    border-color: #F5A320;
    color: var(--white);
    background: var(--card-hover);
}
.review-stars-sm { color: #F5A320; }

/* === CONTACT FORM — 3-COLUMN VEHICLE ROW ===================== */
.contact-row--3col {
    display: grid;
    grid-template-columns: 90px 1fr 1fr;
    gap: 16px;
}
@media (max-width: 480px) {
    .contact-row--3col {
        grid-template-columns: 1fr 1fr;
    }
    .contact-row--3col .contact-field:first-child {
        grid-column: 1 / -1;
    }
}
