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

    :root {
      --primary: #0F2B4A;
      --primary-light: #1A3D66;
      --accent: #D4940A;
      --accent-light: #F0B429;
      --red: #DC2626;
      --dark: #0B1222;
      --text: #1E293B;
      --text-2: #475569;
      --light: #F1F5F9;
      --lighter: #F8FAFC;
      --border: #E2E8F0;
      --white: #FFFFFF;
      --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
      --shadow-md: 0 4px 20px rgba(0,0,0,0.09);
      --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    }

    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
    h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; line-height: 1.2; }

    /* ─── ANIMATIONS ─── */
    .fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    @media (prefers-reduced-motion: reduce) { .fade-up { opacity: 1; transform: none; transition: none; } }

    /* ─── TOP BAR ─── */
    .top-bar {
      background: var(--dark); color: rgba(255,255,255,0.6);
      font-size: 0.78rem; padding: 0.5rem 2rem;
      display: flex; justify-content: space-between; align-items: center;
    }
    .top-bar a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
    .top-bar a:hover, .top-bar-right a { color: var(--accent-light); }
    .top-bar-right { display: flex; gap: 1.5rem; align-items: center; }
    .top-bar-right a { font-weight: 600; }

    /* ─── NAV ─── */
    nav { position: sticky; top: 0; z-index: 200; background: var(--white); border-bottom: 1px solid var(--border); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
    .nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 72px; }
    .logo { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; }
    .logo-icon { width: 42px; height: 42px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent-light); font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 800; }
    .logo-text { font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--primary); line-height: 1.1; }
    .logo-text span { color: var(--accent); display: block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a { color: var(--text-2); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color 0.2s; position: relative; padding-bottom: 2px; }
    .nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--accent); transform: scaleX(0); transition: transform 0.2s; }
    .nav-links a:hover { color: var(--primary); }
    .nav-links a:hover::after { transform: scaleX(1); }
    .nav-right { display: flex; align-items: center; gap: 0.75rem; }
    .lang-btn { display: flex; align-items: center; gap: 0.35rem; background: var(--light); border: 1.5px solid var(--border); border-radius: 8px; padding: 0.4rem 0.75rem; font-size: 0.78rem; font-weight: 700; cursor: pointer; color: var(--text); transition: all 0.2s; font-family: 'Inter', sans-serif; white-space: nowrap; }
    .lang-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
    .nav-cta { display: inline-flex; align-items: center; gap: 0.45rem; background: var(--accent); color: var(--white); padding: 0.6rem 1.3rem; border-radius: 8px; text-decoration: none; font-size: 0.88rem; font-weight: 700; font-family: 'Poppins', sans-serif; box-shadow: 0 2px 10px rgba(212,148,10,0.35); transition: all 0.2s; }
    .nav-cta:hover { background: var(--accent-light); transform: translateY(-1px); }

    /* Hamburger */
    .hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: all 0.3s; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--white); z-index: 199; padding: 2rem; flex-direction: column; gap: 0; overflow-y: auto; }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { display: block; padding: 1rem 0; border-bottom: 1px solid var(--border); color: var(--text); text-decoration: none; font-size: 1.1rem; font-weight: 600; font-family: 'Poppins', sans-serif; }
    .mobile-menu .mobile-cta { margin-top: 1.5rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; background: var(--accent); color: var(--white); padding: 1rem; border-radius: 10px; font-size: 1.1rem; font-weight: 700; text-decoration: none; }
    .mobile-menu .mobile-lang { margin-top: 0.75rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; background: var(--light); border: 1.5px solid var(--border); padding: 0.75rem; border-radius: 10px; font-size: 0.9rem; font-weight: 700; cursor: pointer; font-family: 'Inter', sans-serif; }

    /* ─── HERO ─── */
    .hero {
      position: relative;
      background: url('lucas-auto-service-towing-south-salt-lake.jpg') center 50% / cover no-repeat;
      color: var(--white);
      padding: 7rem 2rem 6rem;
      text-align: center;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(165deg, rgba(9,29,51,0.68) 0%, rgba(11,18,34,0.62) 100%);
    }
    .hero-inner { position: relative; max-width: 820px; margin: 0 auto; }
    .hero-logo-mark {
      width: 72px; height: 72px;
      background: var(--accent);
      border-radius: 18px;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 900;
      color: var(--white);
      margin: 0 auto 1.5rem;
      box-shadow: 0 8px 32px rgba(212,148,10,0.4);
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(212,148,10,0.15); border: 1px solid rgba(212,148,10,0.3);
      color: var(--accent-light); padding: 0.4rem 1.1rem; border-radius: 50px;
      font-size: 0.72rem; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase;
      margin-bottom: 1.5rem;
    }
    .hero h1 {
      font-size: 3.8rem; font-weight: 900; letter-spacing: -1.5px; line-height: 1.05;
      margin-bottom: 1.2rem; text-transform: uppercase;
    }
    .hero h1 .highlight { color: var(--accent-light); }
    .hero-divider { width: 60px; height: 3px; background: var(--accent); margin: 1.4rem auto; border-radius: 2px; }
    .hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 2.5rem; max-width: 580px; margin-left: auto; margin-right: auto; }
    .hero-btns { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
    .btn-hero-primary { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--accent); color: var(--white); padding: 0.95rem 2.2rem; border-radius: 8px; font-size: 0.95rem; font-weight: 700; font-family: 'Poppins', sans-serif; text-decoration: none; box-shadow: 0 4px 20px rgba(212,148,10,0.4); transition: all 0.2s; text-transform: uppercase; letter-spacing: 0.5px; }
    .btn-hero-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(212,148,10,0.5); }
    .btn-hero-secondary { display: inline-flex; align-items: center; gap: 0.5rem; background: transparent; border: 2px solid rgba(255,255,255,0.4); color: var(--white); padding: 0.95rem 2.2rem; border-radius: 8px; font-size: 0.95rem; font-weight: 700; font-family: 'Poppins', sans-serif; text-decoration: none; transition: all 0.2s; text-transform: uppercase; letter-spacing: 0.5px; }
    .btn-hero-secondary:hover { border-color: var(--accent-light); color: var(--accent-light); }
    .btn-hero-emergency { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--red); color: var(--white); padding: 0.95rem 2.2rem; border-radius: 8px; font-size: 0.95rem; font-weight: 700; font-family: 'Poppins', sans-serif; text-decoration: none; transition: all 0.2s; text-transform: uppercase; letter-spacing: 0.5px; }
    .btn-hero-emergency:hover { background: #b91c1c; transform: translateY(-2px); }
    .hero-trust { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
    .hero-trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.55); }
    .hero-trust-item i { color: var(--accent-light); font-size: 0.85rem; }

    /* ─── STATS BAR ─── */
    .stats-bar { background: var(--primary); padding: 1.5rem 2rem; }
    .stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; align-items: start; }
    .stat-item { padding: 0.75rem; position: relative; }
    .stat-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 15%; bottom: 15%; width: 1px; background: rgba(255,255,255,0.12); }
    .stat-num { font-family: 'Poppins', sans-serif; font-size: clamp(1.2rem, 2.5vw, 2rem); font-weight: 800; color: var(--accent-light); line-height: 1; }
    .stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.55); margin-top: 0.3rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }

    /* ─── SECTION BASE ─── */
    .section { padding: 5.5rem 2rem; }
    .section-inner { max-width: 1200px; margin: 0 auto; }
    .section-tag { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; }
    .section-title { font-size: 2.5rem; font-weight: 800; color: var(--dark); letter-spacing: -0.75px; margin-bottom: 0.75rem; }
    .section-sub { color: var(--text-2); font-size: 1rem; max-width: 520px; line-height: 1.75; }
    .section-header { text-align: center; margin-bottom: 4rem; }
    .section-header .section-sub { margin: 0 auto; }

    /* ─── SERVICES ─── */
    .services-section { background: var(--white); }
    .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem 1.5rem; }
    .service-card {
      text-align: center;
      padding: 2.5rem 1.25rem 2rem;
      border-radius: 16px;
      border: 1px solid var(--border);
      background: var(--white);
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    .service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); transform: scaleX(0); transition: transform 0.3s; transform-origin: left; }
    .service-card:hover { box-shadow: 0 12px 40px rgba(15,43,74,0.12); transform: translateY(-5px); border-color: transparent; }
    .service-card:hover::after { transform: scaleX(1); }
    .service-icon-wrap {
      width: 80px; height: 80px;
      background: var(--primary);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; color: var(--accent-light);
      margin: 0 auto 1.25rem;
      transition: all 0.3s;
      box-shadow: 0 6px 20px rgba(15,43,74,0.2);
    }
    .service-card:hover .service-icon-wrap { background: var(--accent); transform: scale(1.1); box-shadow: 0 8px 28px rgba(212,148,10,0.35); }
    .service-card:hover .service-icon-wrap i { color: var(--white); }
    .service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--primary); }
    .service-card p { font-size: 0.82rem; color: var(--text-2); line-height: 1.65; margin-bottom: 1.25rem; }
    .service-link {
      display: inline-block;
      font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
      color: var(--primary);
      border: 1.5px solid var(--border);
      padding: 0.45rem 1rem; border-radius: 6px;
      text-decoration: none; transition: all 0.2s;
    }
    .service-link:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
    .service-card.featured { background: var(--primary); border-color: var(--primary); }
    .service-card.featured h3 { color: var(--accent-light); }
    .service-card.featured p { color: rgba(255,255,255,0.65); }
    .service-card.featured .service-icon-wrap { background: rgba(255,255,255,0.12); box-shadow: none; }
    .service-card.featured .service-link { color: var(--accent-light); border-color: rgba(255,255,255,0.25); }
    .service-card.featured .service-link:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
    .service-card.featured::after { background: linear-gradient(90deg, var(--accent-light), var(--accent)); }

    /* ─── ABOUT ─── */
    .about-section { background: var(--lighter); }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
    .about-image { border-radius: 20px; height: 440px; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
    .about-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .about-badge { position: absolute; bottom: 1.5rem; left: 1.5rem; background: var(--accent); border-radius: 14px; padding: 1rem 1.3rem; display: flex; align-items: center; gap: 0.75rem; box-shadow: 0 4px 20px rgba(212,148,10,0.4); }
    .about-badge-num { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 900; color: var(--white); line-height: 1; }
    .about-badge-text { font-size: 0.75rem; color: rgba(255,255,255,0.9); font-weight: 600; line-height: 1.3; }
    .about-checklist { display: flex; flex-direction: column; gap: 0.75rem; margin: 2rem 0; }
    .about-check { display: flex; gap: 1rem; align-items: flex-start; padding: 1.1rem 1.3rem; border-radius: 12px; border: 1px solid var(--border); background: var(--white); transition: all 0.2s; }
    .about-check:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
    .about-check-icon { width: 40px; height: 40px; flex-shrink: 0; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent-light); font-size: 0.9rem; }
    .about-check h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.2rem; color: var(--dark); }
    .about-check p { font-size: 0.82rem; color: var(--text-2); line-height: 1.55; }

    /* ─── GALLERY ─── */
    .gallery-section { background: var(--lighter); }
    .gallery-carousel-wrap { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; margin-top: 2.5rem; }
    .gallery-carousel-wrap::-webkit-scrollbar { display: none; }
    .gallery-carousel-track { display: flex; gap: 1.25rem; }
    .gallery-card { flex-shrink: 0; width: calc((100% - 1.25rem) / 2); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-md); position: relative; height: 360px; scroll-snap-align: start; }
    .gallery-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
    .gallery-card:hover img { transform: scale(1.04); }
    .gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem 1.25rem; background: linear-gradient(to top, rgba(9,29,51,0.85) 0%, transparent 100%); color: var(--white); font-size: 0.82rem; font-weight: 600; }
    .gallery-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; }
    .gallery-btn { width: 42px; height: 42px; background: var(--primary); border: 1.5px solid var(--primary); border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--white); transition: all 0.2s; font-size: 0.9rem; }
    .gallery-btn:hover { background: var(--accent); border-color: var(--accent); }
    .gallery-dots { display: flex; gap: 0.5rem; align-items: center; }
    .gallery-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; transition: all 0.25s; }
    .gallery-dot.active { background: var(--accent); transform: scale(1.4); }
    @media (max-width: 640px) { .gallery-card { width: 85vw; max-width: 360px; height: 260px; } }

    /* ─── REVIEWS ─── */
    .reviews-section {
      background: url('lucas-auto-tow-truck-salt-lake-city.jpg') center 30% / cover no-repeat;
      position: relative;
    }
    .reviews-section::before { content: ''; position: absolute; inset: 0; background: linear-gradient(165deg, rgba(9,29,51,0.95) 0%, rgba(11,18,34,0.93) 100%); }
    .reviews-section .section-inner { position: relative; }
    .reviews-section .section-tag { color: var(--accent-light); }
    .reviews-section .section-title { color: var(--white); }
    .reviews-rating-bar { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-bottom: 3rem; flex-wrap: wrap; }
    .rating-pill { display: inline-flex; align-items: center; gap: 0.75rem; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); border-radius: 50px; padding: 0.65rem 1.5rem; backdrop-filter: blur(8px); }
    .rating-pill .g-logo { font-weight: 800; font-size: 0.9rem; color: #93C5FD; }
    .rating-pill .rating-num { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.05rem; color: var(--white); line-height: 1; }
    .rating-pill .stars { color: #F59E0B; font-size: 0.9rem; letter-spacing: 2px; white-space: nowrap; flex-shrink: 0; }
    .rating-pill .verified { font-size: 0.82rem; color: rgba(255,255,255,0.6); font-weight: 500; }
    .carousel-wrap { position: relative; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .carousel-wrap::-webkit-scrollbar { display: none; }
    .carousel-track { display: flex; gap: 1.25rem; }
    .review-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(12px); border-radius: 16px; padding: 1.75rem; width: calc((100% - 2.5rem) / 3); flex-shrink: 0; display: flex; flex-direction: column; gap: 0.75rem; transition: background 0.2s, border-color 0.2s; scroll-snap-align: start; }
    .review-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(212,148,10,0.3); }
    .review-stars { color: #F59E0B; font-size: 0.85rem; letter-spacing: 2px; }
    .review-text { font-size: 0.9rem; color: rgba(255,255,255,0.85); line-height: 1.75; font-style: italic; flex: 1; }
    .review-author { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; padding-top: 0.75rem; border-top: 1px solid rgba(255,255,255,0.1); }
    .review-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--accent); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 800; flex-shrink: 0; font-family: 'Poppins', sans-serif; }
    .review-name { font-size: 0.88rem; font-weight: 700; color: var(--white); }
    .review-badge { font-size: 0.72rem; color: rgba(255,255,255,0.45); }
    .carousel-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2.5rem; }
    .carousel-btn { width: 42px; height: 42px; background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.2); border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--white); transition: all 0.2s; font-size: 0.9rem; }
    .carousel-btn:hover { background: var(--accent); border-color: var(--accent); }
    .carousel-dots { display: flex; gap: 0.5rem; align-items: center; }
    .carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.25); border: none; cursor: pointer; transition: all 0.25s; }
    .carousel-dot.active { background: var(--accent-light); transform: scale(1.4); }
    .reviews-google-btn { display: flex; justify-content: center; margin-top: 2.5rem; }
    .btn-google { display: inline-flex; align-items: center; gap: 0.6rem; border: 1.5px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.85); padding: 0.8rem 1.8rem; border-radius: 8px; font-size: 0.88rem; font-weight: 600; text-decoration: none; transition: all 0.2s; backdrop-filter: blur(4px); }
    .btn-google:hover { border-color: var(--accent-light); color: var(--accent-light); background: rgba(255,255,255,0.1); }

    /* ─── TIPS ─── */
    .tips-section { background: var(--white); }
    .tips-carousel-wrap { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; margin-top: 2.5rem; }
    .tips-carousel-wrap::-webkit-scrollbar { display: none; }
    .tips-carousel-track { display: flex; gap: 1.25rem; }
    .tip-card { flex-shrink: 0; width: calc((100% - 2.5rem) / 3); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: all 0.25s; scroll-snap-align: start; }
    .tip-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
    .tips-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; }
    .tips-btn { width: 42px; height: 42px; background: var(--primary); border: 1.5px solid var(--primary); border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--white); transition: all 0.2s; font-size: 0.9rem; }
    .tips-btn:hover { background: var(--accent); border-color: var(--accent); }
    .tips-dots { display: flex; gap: 0.5rem; align-items: center; }
    .tips-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; transition: all 0.25s; }
    .tips-dot.active { background: var(--accent); transform: scale(1.4); }
    .tip-card-photo { background: var(--primary); height: 160px; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: rgba(255,255,255,0.15); overflow: hidden; position: relative; }
    .tip-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .tip-card-body { padding: 1.6rem; }
    .tip-tag { display: inline-block; font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); background: var(--accent); padding: 0.25rem 0.65rem; border-radius: 4px; margin-bottom: 0.65rem; }
    .tip-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--dark); line-height: 1.4; }
    .tip-card p { font-size: 0.83rem; color: var(--text-2); line-height: 1.65; }

    /* ─── CONTACT ─── */
    .contact-section { background: var(--lighter); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
    .contact-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
    .contact-info h2 { font-size: 2.2rem; font-weight: 800; color: var(--dark); margin-bottom: 0.75rem; letter-spacing: -0.5px; }
    .contact-info > p { color: var(--text-2); font-size: 0.95rem; margin-bottom: 2rem; line-height: 1.75; }
    .contact-details { display: flex; flex-direction: column; gap: 0.75rem; }
    .contact-detail { display: flex; align-items: flex-start; gap: 1rem; font-size: 0.88rem; background: var(--white); padding: 1rem 1.2rem; border-radius: 12px; border: 1px solid var(--border); }
    .contact-detail-icon { width: 40px; height: 40px; flex-shrink: 0; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--accent-light); }
    .contact-detail strong { display: block; font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--dark); }
    .contact-detail span { font-size: 0.85rem; color: var(--text-2); }
    .contact-form-card { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 2.5rem; box-shadow: var(--shadow-md); }
    .contact-form-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.3rem; color: var(--dark); font-family: 'Poppins', sans-serif; }
    .form-sub { font-size: 0.83rem; color: var(--text-2); margin-bottom: 1.5rem; }
    .contact-form-card form { display: flex; flex-direction: column; gap: 0.85rem; }
    .contact-form-card input, .contact-form-card select, .contact-form-card textarea { width: 100%; padding: 0.85rem 1rem; border: 1.5px solid var(--border); border-radius: 10px; font-size: 0.88rem; font-family: 'Inter', sans-serif; color: var(--text); background: var(--lighter); transition: all 0.2s; outline: none; }
    .contact-form-card input:focus, .contact-form-card select:focus, .contact-form-card textarea:focus { border-color: var(--primary-light); box-shadow: 0 0 0 3px rgba(15,43,74,0.08); background: var(--white); }
    .contact-form-card textarea { resize: vertical; min-height: 95px; }
    .contact-form-card select { appearance: none; cursor: pointer; }
    .btn-submit { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; background: var(--primary); color: var(--white); padding: 0.95rem; border-radius: 10px; font-size: 0.95rem; font-weight: 700; font-family: 'Poppins', sans-serif; border: none; cursor: pointer; transition: all 0.2s; margin-top: 0.25rem; text-transform: uppercase; letter-spacing: 0.5px; }
    .btn-submit:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(15,43,74,0.25); }
    #towing-cta { display: none; text-align: center; padding: 1.5rem 0; }
    #towing-cta a.btn-submit { text-decoration: none; }

    /* ─── CTA BANNER ─── */
    .cta-banner { background: linear-gradient(155deg, var(--primary) 0%, #091d33 100%); padding: 5.5rem 2rem; text-align: center; position: relative; overflow: hidden; }
    .cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 80% at 50% 100%, rgba(212,148,10,0.07) 0%, transparent 70%); }
    .cta-banner-inner { position: relative; max-width: 650px; margin: 0 auto; }
    .cta-banner h2 { font-size: 2.6rem; font-weight: 900; color: var(--white); margin-bottom: 0.75rem; letter-spacing: -1px; }
    .cta-banner p { color: rgba(255,255,255,0.55); font-size: 1rem; margin-bottom: 2rem; line-height: 1.75; }
    .cta-phone { font-family: 'Poppins', sans-serif; font-size: 2.8rem; font-weight: 900; color: var(--accent-light); text-decoration: none; display: inline-block; margin-bottom: 1rem; transition: color 0.2s; letter-spacing: -1px; }
    .cta-phone:hover { color: var(--white); }
    .cta-divider { width: 40px; height: 2px; background: rgba(255,255,255,0.15); margin: 1rem auto; }
    .cta-address { color: rgba(255,255,255,0.4); font-size: 0.88rem; line-height: 1.75; }

    /* ─── FOOTER ─── */
    footer { background: var(--dark); padding: 4rem 2rem 1.5rem; }
    .footer-grid { max-width: 1200px; margin: 0 auto 2.5rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
    .footer-brand .logo-text { color: var(--white); }
    .footer-brand .logo-text span { color: var(--accent-light); }
    .footer-brand .logo-icon { margin-bottom: 1rem; }
    .footer-desc { font-size: 0.83rem; color: rgba(255,255,255,0.4); line-height: 1.75; margin-top: 0.75rem; max-width: 240px; }
    .footer-col h4 { font-family: 'Poppins', sans-serif; font-size: 0.82rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
    .footer-col ul a { font-size: 0.82rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
    .footer-col ul a:hover { color: var(--accent-light); }
    .footer-col .hours-item { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-bottom: 0.4rem; }
    .footer-col .hours-item strong { color: rgba(255,255,255,0.65); }
    .hours-table { margin-top: 0.5rem; display: flex; flex-direction: column; gap: 0.2rem; }
    .hours-row { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.82rem; }
    .hours-row .hr-day { color: var(--dark); font-weight: 500; }
    .hours-row .hr-time { color: var(--text-2); }
    .hours-row.hr-closed .hr-day, .hours-row.hr-closed .hr-time { color: var(--text-2); opacity: 0.5; }
    .footer-col .hr-day { color: rgba(255,255,255,0.65) !important; font-weight: 400; }
    .footer-col .hr-time { color: rgba(255,255,255,0.4) !important; }
    .footer-col .hr-closed .hr-day, .footer-col .hr-closed .hr-time { color: rgba(255,255,255,0.25) !important; opacity: 1; }
    .footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: rgba(255,255,255,0.28); flex-wrap: wrap; gap: 0.75rem; }
    .footer-bottom-links { display: flex; gap: 1.5rem; }
    .footer-bottom-links a { color: rgba(255,255,255,0.28); text-decoration: none; transition: color 0.2s; }
    .footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1100px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    }
    @media (max-width: 900px) {
      .about-grid { grid-template-columns: 1fr; gap: 3rem; }
      .about-image { height: 300px; }
      .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .tip-card { width: calc((100% - 1.25rem) / 2); }
      .review-card { width: calc((100% - 1.25rem) / 2); }
      .hero h1 { font-size: 2.8rem; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
      .stat-item:nth-child(2)::after, .stat-item:nth-child(4)::after { display: none; }
    }
    @media (max-width: 768px) {
      .top-bar { display: none; }
      .nav-links { display: none; }
      .nav-right .lang-btn #lang-label { display: none; }
      .nav-right .nav-cta { display: none; }
      .hamburger { display: flex; }
      .hero { padding: 4rem 1.25rem 3.5rem; }
      .hero h1 { font-size: 2.1rem; }
      .hero-btns { flex-direction: column; align-items: center; }
      .btn-hero-primary, .btn-hero-secondary, .btn-hero-emergency { width: 100%; justify-content: center; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); align-items: start; }
      .stat-item { align-self: start; }
      .stat-item:nth-child(2)::after, .stat-item:nth-child(4)::after { display: none; }
      .stat-item:nth-child(1)::after, .stat-item:nth-child(3)::after { top: 10%; bottom: 10%; }
      .section { padding: 3.5rem 1.25rem; }
      .section-title { font-size: 2rem; }
      .services-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
      .service-icon-wrap { width: 64px; height: 64px; font-size: 1.3rem; }
      .tip-card { width: 82vw; max-width: 320px; }
      .review-card { width: 85vw; max-width: 340px; }
      .cta-banner h2 { font-size: 1.9rem; }
      .cta-phone { font-size: 2.1rem; }
      .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .rating-pill { gap: 0.5rem; padding: 0.55rem 1rem; flex-wrap: nowrap; }
      .rating-pill .verified { font-size: 0.72rem; white-space: nowrap; }
    }
    @media (max-width: 480px) {
      .services-grid { grid-template-columns: 1fr; }
      .hero h1 { font-size: 1.8rem; }
      .stats-bar { padding: 1.25rem 1rem; }
      .stats-inner { align-items: start; }
      .stat-item { align-self: start; padding: 0.6rem 0.4rem; }
      .stat-num { font-size: 1rem; white-space: nowrap; }
      .stat-label { font-size: 0.6rem; letter-spacing: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
      .hero-logo-mark { width: 60px; height: 60px; font-size: 1.2rem; }
    }

    /* ═══════════════════════════════════════════════════════════
       SEO PAGES — shared components for service & Spanish pages
       ═══════════════════════════════════════════════════════════ */

    /* ─── PAGE HERO (interior pages) ─── */
    .page-hero { background: linear-gradient(155deg, var(--primary) 0%, #091d33 100%); color: var(--white); padding: 3.5rem 2rem 3rem; position: relative; overflow: hidden; }
    .page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 90% at 50% 120%, rgba(212,148,10,0.10) 0%, transparent 70%); }
    .page-hero-inner { position: relative; max-width: 900px; margin: 0 auto; }
    .breadcrumbs { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-bottom: 1.1rem; }
    .breadcrumbs a { color: rgba(255,255,255,0.6); text-decoration: none; }
    .breadcrumbs a:hover { color: var(--accent-light); }
    .breadcrumbs span { margin: 0 0.4rem; opacity: 0.4; }
    .page-hero h1 { font-size: 2.7rem; font-weight: 900; letter-spacing: -1px; line-height: 1.1; margin-bottom: 1rem; }
    .page-hero h1 .highlight { color: var(--accent-light); }
    .page-hero p.lede { font-size: 1.05rem; color: rgba(255,255,255,0.72); line-height: 1.75; max-width: 660px; }
    .page-hero-btns { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 2rem; }

    /* ─── PROSE / CONTENT BLOCKS ─── */
    .prose { max-width: 760px; }
    .prose h2 { font-size: 1.75rem; font-weight: 800; color: var(--dark); letter-spacing: -0.5px; margin: 2.75rem 0 0.9rem; }
    .prose h2:first-child { margin-top: 0; }
    .prose h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin: 1.9rem 0 0.5rem; }
    .prose p { font-size: 0.95rem; color: var(--text-2); line-height: 1.8; margin-bottom: 1rem; }
    .prose ul { list-style: none; margin: 0.75rem 0 1.35rem; display: flex; flex-direction: column; gap: 0.55rem; }
    .prose ul li { font-size: 0.92rem; color: var(--text-2); line-height: 1.7; padding-left: 1.75rem; position: relative; }
    .prose ul li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; top: 0.1rem; color: var(--accent); font-size: 0.75rem; }
    .prose strong { color: var(--dark); font-weight: 700; }
    .prose a { color: var(--primary); font-weight: 600; text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 2px; }
    .prose a:hover { color: var(--accent); }

    /* ─── TWO-COLUMN CONTENT + SIDEBAR ─── */
    .content-layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 3.5rem; align-items: start; max-width: 1200px; margin: 0 auto; }
    .sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 1.25rem; }
    .sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 1.6rem; box-shadow: var(--shadow-sm); }
    .sidebar-card.dark { background: var(--primary); border-color: var(--primary); }
    .sidebar-card h3 { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 0.5rem; }
    .sidebar-card.dark h3 { color: var(--white); }
    .sidebar-card p { font-size: 0.85rem; color: var(--text-2); line-height: 1.7; margin-bottom: 1.1rem; }
    .sidebar-card.dark p { color: rgba(255,255,255,0.6); }
    .sidebar-phone { display: flex; align-items: center; justify-content: center; gap: 0.5rem; background: var(--accent); color: var(--white); padding: 0.9rem; border-radius: 10px; font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 800; text-decoration: none; transition: all 0.2s; }
    .sidebar-phone:hover { background: var(--accent-light); transform: translateY(-1px); }
    .sidebar-list { list-style: none; display: flex; flex-direction: column; gap: 0.15rem; }
    .sidebar-list a { display: block; font-size: 0.86rem; color: var(--text-2); text-decoration: none; padding: 0.55rem 0; border-bottom: 1px solid var(--border); transition: all 0.2s; }
    .sidebar-list li:last-child a { border-bottom: none; }
    .sidebar-list a:hover { color: var(--primary); padding-left: 0.35rem; }
    .sidebar-list a[aria-current="page"] { color: var(--primary); font-weight: 700; }
    .sidebar-hours { display: flex; flex-direction: column; gap: 0.25rem; }

    /* ─── INFO CALLOUT ─── */
    .callout { display: flex; gap: 1rem; background: var(--lighter); border: 1px solid var(--border); border-left: 4px solid var(--accent); border-radius: 10px; padding: 1.25rem 1.4rem; margin: 1.75rem 0; }
    .callout i { color: var(--accent); font-size: 1.1rem; flex-shrink: 0; margin-top: 0.15rem; }
    .callout p { font-size: 0.88rem; color: var(--text-2); line-height: 1.7; margin: 0; }
    .callout p strong { color: var(--dark); }

    /* ─── PRICE / SPEC TABLE ─── */
    .spec-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0 1.75rem; font-size: 0.88rem; }
    .spec-table th { text-align: left; background: var(--primary); color: var(--white); font-family: 'Poppins', sans-serif; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 0.8rem 1rem; }
    .spec-table td { padding: 0.8rem 1rem; border-bottom: 1px solid var(--border); color: var(--text-2); line-height: 1.6; }
    .spec-table tr:nth-child(even) td { background: var(--lighter); }
    .spec-table td:first-child { font-weight: 600; color: var(--dark); }
    .table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

    /* ─── FAQ (accordion, schema-backed) ─── */
    .faq-section { background: var(--lighter); }
    .faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
    .faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: box-shadow 0.2s, border-color 0.2s; }
    .faq-item[open] { border-color: var(--primary); box-shadow: var(--shadow-sm); }
    .faq-item summary { cursor: pointer; list-style: none; padding: 1.15rem 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--dark); }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 0.7rem; color: var(--accent); flex-shrink: 0; transition: transform 0.25s; }
    .faq-item[open] summary::after { transform: rotate(180deg); }
    .faq-item summary:hover { color: var(--primary); }
    .faq-answer { padding: 0 1.4rem 1.35rem; font-size: 0.9rem; color: var(--text-2); line-height: 1.8; }
    .faq-answer p { margin-bottom: 0.8rem; }
    .faq-answer p:last-child { margin-bottom: 0; }
    .faq-answer a { color: var(--primary); font-weight: 600; }

    /* ─── SERVICE-AREA GRID ─── */
    .area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 0.65rem; margin: 1.5rem 0 1.75rem; }
    .area-chip { display: flex; align-items: center; gap: 0.5rem; background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 0.7rem 0.9rem; font-size: 0.84rem; font-weight: 600; color: var(--text); }
    .area-chip i { color: var(--accent); font-size: 0.72rem; }

    /* ─── RELATED SERVICE LINKS ─── */
    .related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1rem; }
    .related-card { display: block; background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 1.35rem; text-decoration: none; transition: all 0.25s; }
    .related-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
    .related-card i { color: var(--accent); font-size: 1.15rem; margin-bottom: 0.7rem; display: block; }
    .related-card h3 { font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--primary); margin-bottom: 0.3rem; }
    .related-card p { font-size: 0.82rem; color: var(--text-2); line-height: 1.6; }

    /* ─── RESPONSIVE (SEO pages) ─── */
    @media (max-width: 980px) {
      .content-layout { grid-template-columns: 1fr; gap: 2.5rem; }
      .sidebar { position: static; }
    }
    @media (max-width: 768px) {
      .page-hero { padding: 2.5rem 1.25rem 2.25rem; }
      .page-hero h1 { font-size: 1.9rem; }
      .page-hero p.lede { font-size: 0.95rem; }
      .page-hero-btns .btn-hero-primary, .page-hero-btns .btn-hero-secondary, .page-hero-btns .btn-hero-emergency { width: 100%; justify-content: center; }
      .prose h2 { font-size: 1.45rem; }
      .faq-item summary { font-size: 0.9rem; padding: 1rem 1.1rem; }
      .faq-answer { padding: 0 1.1rem 1.1rem; }
    }

    /* ─── STATIC TESTIMONIAL GRID (Spanish pages, no JS) ─── */
    .testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.1rem; max-width: 1100px; margin: 0 auto; }
    .testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 1.6rem; box-shadow: var(--shadow-sm); }
    .testimonial-card .t-stars { color: #fbbc04; font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 0.8rem; }
    .testimonial-card blockquote { font-size: 0.9rem; color: var(--text-2); line-height: 1.8; font-style: italic; margin-bottom: 1rem; }
    .testimonial-card .t-name { font-family: 'Poppins', sans-serif; font-size: 0.86rem; font-weight: 700; color: var(--dark); }
    .testimonial-card .t-meta { font-size: 0.75rem; color: var(--text-2); margin-top: 0.15rem; }

/* ─── PROSE FIGURE (in-article image) ─── */
.prose-figure { margin: 2rem 0; }
.prose-figure img { display: block; width: 100%; height: auto; max-width: 100%; border-radius: 14px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.prose-figure figcaption { font-size: 0.8rem; color: var(--text-2); margin-top: 0.6rem; text-align: center; font-style: italic; }
