:root {
    --primary-red: #cc2229;
    --dark-red: #a11b20;
    --text-dark: #1a1a1a;
    --text-light: #555;
    --bg-light: #f4f4f4;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 25px; }

/* --- NAVIGATION --- */
header {
    background: var(--white);
    padding: 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    flex-shrink: 0;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.nav-logo-img {
    height: 85px;
    width: auto;
    display: block;
    object-fit: contain;
    padding-bottom: 3px;
}
@media (max-width: 700px) {
    .nav-logo-img { height: 60px; }
}

.nav-links { display: flex; list-style: none; align-items: center; gap: 25px; flex-shrink: 0; }
.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-links a:hover { color: var(--primary-red); }

.nav-icon { width: 16px; height: 16px; flex-shrink: 0; }

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: var(--text-dark);
    flex-shrink: 0;
}
.hamburger svg { width: 24px; height: 24px; display: block; }

/* --- BUTTONS --- */
.btn-primary {
    background: var(--primary-red);
    color: white !important;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-large {
    background: var(--primary-red);
    color: white !important;
    padding: 18px 45px;
    font-size: 1.1rem;
    display: inline-block;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
    text-decoration: none;
}

.btn-primary:hover, .btn-large:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
}

.btn-outline {
    padding: 18px 45px;
    border: 2px solid rgba(255,255,255,0.8);
    color: white !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
    display: inline-block;
}
.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
    transform: translateY(-2px);
}

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* ── Slideshow container ── */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* ── Individual slides ── */
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    /* slide transition */
    transition: opacity 1.2s ease-in-out;
    /* Ken Burns zoom — starts slightly zoomed, scales back out */
    animation: kenBurns 5s ease-in-out infinite alternate;
    will-change: transform, opacity;
}

.hero-slide.active {
    opacity: 1;
}

@keyframes kenBurns {
    0%   { transform: scale(1.08) translateX(0px); }
    100% { transform: scale(1.0)  translateX(-8px); }
}

/* Pause Ken Burns on inactive slides so re-entering is always fresh */
.hero-slide:not(.active) {
    animation-play-state: paused;
}

/* ── Dark overlay for text legibility ── */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.45) 60%,
        rgba(0, 0, 0, 0.65) 100%
    );
}

/* ── Hero content sits above the slideshow ── */
.hero .container {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    padding-bottom: 120px;
}

/* ── Slogan image ── */
.hero-tagline {
    display: inline-block;
    margin-bottom: 20px;
}
.slogan-img {
    height: 160px;
    width: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    mix-blend-mode: screen;
}
@media (max-width: 700px) {
    .slogan-img { height: 100px; }
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.text-red { color: var(--primary-red); }

.hero p {
    max-width: 650px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.88);
    text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

/* Highlighted discount text in hero section */
.discount-highlight {
    max-width: 650px;
    margin: 10px auto 30px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-red);
    text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

@media (max-width: 600px) {
    .discount-highlight {
        font-size: 1rem;
    }
}

/* ── Hero review badges ── */
.hero-reviews {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.review-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    padding: 9px 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
    color: white;
}
.review-badge:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}
.review-badge .fa-google  { color: #fff; font-size: 1.1rem; }
.review-badge .fa-yelp    { color: #ff1a1a; font-size: 1.1rem; }
.review-badge .angi-icon  { width: 18px; height: 18px; border-radius: 4px; }
.review-badge-text { display: flex; flex-direction: column; line-height: 1.2; }
.review-stars { color: #f5a623; font-size: 0.75rem; letter-spacing: 1px; }
.review-label { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.9); }

.hero-btns { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }

/* ── Slideshow dots ── */
.hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.7);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, border-color 0.3s, transform 0.2s;
}
.hero-dot.active,
.hero-dot:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: scale(1.25);
}

/* --- TRUST BAR --- */
.trust-bar { background: #111; color: #fff; padding: 15px 0; font-size: 0.85rem; font-weight: 500; }
.trust-flex { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-flex span { display: flex; align-items: center; gap: 7px; }
.trust-icon { width: 15px; height: 15px; color: var(--primary-red); stroke: var(--primary-red); flex-shrink: 0; }

/* --- VAN SECTION --- */
.about-van { padding: 100px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.circle-frame {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid var(--bg-light);
    box-shadow: var(--shadow);
    margin: 0 auto;
}
.van-img { width: 100%; height: 100%; object-fit: contain; display: block; background: var(--bg-light); }

.section-title { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.2; }
.section-title span { color: var(--primary-red); }
.left { text-align: left; }

.check-list { list-style: none; margin-top: 25px; }
.check-list li {
    padding: 7px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}
.check-icon { width: 18px; height: 18px; color: var(--primary-red); stroke: var(--primary-red); flex-shrink: 0; }

/* --- SERVICES --- */
.services { padding: 100px 0; background: var(--bg-light); }
.text-center { text-align: center; margin-bottom: 50px; }
.section-subtitle { color: var(--text-light); font-size: 1.1rem; margin-top: 10px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

@media (max-width: 600px) {
    .service-grid { grid-template-columns: 1fr; }
}
.service-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.4s, translate 0.4s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.service-card .icon {
    width: 52px; height: 52px;
    background: #fff0f0;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.service-card .icon svg { width: 26px; height: 26px; color: var(--primary-red); stroke: var(--primary-red); }
.service-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.service-card p { color: var(--text-light); }

/* Lazy-load entrance animation */
.service-card--hidden {
    opacity: 0;
    translate: 0 20px;
}
.service-card--visible {
    opacity: 1;
    translate: 0 0;
}

/* View More button */
.services-more-wrap {
    text-align: center;
    margin-top: 44px;
}
.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    background: transparent;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.2s;
}
.btn-outline-dark svg { width: 17px; height: 17px; }
.btn-outline-dark:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
    transform: translateY(-2px);
}
.btn-outline-dark:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* --- PROCESS --- */
.process { padding: 100px 0; text-align: center; }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-top: 50px; }
.step .number { font-size: 4rem; font-weight: 700; color: #efefef; display: block; line-height: 1; margin-bottom: -10px; }
.step h4 { font-size: 1.3rem; margin-bottom: 10px; }
.step p { color: var(--text-light); }

/* --- TESTIMONIALS --- */
.testimonials { padding: 100px 0; background: white; }

/* Platform badge row */
.review-platform-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.platform-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.platform-badge:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.platform-badge.google  { background: #fff; color: #333; border: 1px solid #e0e0e0; }
.platform-badge.google i { color: #4285f4; font-size: 1.2rem; }
.platform-badge.yelp    { background: #fff; color: #333; border: 1px solid #e0e0e0; }
.platform-badge.yelp i  { color: #d32323; font-size: 1.2rem; }
.platform-badge.angi    { background: #fff; color: #333; border: 1px solid #e0e0e0; }
.platform-badge.angi i  { color: var(--primary-red); font-size: 1.2rem; }
.platform-stars { color: #f5a623; font-size: 0.8rem; letter-spacing: 1px; }
.platform-count { font-size: 0.78rem; color: var(--text-light); }

.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 50px; }
.review-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
    transition: transform 0.3s;
    position: relative;
}
.review-card:hover { transform: translateY(-3px); }

/* Review source tag */
.review-source {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}
.review-source .fa-yelp    { color: #d32323; }
.review-source .fa-google  { color: #4285f4; }

.stars { color: #f5a623; font-size: 1.1rem; margin-bottom: 15px; letter-spacing: 2px; }
.review-text { color: var(--text-light); font-style: italic; margin-bottom: 20px; line-height: 1.8; }
.reviewer { display: flex; align-items: center; gap: 12px; border-top: 1px solid #e8e8e8; padding-top: 15px; }
.reviewer-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--primary-red); color: white;
    font-weight: 700; font-size: 0.85rem;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.reviewer-info strong { display: block; font-size: 0.95rem; }
.reviewer-info span { font-size: 0.82rem; color: var(--text-light); }

/* --- CTA BOTTOM --- */
.cta-bottom { padding: 100px 0; text-align: center; background: var(--text-dark); color: white; }
.cta-tagline {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-red);
    margin-bottom: 16px;
}
.cta-bottom h2 { font-size: 2.8rem; margin-bottom: 15px; color: white; }
.cta-bottom p { color: #aaa; font-size: 1.15rem; margin-bottom: 40px; }

/* --- FOOTER --- */
footer { padding: 60px 0; background: #fafafa; text-align: center; border-top: 1px solid #eee; }
.footer-logo {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 6px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-logo span { color: var(--primary-red); }
.footer-tagline {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-red);
    margin-bottom: 10px;
}
footer > .container > p { color: var(--text-light); }
.footer-links { display: flex; justify-content: center; gap: 25px; list-style: none; margin: 20px 0; }
.footer-links a { text-decoration: none; color: var(--text-light); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary-red); }
.social-links {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 22px 0 18px;
}
.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, color 0.25s, transform 0.25s;
    text-decoration: none;
    font-size: 16px;
}
.social-links a:hover { background: var(--primary-red); color: white; transform: translateY(-3px); }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .header-center { display: none; }
    .grid-2 { grid-template-columns: 1fr; text-align: center; }
    .section-title.left { text-align: center; }
    .hero h1 { font-size: 2.5rem; }
    .cta-bottom h2 { font-size: 2rem; }
    .check-list { display: inline-flex; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 700px) {
    .hamburger { display: flex; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border-top: 1px solid #eee;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        z-index: 999;
    }
    .nav-links.open { display: flex; }

    .nav-links li { border-bottom: 1px solid #f5f5f5; }
    .nav-links a {
        padding: 14px 25px;
        font-size: 1rem;
        justify-content: flex-start;
    }
    .nav-links li:last-child { padding: 15px 25px; border-bottom: none; }
    .nav-links .btn-primary {
        display: block;
        text-align: center;
        padding: 14px 25px;
        border-radius: 0;
    }

    .hero-btns { flex-direction: column; align-items: center; }
    .hero .container { padding-top: 80px; padding-bottom: 80px; }
    .hero h1 { font-size: 2rem; }
    .btn-large, .btn-outline { width: 100%; text-align: center; padding: 16px 30px; }
    .trust-flex { gap: 12px; }
}
