    /* ════════════════════════════════════════════════
       CSS VARIABLES & RESET
    ════════════════════════════════════════════════ */
    :root {
      color-scheme: dark;
      --red:      #ffe016;
      --red-dark: #d9bd00;
      --red-glow: #ffe016;
      --charcoal: #040404;
      --dark:     #090909;
      --mid:      #121212;
      --steel:    #222222;
      --silver:   #a1a5a9;
      --light:    #E0E0E0;
      --white:    #FFFFFF;
      --yellow:   #FFD700;
      --gradient-hero: linear-gradient(135deg, #000000 0%, #080808 50%, #000000 100%);
      --gradient-red:  linear-gradient(135deg, #ffe016, #fff063);
      --shadow-lg: 0 20px 60px rgba(0,0,0,0.9);
      --shadow-red: 0 6px 18px rgba(0,0,0,0.5);
      --radius: 12px;
      --radius-sm: 8px;
    }

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

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: 'Barlow', sans-serif;
      background: var(--charcoal);
      color: var(--light);
      overflow-x: hidden;
    }

    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ════════════════════════════════════════════════
       EMERGENCY BAR
    ════════════════════════════════════════════════ */
    .emergency-bar {
      background: #000000;
      color: #fff;
      border-bottom: 2px solid #ffffff;
      text-align: center;
      padding: 10px 20px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      position: relative;
      z-index: 1000;
    }
    .emergency-bar a {
      color: #ffffff;
      text-decoration: underline;
      font-weight: 900;
      font-size: 1.1rem;
    }
    @keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.2; } }
    @keyframes pulse-bar {
      0%,100% { background: #000000; }
      50% { background: #111111; }
    }

    /* ════════════════════════════════════════════════
       NAVIGATION
    ════════════════════════════════════════════════ */
    .navbar {
      border-bottom: 1px solid rgba(255,255,255,0.08);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      position: sticky;
      top: 0;
      z-index: 999;
      background: rgba(0, 0, 0, 0.98);
      backdrop-filter: blur(12px);
      border-bottom: 2px solid #ffffff;
      padding: 0 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
      box-shadow: 0 4px 30px rgba(0,0,0,0.6);
    }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .nav-logo-icon {
      width: 48px;
      height: 48px;
      background: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      color: #000000;
      box-shadow: 0 3px 12px rgba(0,0,0,0.45);
      flex-shrink: 0;
    }

    .nav-brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .nav-brand-text .brand-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.35rem;
      font-weight: 800;
      color: #fff;
      letter-spacing: 0.03em;
      text-transform: uppercase;
    }

    .nav-brand-text .brand-sub {
      font-size: 0.7rem;
      color: var(--silver);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .nav-links a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--light);
      padding: 8px 14px;
      border-radius: var(--radius-sm);
      transition: all 0.2s ease;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 4px; left: 14px; right: 14px;
      height: 2px;
      background: var(--red);
      transform: scaleX(0);
      transition: transform 0.2s ease;
    }

    .nav-links a:hover { color: #fff; }
    .nav-links a:hover::after { transform: scaleX(1); }

    .nav-cta {
      background: var(--red) !important;
      color: #000000 !important;
      padding: 10px 20px !important;
      border-radius: var(--radius-sm) !important;
      font-weight: 800 !important;
      box-shadow: 0 4px 20px rgba(255,255,255,0.2);
      transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    }

    .nav-cta::after { display: none !important; }
    .nav-cta:hover { transform: translateY(-2px); background: #eeeeee !important; box-shadow: 0 12px 40px rgba(255,255,255,0.3) !important; }

    .hamburger {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      cursor: pointer;
      width: 44px;
      height: 44px;
      padding: 0;
      background: var(--mid);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: var(--radius-sm);
      -webkit-appearance: none;
      appearance: none;
    }
    .hamburger span {
      width: 24px; height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: all 0.3s;
    }

    /* ════════════════════════════════════════════════
       HERO
    ════════════════════════════════════════════════ */
    .hero {
      position: relative;
      min-height: 90vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--gradient-hero);
    }

    .hero-bg-pattern {
      position: absolute;
      inset: 0;
      background-image:
        repeating-linear-gradient(
          45deg,
          transparent,
          transparent 40px,
          rgba(255,255,255,0.02) 40px,
          rgba(255,255,255,0.02) 41px
        ),
        repeating-linear-gradient(
          -45deg,
          transparent,
          transparent 40px,
          rgba(255,255,255,0.02) 40px,
          rgba(255,255,255,0.02) 41px
        );
      animation: pattern-shift 20s linear infinite;
    }

    @keyframes pattern-shift {
      0% { background-position: 0 0; }
      100% { background-position: 100px 100px; }
    }

    .hero-red-accent {
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 45%;
      background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.03) 60%, rgba(255,255,255,0.07) 100%);
      clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    }

    .hero-glow {
      position: absolute;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      animation: glow-pulse 4s ease-in-out infinite;
    }

    @keyframes glow-pulse {
      0%,100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
      50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 80px 5%;
      max-width: 820px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 100px;
      padding: 6px 16px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--red-glow);
      margin-bottom: 24px;
      animation: fadeInUp 0.6s ease forwards;
    }

    .hero-badge .dot {
      width: 8px; height: 8px;
      background: var(--red-glow);
      border-radius: 50%;
    }

    .hero h1 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(3rem, 7vw, 6rem);
      font-weight: 900;
      line-height: 0.95;
      text-transform: uppercase;
      letter-spacing: -0.01em;
      color: #fff;
      margin-bottom: 12px;
      animation: fadeInUp 0.7s ease 0.1s both;
    }

    .hero h1 span {
      color: var(--red);
      display: block;
    }

    .hero-subtitle {
      font-size: clamp(1rem, 2.5vw, 1.25rem);
      color: var(--silver);
      margin-bottom: 36px;
      max-width: 560px;
      line-height: 1.6;
      animation: fadeInUp 0.7s ease 0.2s both;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 48px;
      animation: fadeInUp 0.7s ease 0.3s both;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 32px;
      border-radius: var(--radius);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.1rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.25s ease;
      border: none;
      outline: none;
    }

    .btn-primary {
      background: var(--red);
      color: #000000;
      box-shadow: 0 3px 12px rgba(0,0,0,0.45);
    }
    .btn-primary:hover {
      transform: translateY(-3px);
      background: #fff04d;
      box-shadow: 0 16px 50px rgba(255,255,255,0.35);
    }

    .btn-outline {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255,255,255,0.3);
    }
    .btn-outline:hover {
      background: rgba(255,255,255,0.08);
      border-color: #fff;
      transform: translateY(-2px);
    }

    .btn-white {
      background: #fff;
      color: var(--charcoal);
    }
    .btn-white:hover {
      background: var(--light);
      transform: translateY(-2px);
    }

    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 32px;
      animation: fadeInUp 0.7s ease 0.4s both;
    }

    .hero-stat {
      display: flex;
      flex-direction: column;
    }

    .hero-stat .stat-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2.4rem;
      font-weight: 900;
      color: #fff;
      line-height: 1;
    }

    .hero-stat .stat-num span { color: var(--red); }

    .hero-stat .stat-label {
      font-size: 0.78rem;
      color: var(--silver);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-top: 2px;
    }

    /* ════════════════════════════════════════════════
       TRUST BAR
    ════════════════════════════════════════════════ */
    .trust-bar {
      background: var(--dark);
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      padding: 20px 5%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 32px;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--silver);
      white-space: nowrap;
    }

    .trust-item i { color: var(--red); font-size: 1.1rem; }

    .trust-divider {
      width: 1px; height: 24px;
      background: rgba(255,255,255,0.1);
    }

    /* ════════════════════════════════════════════════
       SECTIONS COMMON
    ════════════════════════════════════════════════ */
    section { padding: 90px 5%; }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 14px;
    }

    .section-label::before {
      content: '';
      width: 24px; height: 2px;
      background: var(--red);
      border-radius: 2px;
    }

    .section-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(2rem, 5vw, 3.6rem);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: -0.01em;
      line-height: 1;
      color: #fff;
      margin-bottom: 20px;
    }

    .section-title span { color: var(--red); }

    .section-desc {
      font-size: 1.05rem;
      color: var(--silver);
      line-height: 1.7;
      max-width: 600px;
    }

    /* ════════════════════════════════════════════════
       SERVICES
    ════════════════════════════════════════════════ */
    #services {
      background: var(--dark);
    }

    .services-header {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 60px;
    }

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

    .service-card {
      background: var(--mid);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: var(--radius);
      padding: 32px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      cursor: default;
    }

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

    .service-card:hover {
      transform: translateY(-6px);
      border-color: rgba(255,255,255,0.25);
      box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 40px rgba(255,255,255,0.04);
    }

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

    .service-card.featured {
      background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(168,27,27,0.08));
      border-color: rgba(255,255,255,0.25);
    }

    .service-card.featured::before { transform: scaleX(1); }

    .service-icon {
      width: 60px; height: 60px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      color: var(--red);
      margin-bottom: 20px;
      transition: all 0.3s ease;
    }

    .service-card:hover .service-icon {
      background: rgba(255,255,255,0.18);
      transform: scale(1.1);
    }

    .service-card h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.4rem;
      font-weight: 800;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 10px;
    }

    .service-card p {
      color: var(--silver);
      font-size: 0.92rem;
      line-height: 1.6;
      margin-bottom: 18px;
    }

    .service-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .service-tag {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 100px;
      padding: 3px 10px;
      font-size: 0.75rem;
      color: var(--silver);
      font-weight: 500;
    }

    .service-more {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 16px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #fff;
      text-decoration: none;
      border-bottom: 1px solid rgba(255,255,255,0.3);
      padding-bottom: 2px;
      transition: gap 0.2s ease, border-color 0.2s ease;
    }
    .service-more:hover { gap: 10px; border-color: #fff; }

    /* ════════════════════════════════════════════════
       HEAVY TOWING SECTION (HERO STYLE)
    ════════════════════════════════════════════════ */
    #heavy-towing {
      background: var(--charcoal);
      padding: 0;
      overflow: hidden;
    }

    .heavy-towing-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 600px;
    }

    .heavy-towing-visual {
      background: linear-gradient(135deg, #0d1117 0%, #1a0a0a 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      padding: 60px 40px;
    }

    .heavy-towing-visual::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.18) 0%, transparent 60%);
    }

    .heavy-truck-icon {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .heavy-truck-icon i {
      font-size: 10rem;
      color: var(--red);
      filter: drop-shadow(0 0 40px rgba(255,255,255,0.2));
      display: block;
      animation: truck-float 3s ease-in-out infinite;
    }

    @keyframes truck-float {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    .heavy-truck-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.2rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: rgba(255,255,255,0.4);
      margin-top: 20px;
    }

    .heavy-towing-content {
      background: linear-gradient(135deg, var(--dark), var(--mid));
      padding: 80px 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      border-left: 1px solid rgba(255,255,255,0.18);
    }

    .heavy-towing-content .section-title { font-size: clamp(2rem, 4vw, 3rem); }

    .heavy-spec-list {
      margin: 32px 0;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .heavy-spec-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 16px 20px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: var(--radius-sm);
      transition: all 0.2s ease;
    }

    .heavy-spec-item:hover {
      background: rgba(255,255,255,0.06);
      border-color: rgba(255,255,255,0.25);
    }

    .heavy-spec-item .spec-icon {
      color: var(--red);
      font-size: 1.2rem;
      margin-top: 2px;
      flex-shrink: 0;
    }

    .heavy-spec-item .spec-text h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .heavy-spec-item .spec-text p {
      font-size: 0.85rem;
      color: var(--silver);
      margin-top: 2px;
      line-height: 1.5;
    }

    /* ════════════════════════════════════════════════
       ABOUT
    ════════════════════════════════════════════════ */
    #about {
      background: var(--dark);
    }

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

    .about-visual {
      position: relative;
    }

    .about-card-main {
      background: var(--mid);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius);
      padding: 40px;
      position: relative;
      overflow: hidden;
    }

    .about-card-main::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 4px;
      background: var(--gradient-red);
    }

    .about-owner-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      color: #fff;
      margin-top: 12px;
    }

    .about-owner-title {
      color: var(--red);
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .about-quote {
      font-style: italic;
      color: var(--silver);
      line-height: 1.7;
      font-size: 1rem;
      border-left: 3px solid var(--red);
      padding-left: 20px;
      margin: 24px 0;
    }

    .about-bio {
      color: var(--silver);
      line-height: 1.7;
      font-size: 1rem;
      border-left: 3px solid var(--red);
      padding-left: 20px;
      margin: 24px 0;
    }

    .about-stars {
      display: flex;
      gap: 4px;
      margin-bottom: 6px;
    }

    .about-stars i { color: var(--yellow); font-size: 1.1rem; }

    .about-rating-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--silver);
    }

    .about-badges {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 24px;
    }

    .about-badge-item {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-sm);
      padding: 16px;
      text-align: center;
    }

    .about-badge-item i {
      color: var(--red);
      font-size: 1.4rem;
      margin-bottom: 6px;
    }

    .about-badge-item span {
      display: block;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--silver);
    }

    .about-content .section-desc { margin-bottom: 32px; }

    .about-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 36px;
    }

    .about-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.98rem;
      color: var(--light);
    }

    .about-list li i {
      color: var(--red);
      font-size: 0.9rem;
      flex-shrink: 0;
    }

    /* ════════════════════════════════════════════════
       TESTIMONIALS
    ════════════════════════════════════════════════ */
    #testimonials {
      background: var(--charcoal);
    }

    .testimonials-header { margin-bottom: 48px; }

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

    .testimonial-card {
      background: var(--dark);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: var(--radius);
      padding: 28px;
      transition: all 0.3s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-4px);
      border-color: rgba(255,255,255,0.18);
      box-shadow: 0 16px 40px rgba(0,0,0,0.3);
    }

    .testimonial-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 14px;
    }

    .testimonial-stars i { color: var(--yellow); }

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

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testimonial-avatar {
      width: 42px; height: 42px;
      background: var(--gradient-red);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.1rem;
      font-weight: 800;
      color: #fff;
      flex-shrink: 0;
    }

    .testimonial-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      text-transform: uppercase;
    }

    .testimonial-source {
      font-size: 0.78rem;
      color: var(--silver);
    }

    /* ════════════════════════════════════════════════
       FACEBOOK FEED
    ════════════════════════════════════════════════ */
    #facebook-feed {
      background: var(--dark);
    }

    .facebook-feed-header {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 48px;
    }

    .facebook-feed-header .fb-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #1877F2;
      color: #fff;
      padding: 12px 22px;
      border-radius: var(--radius-sm);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      transition: all 0.2s ease;
    }

    .facebook-feed-header .fb-link:hover {
      background: #166fe5;
      transform: translateY(-2px);
    }

    .fb-embed-container {
      display: flex;
      justify-content: center;
      background: var(--mid);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: var(--radius);
      padding: 32px;
      overflow: hidden;
    }

    /* ════════════════════════════════════════════════
       APPOINTMENT BOOKING
    ════════════════════════════════════════════════ */
    #book {
      background: var(--charcoal);
    }

    .booking-wrapper {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 64px;
      align-items: start;
    }

    .booking-info .section-desc { margin-bottom: 36px; }

    .booking-features {
      display: flex;
      flex-direction: column;
      gap: 18px;
      margin-bottom: 36px;
    }

    .booking-feature {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .booking-feature .feat-icon {
      width: 44px; height: 44px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--red);
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .booking-feature h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .booking-feature p {
      font-size: 0.85rem;
      color: var(--silver);
      margin-top: 2px;
      line-height: 1.5;
    }

    .booking-form-card {
      background: var(--dark);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .booking-form-header {
      background: #ffffff;
      padding: 24px 32px;
      border-bottom: 1px solid rgba(0,0,0,0.08);
    }

    .booking-form-header h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.4rem;
      font-weight: 800;
      text-transform: uppercase;
      color: #000000;
    }

    .booking-form-header p {
      font-size: 0.88rem;
      color: rgba(0,0,0,0.55);
      margin-top: 4px;
    }

    .booking-form-body {
      padding: 32px;
    }

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

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

    .form-group label {
      display: block;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--silver);
      margin-bottom: 8px;
    }

    .form-group label span { color: var(--red); }

    .form-control {
      width: 100%;
      background: var(--mid);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-sm);
      padding: 12px 16px;
      font-family: 'Barlow', sans-serif;
      font-size: 0.95rem;
      color: #fff;
      outline: none;
      transition: all 0.2s ease;
      -webkit-appearance: none;
    }

    .form-control:focus {
      border-color: var(--red);
      box-shadow: 0 0 0 3px rgba(255,255,255,0.07);
      background-color: var(--steel);
    }

    .form-control::placeholder { color: var(--steel); }

    select.form-control {
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%23cccccc' stroke-width='2'/></svg>");
      background-repeat: no-repeat;
      background-position: right 16px center;
      padding-right: 42px;
      cursor: pointer;
    }

    select.form-control option, select.form-control optgroup { background: var(--dark); color: #fff; }

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

    .form-submit {
      width: 100%;
      padding: 16px;
      background: #ffffff;
      border: none;
      border-radius: var(--radius-sm);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.15rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: #000000;
      cursor: pointer;
      transition: all 0.25s ease;
      box-shadow: 0 6px 24px rgba(255,255,255,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .form-submit:hover {
      transform: translateY(-2px);
      background: #f0f0f0;
      box-shadow: 0 16px 50px rgba(255,255,255,0.3);
    }

    #form-success {
      display: none;
      text-align: center;
      padding: 32px;
    }

    #form-success i {
      font-size: 3rem;
      color: var(--red);
      margin-bottom: 12px;
    }

    #form-success h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.6rem;
      font-weight: 800;
      color: #fff;
      text-transform: uppercase;
    }

    #form-success p {
      color: var(--silver);
      margin-top: 8px;
    }

    /* ════════════════════════════════════════════════
       CONTACT
    ════════════════════════════════════════════════ */
    #contact {
      background: var(--dark);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 64px;
      align-items: start;
    }

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

    .contact-card {
      background: var(--mid);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: var(--radius);
      padding: 24px 28px;
      display: flex;
      align-items: flex-start;
      gap: 18px;
      transition: all 0.2s ease;
    }

    .contact-card:hover {
      border-color: rgba(255,255,255,0.25);
      transform: translateX(4px);
    }

    .contact-card-icon {
      width: 50px; height: 50px;
      background: var(--gradient-red);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      color: #fff;
      flex-shrink: 0;
      box-shadow: var(--shadow-red);
    }

    .contact-card h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--silver);
      margin-bottom: 4px;
    }

    .contact-card a,
    .contact-card p {
      font-size: 1.05rem;
      color: #fff;
      font-weight: 500;
    }

    .contact-card a:hover { color: var(--red); }

    .contact-card .sub-text {
      font-size: 0.82rem;
      color: var(--silver);
      margin-top: 2px;
    }

    .map-container {
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.08);
      height: 400px;
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
      filter: grayscale(20%) contrast(1.1);
    }

    /* ════════════════════════════════════════════════
       EMERGENCY CTA BANNER
    ════════════════════════════════════════════════ */
    .emergency-cta-section {
      background: #ffffff;
      padding: 70px 5%;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .emergency-cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(
        -45deg, transparent, transparent 20px,
        rgba(0,0,0,0.04) 20px, rgba(0,0,0,0.04) 21px
      );
    }

    .emergency-cta-section > * { position: relative; z-index: 1; }

    .emergency-cta-section h2 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(2.2rem, 5vw, 4rem);
      font-weight: 900;
      text-transform: uppercase;
      color: #000000;
      margin-bottom: 12px;
    }

    .emergency-cta-section p {
      font-size: 1.1rem;
      color: rgba(0,0,0,0.6);
      margin-bottom: 32px;
    }

    .emergency-phone-big {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      font-weight: 900;
      color: #000000;
      text-decoration: none;
      display: block;
      margin-bottom: 8px;
      letter-spacing: -0.02em;
    }

    .emergency-phone-big:hover { color: #333333; }

    /* ════════════════════════════════════════════════
       FOOTER
    ════════════════════════════════════════════════ */
    footer {
      background: #0a0c0f;
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 64px 5% 28px;
    }

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

    .footer-brand .brand-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.6rem;
      font-weight: 900;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 4px;
    }

    .footer-brand .brand-tagline {
      font-size: 0.8rem;
      color: var(--silver);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .footer-brand p {
      color: var(--silver);
      font-size: 0.9rem;
      line-height: 1.7;
      max-width: 300px;
    }

    .footer-col h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.95rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--red);
      margin-bottom: 18px;
    }

    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }

    .footer-col ul li a,
    .footer-col ul li {
      font-size: 0.9rem;
      color: var(--silver);
      transition: color 0.2s ease;
    }

    .footer-col ul li a:hover { color: #fff; }

    .footer-social {
      display: flex;
      gap: 12px;
      margin-top: 24px;
    }

    .social-btn {
      width: 40px; height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      transition: all 0.2s ease;
      text-decoration: none;
    }

    .social-btn.fb {
      background: #1877F2;
      color: #fff;
    }

    .social-btn.fb:hover {
      background: #166fe5;
      transform: translateY(-2px);
    }

    .footer-hours-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .footer-hour-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.88rem;
      color: var(--silver);
    }

    .footer-hour-row .day { color: var(--light); font-weight: 500; }

    .footer-hour-row .open-badge {
      color: #22c55e;
      font-weight: 700;
      font-size: 0.82rem;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: 24px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .footer-bottom p {
      font-size: 0.82rem;
      color: var(--silver);
    }

    .footer-bottom a { color: var(--red); }

    /* ════════════════════════════════════════════════
       FLOATING CALL BUTTON
    ════════════════════════════════════════════════ */
    .float-call {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 12px;
    }

    .float-call-btn {
      width: 64px; height: 64px;
      background: var(--red);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      color: #000000;
      box-shadow: 0 8px 30px rgba(255,255,255,0.25), 0 0 0 3px rgba(255,255,255,0.15);
      text-decoration: none;
      animation: float-pulse 2.5s ease-in-out infinite;
      transition: transform 0.2s ease;
    }

    .float-call-btn:hover { transform: scale(1.1); }

    @keyframes float-pulse {
      0%,100% { box-shadow: 0 8px 30px rgba(255,255,255,0.2), 0 0 0 3px rgba(255,255,255,0.1); }
      50% { box-shadow: 0 8px 50px rgba(255,255,255,0.4), 0 0 0 6px rgba(255,255,255,0.15); }
    }

    .float-call-label {
      background: var(--charcoal);
      color: #fff;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      padding: 8px 14px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,0.1);
      white-space: nowrap;
    }

    /* ════════════════════════════════════════════════
       SCROLL ANIMATIONS
    ════════════════════════════════════════════════ */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

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

    /* ════════════════════════════════════════════════
       MOBILE MENU
    ════════════════════════════════════════════════ */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(17,20,24,0.98);
      z-index: 9998;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 24px;
    }

    .mobile-menu.open { display: flex; }

    .mobile-menu a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      text-transform: uppercase;
      color: #fff;
      letter-spacing: 0.05em;
    }

    .mobile-menu a:hover { color: var(--red); }

    .mobile-menu-close {
      position: absolute;
      top: 24px; right: 24px;
      font-size: 2rem;
      color: #fff;
      cursor: pointer;
      background: none;
      border: none;
    }

    /* ════════════════════════════════════════════════
       RESPONSIVE
    ════════════════════════════════════════════════ */
    @media (max-width: 1024px) {
      .heavy-towing-inner { grid-template-columns: 1fr; }
      .heavy-towing-visual { min-height: 300px; }
      .about-grid { grid-template-columns: 1fr; }
      .booking-wrapper { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
      .junk-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      section { padding: 64px 5%; }
      .services-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .trust-divider { display: none; }
      .heavy-towing-content { padding: 48px 32px; }
      .hero-stats { gap: 20px; }
    }

    @media (max-width: 480px) {
      .hero-actions { flex-direction: column; }
      .hero-actions .btn { justify-content: center; }
      .float-call-label { display: none; }
    }

    /* ════════════════════════════════════════════════
       HERO PHOTO BACKGROUND
    ════════════════════════════════════════════════ */
    .hero-photo-bg {
      position: absolute;
      inset: 0;
      background-image: url('img/hero-bg.jpg');
      /* 📸 DROP: img/hero-bg.jpg = shop exterior or fleet lineup photo */
      background-size: cover;
      background-position: center 40%;
      opacity: 0.22;
      z-index: 0;
    }

    /* ════════════════════════════════════════════════
       HEAVY TOWING PHOTO
    ════════════════════════════════════════════════ */
    .heavy-towing-visual {
      position: relative;
      min-height: 400px;
      background: var(--mid);
      border-radius: var(--radius);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .heavy-tow-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      inset: 0;
    }
    .heavy-truck-icon {
      position: relative;
      z-index: 2;
      text-align: center;
      color: #fff;
    }
    .heavy-truck-icon i { font-size: 5rem; margin-bottom: 16px; display: block; opacity: 0.9; }
    .heavy-truck-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.2rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }
    .heavy-tow-photo-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
      z-index: 1;
    }
    .heavy-tow-caption {
      position: absolute;
      bottom: 24px;
      left: 24px;
      z-index: 2;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: #fff;
    }

    /* ════════════════════════════════════════════════
       ABOUT PHOTO
    ════════════════════════════════════════════════ */
    .about-photo-wrap {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      margin-bottom: 20px;
      aspect-ratio: 4/3;
      background: var(--mid);
    }
    .about-photo-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .about-photo-badge {
      position: absolute;
      bottom: 16px;
      left: 16px;
      background: rgba(0,0,0,0.85);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 8px;
      padding: 8px 14px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: #fff;
    }

    /* ════════════════════════════════════════════════
       PHOTO GALLERY
    ════════════════════════════════════════════════ */
    #gallery {
      background: var(--charcoal);
      padding: 90px 5%;
    }
    .gallery-header {
      text-align: center;
      margin-bottom: 48px;
    }
    .gallery-grid {
      columns: 4;
      column-gap: 12px;
    }
    .gallery-item {
      break-inside: avoid;
      margin-bottom: 12px;
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-sm);
      background: var(--steel);
      cursor: pointer;
    }
    .gallery-item img {
      width: 100%;
      display: block;
      transition: transform 0.4s ease;
      object-fit: cover;
    }
    .gallery-item:hover img { transform: scale(1.05); }
    .gallery-item-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0);
      transition: background 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.3); }
    .gallery-item-overlay i {
      color: #fff;
      font-size: 1.6rem;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .gallery-item:hover .gallery-item-overlay i { opacity: 1; }
    /* Lightbox */
    .gallery-lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.95);
      z-index: 99999;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    .gallery-lightbox.open { display: flex; }
    .gallery-lightbox img {
      max-width: 90vw;
      max-height: 90vh;
      object-fit: contain;
      border-radius: var(--radius);
    }
    .gallery-lightbox-close {
      position: absolute;
      top: 20px; right: 24px;
      font-size: 2.2rem;
      color: #fff;
      cursor: pointer;
      background: none;
      border: none;
      line-height: 1;
    }
    @media (max-width: 900px) { .gallery-grid { columns: 3; } }
    @media (max-width: 600px) { .gallery-grid { columns: 2; } }
    @media (max-width: 380px) { .gallery-grid { columns: 1; } }

    /* ════════════════════════════════════════════════
       MOBILE OPTIMIZATIONS (ENHANCED)
    ════════════════════════════════════════════════ */
    @media (max-width: 768px) {
      /* Hero */
      .hero { min-height: 85vh; }
      .hero-content { padding: 60px 5% 40px; }
      .hero-stats { gap: 16px; }
      .hero-stat .stat-num { font-size: 1.8rem; }

      /* Trust bar - scrollable on mobile */
      .trust-bar {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 16px 20px;
        gap: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }
      .trust-bar::-webkit-scrollbar { display: none; }
      .trust-item { white-space: nowrap; font-size: 0.82rem; }

      /* Buttons touch targets */
      .btn { padding: 14px 24px; min-height: 48px; font-size: 1rem; }
      .nav-cta { padding: 10px 16px !important; font-size: 0.85rem !important; }

      /* Sections */
      section { padding: 60px 5%; }

      /* Services */
      .services-grid { grid-template-columns: 1fr; gap: 16px; }
      .service-card { padding: 24px; }

      /* Heavy towing */
      .heavy-towing-visual { min-height: 260px; }
      .heavy-spec-list { gap: 20px; }

      /* About */
      .about-photo-wrap { aspect-ratio: 16/9; }
      .about-card-main { padding: 24px; }

      /* Testimonials */
      .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }

      /* Booking */
      .booking-wrapper { grid-template-columns: 1fr; gap: 32px; }
      .booking-card { padding: 28px 20px; }

      /* Footer */
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      footer { padding: 50px 5% 28px; }

      /* Floating buttons */
      .float-call { bottom: 20px; right: 16px; }
      .float-call-btn { width: 56px; height: 56px; font-size: 1.3rem; }

      /* Contact */
      .contact-grid { grid-template-columns: 1fr; gap: 40px; }
      .map-container { min-height: 260px; }

      /* Junk cars */
      .junk-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
    }

    @media (max-width: 480px) {
      .hero h1 { font-size: clamp(2.4rem, 10vw, 3.5rem); }
      .hero-badge { font-size: 0.75rem; padding: 5px 12px; }
      .section-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
      .hero-actions { flex-direction: column; gap: 10px; }
      .hero-actions .btn { justify-content: center; width: 100%; }
      .float-call-label { display: none; }
      .navbar { padding: 0 4%; height: 64px; }
      .nav-brand-text .brand-name { font-size: 1.1rem; }
      .nav-brand-text .brand-sub { display: none; }
      .nav-logo-icon { width: 40px; height: 40px; font-size: 1.1rem; }
      section { padding: 50px 4%; }
      .heavy-towing-content { padding: 36px 20px; }
      .emergency-bar { font-size: 0.82rem; gap: 6px; padding: 8px 12px; }
    }

    /* ════════════════════════════════════════════════
       AI CHAT ASSISTANT
    ════════════════════════════════════════════════ */
    .ai-chat-toggle {
      position: fixed;
      bottom: 28px;
      left: 28px;
      z-index: 9998;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
    .ai-chat-btn {
      width: 64px;
      height: 64px;
      background: #111;
      border: 2px solid #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: #fff;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 0 8px 30px rgba(0,0,0,0.5);
      position: relative;
    }
    .ai-chat-btn:hover { transform: scale(1.08); }
    .ai-chat-btn .chat-notif {
      position: absolute;
      top: -4px; right: -4px;
      width: 18px; height: 18px;
      background: #fff;
      color: #000;
      border-radius: 50%;
      font-size: 0.65rem;
      font-weight: 900;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Barlow Condensed', sans-serif;
    }
    .ai-chat-label {
      background: #111;
      color: #fff;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.82rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      padding: 7px 12px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,0.15);
      white-space: nowrap;
    }
    .ai-chat-panel {
      display: none;
      position: fixed;
      bottom: 110px;
      left: 20px;
      width: 340px;
      max-width: calc(100vw - 40px);
      height: 480px;
      max-height: calc(100vh - 140px);
      background: #0d0d0d;
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 16px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.8);
      z-index: 9997;
      flex-direction: column;
      overflow: hidden;
    }
    .ai-chat-panel.open { display: flex; }
    .ai-chat-header {
      background: #000;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      padding: 16px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }
    .ai-chat-avatar {
      width: 36px; height: 36px;
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      color: #000;
      flex-shrink: 0;
    }
    .ai-chat-header-info { flex: 1; }
    .ai-chat-header-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.95rem;
      font-weight: 800;
      text-transform: uppercase;
      color: #fff;
    }
    .ai-chat-header-status {
      font-size: 0.72rem;
      color: #888;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .ai-chat-header-status::before {
      content: '';
      width: 7px; height: 7px;
      background: #4ade80;
      border-radius: 50%;
      display: inline-block;
    }
    .ai-chat-close {
      background: none;
      border: none;
      color: #888;
      font-size: 1.2rem;
      cursor: pointer;
      padding: 4px;
    }
    .ai-chat-close:hover { color: #fff; }
    .ai-chat-messages {
      flex: 1;
      overflow-y: auto;
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      scrollbar-width: thin;
      scrollbar-color: #333 transparent;
    }
    .ai-chat-messages::-webkit-scrollbar { width: 4px; }
    .ai-chat-messages::-webkit-scrollbar-track { background: transparent; }
    .ai-chat-messages::-webkit-scrollbar-thumb { background: #333; border-radius: 2px; }
    .chat-msg {
      max-width: 85%;
      padding: 10px 14px;
      border-radius: 12px;
      font-size: 0.88rem;
      line-height: 1.55;
    }
    .chat-msg.bot {
      background: #1a1a1a;
      border: 1px solid rgba(255,255,255,0.08);
      color: #e0e0e0;
      align-self: flex-start;
      border-radius: 4px 12px 12px 12px;
    }
    .chat-msg.user {
      background: #fff;
      color: #000;
      align-self: flex-end;
      border-radius: 12px 4px 12px 12px;
      font-weight: 500;
    }
    .chat-msg a { color: #fff; text-decoration: underline; font-weight: 700; }
    .chat-msg.bot a { color: #ddd; }
    .chat-quick-replies {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      padding: 0 16px 8px;
    }
    .chat-quick-btn {
      background: transparent;
      border: 1px solid rgba(255,255,255,0.2);
      color: #ccc;
      border-radius: 100px;
      padding: 5px 12px;
      font-size: 0.78rem;
      font-family: 'Barlow', sans-serif;
      cursor: pointer;
      transition: all 0.15s ease;
      white-space: nowrap;
    }
    .chat-quick-btn:hover { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.4); }
    .ai-chat-input-area {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 12px 14px;
      display: flex;
      gap: 8px;
      align-items: center;
      flex-shrink: 0;
      background: #0d0d0d;
    }
    .ai-chat-input {
      flex: 1;
      background: #1a1a1a;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 8px;
      padding: 9px 12px;
      color: #fff;
      font-family: 'Barlow', sans-serif;
      font-size: 0.88rem;
      outline: none;
      transition: border-color 0.2s;
    }
    .ai-chat-input:focus { border-color: rgba(255,255,255,0.35); }
    .ai-chat-input::placeholder { color: #555; }
    .ai-chat-send {
      width: 36px; height: 36px;
      background: #fff;
      color: #000;
      border: none;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 0.9rem;
      transition: background 0.2s;
      flex-shrink: 0;
    }
    .ai-chat-send:hover { background: #e0e0e0; }
    @media (max-width: 480px) {
      .ai-chat-toggle { bottom: 20px; left: 16px; }
      .ai-chat-btn { width: 54px; height: 54px; font-size: 1.3rem; }
      .ai-chat-panel { bottom: 90px; left: 12px; width: calc(100vw - 24px); height: calc(100vh - 120px); }
    }

/* ===== FAQ accordion ===== */
#faq .faq-item { background:var(--mid); border:1px solid rgba(255,255,255,0.08); border-radius:var(--radius-sm); margin-bottom:14px; }
    #faq summary { list-style:none; cursor:pointer; padding:22px 24px; font-family:'Barlow Condensed',sans-serif; font-size:1.18rem; font-weight:700; letter-spacing:.3px; color:#fff; display:flex; justify-content:space-between; align-items:center; gap:16px; }
    #faq summary::-webkit-details-marker { display:none; }
    #faq summary::after { content:'+'; font-size:1.7rem; font-weight:300; color:var(--red); line-height:1; }
    #faq details[open] summary::after { content:'\2013'; }
    #faq summary:hover { color:var(--light); }
    #faq .faq-a { padding:0 24px 24px; color:var(--silver); line-height:1.7; font-size:1rem; }
    #faq .faq-a a { color:var(--light); font-weight:600; }


/* ===== design pass: crisp type & geometry ===== */
h1, h2, h3 { text-wrap: balance; }
.section-title { letter-spacing: 0.01em; }
.hero-subtitle, .section-desc { color: #c9ccce; }
img { border-radius: 2px; }
