/* Header Container */
.site-header {
  background-color: #0d1321; /* Matches your current dark blue header */
  padding: 2.5rem 1rem 1.5rem 1rem;
  text-align: center; /* Centering business name and tagline */
  border-bottom: 3px solid #ff9900; /* Yellow accent line */
}

/* Centered Title & Tagline */
.brand-title {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}

.brand-tagline {
  color: #cccccc;
  font-size: 1.1rem;
  margin: 0 0 1.5rem 0;
}

/* Styled Navigation Bar */
.main-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding-top: 1rem;
}

/* Fixing blue unstyled links */
.main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s ease-in-out;
}

.main-nav a:hover,
.main-nav a:focus {
  color: #ff9900; /* Vibrant hover highlight */
  text-decoration: underline;
}

/*----------------------------------------------------------------*/

    .container { 
      max-width: 1200px;
      margin: auto; 
      padding: 2rem; 
      box-sizing: border-box; 
    }
    body { 
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; 
      line-height: 1.6; 
      color: #1a1a1a;
      background: #fff;
    }
    /* VTEC COMPLIANCE BANNER */
    .compliance-banner { 
      background: #fef3c7; 
      color: #92400e; 
      padding: 0.75rem 5%; 
      text-align: center; 
      font-size: 0.9rem; 
      border-bottom: 2px solid #f59e0b;
      font-weight: 600;
    }
    .compliance-banner strong { color: #78350f; }
    
    header { 
      background: #111827; 
      color: white; 
      padding: 1rem 5%; 
      position: sticky; 
      top: 0; 
      z-index: 100;
      border-bottom: 3px solid #f59e0b;
    }
    nav { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
    .logo { font-size: 1.8rem; font-weight: 800; }
    .logo span { color: #f59e0b; }
    .nav-links a { color: white; text-decoration: none; margin-left: 2rem; font-weight: 600; }
    .nav-links a:hover { color: #f59e0b; }
    
    .hero { 
      background: linear-gradient(135deg, rgba(17,24,39,0.9) 0%, rgba(17,24,39,0.7) 100%), url('images/hero-trailer.jpg') center/cover; 
      color: white; 
      padding: 8rem 5%; 
      text-align: center; 
    }
    .hero h1 { font-size: 3.5rem; margin-bottom: 1rem; max-width: 900px; margin-left: auto; margin-right: auto; line-height: 1.1; }
    .hero h1 span { color: #f59e0b; }
    .hero p { font-size: 1.3rem; margin-bottom: 2.5rem; color: #e5e7eb; max-width: 700px; margin-left: auto; margin-right: auto; }
    .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
    .btn { 
      display: inline-block; 
      padding: 1rem 2.5rem; 
      border-radius: 8px; 
      text-decoration: none; 
      font-weight: 700; 
      transition: all 0.3s;
      font-size: 1.1rem;
    }
    .btn-primary { background: #f59e0b; color: #111827; }
    .btn-primary:hover { background: #d97706; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(245,158,11,0.3); }
    .btn-secondary { background: #25D366; color: white; }
    .btn-secondary:hover { background: #1da851; transform: translateY(-3px); }
    .trust-bar { background: #f59e0b; color: #111827; padding: 0.75rem; text-align: center; font-weight: 600; }
    
    .section { padding: 5rem 5%; max-width: 1200px; margin: 0 auto; }
    .section h2 { font-size: 2.8rem; text-align: center; margin-bottom: 1rem; color: #111827; }
    .section-subtitle { text-align: center; color: #6b7280; margin-bottom: 3rem; font-size: 1.2rem; }
    
    .cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
    .card { 
      background: #e0f2ff; 
      padding: 2.5rem 2rem; 
      border-radius: 16px; 
      border: 2px solid #f3f4f6; 
      transition: all 0.3s; 
      position: relative;
      overflow: hidden;
    }
    .card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: #f59e0b; }
    .card-badge { 
      position: absolute; 
      top: 1rem; 
      right: -2rem; 
      background: #dc2626; 
      color: white; 
      padding: 0.25rem 3rem; 
      transform: rotate(45deg); 
      font-size: 0.75rem; 
      font-weight: 700;
    }
    .card h3 { font-size: 1.6rem; margin-bottom: 1rem; color: #111827; }
    .card-price { font-size: 2rem; font-weight: 800; color: #f59e0b; margin: 1rem 0; }
    .card-price span { font-size: 1rem; font-weight: 500; color: #6b7280; }
    .card ul { list-style: none; margin-top: 1.5rem; }
    .card li { padding: 0.5rem 0; color: #4b5563; }
    .card li:before { content: "✓"; color: #10b981; font-weight: bold; margin-right: 0.5rem; }
    
    .features { background: #111827; color: white; }
    .features h2 { color: white; }
    .feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-top: 3rem; }
    .feature { text-align: center; }
    .feature-icon { font-size: 3rem; margin-bottom: 1rem; }
    .feature h3 { color: #f59e0b; margin-bottom: 0.5rem; font-size: 1.4rem; }
    .feature p { color: #d1d5db; }
    
    .gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; }
    .gallery img { width: 100%; height: 250px; object-fit: cover; border-radius: 12px; transition: all 0.3s; }
    .gallery img:hover { transform: scale(1.03); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
    
    .steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; counter-reset: step; }
    .step { background: #fffaab; padding: 2rem; border-radius: 12px; position: relative; border-left: 4px solid #f59e0b; }
    .step:before { 
      counter-increment: step; 
      content: counter(step); 
      position: absolute; 
      top: -15px; 
      left: -15px; 
      background: #f59e0b; 
      color: #111827; 
      width: 40px; 
      height: 40px; 
      border-radius: 50%; 
      display: flex; 
      align-items: center; 
      justify-content: center; 
      font-weight: 800; 
      font-size: 1.2rem;
    }
    .step h3 { margin-bottom: 0.5rem; color: #111827; }
    
    .requirements { background: #fef3c7; border: 2px solid #f59e0b; border-radius: 12px; padding: 2rem; margin-top: 3rem; }
    .requirements h3 { color: #92400e; margin-bottom: 1rem; }
    .requirements ul { list-style: none; }
    .requirements li { padding: 0.5rem 0; color: #78350f; }
    .requirements li:before { content: "•"; color: #f59e0b; font-weight: bold; margin-right: 0.5rem; }
    
    footer { background: #111827; color: #9ca3af; padding: 3rem 5%; text-align: center; border-top: 3px solid #f59e0b; }
    footer a { color: #f59e0b; text-decoration: none; }
    
    @media (max-width: 768px) {
      .hero h1 { font-size: 2.2rem; }
      .nav-links { display: none; }
      .btn-group { flex-direction: column; }
      .compliance-banner { font-size: 0.8rem; padding: 0.5rem 3%; }
    }
  
