* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    background: #0b0b0b;
    color: white;
    line-height: 1.6;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  /* NAVBAR */
  nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #000;
    min-height: 80px;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  
  .nav-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
  }
  
  .logo {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    white-space: nowrap;
    justify-self: center;
  }
  
  .social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
  }
  
  .social-icons a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
  }
  
  .social-icons a:hover {
    color: #ff2a2a;
  }
  
  nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    min-width: 0;
  }
  
  nav a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  nav a:hover {
    color: #ff2a2a;
  }
  
  .menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: white;
    line-height: 1;
  }
  
  /* HERO */
  .hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 1.25rem;
    background: url("images/car-hero.jpg") center/cover no-repeat;
    position: relative;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    width: min(90%, 700px);
  }
  
  .hero h1 {
    font-size: clamp(2.3rem, 5vw, 3.5rem);
    margin-bottom: 15px;
  }
  
  .hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 25px;
  }
  
  .btn {
    display: inline-block;
    background: #ff1a1a;
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background: #cc0000;
  }
  
  /* SECTIONS */
  section {
    padding: 5rem 1.25rem;
  }
  
  section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.2rem);
    margin-bottom: 35px;
  }
  
  /* SERVICES */
  .service-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
  }
  
  .service-card {
    background: #1a1a1a;
    padding: 30px 20px;
    width: 100%;
    max-width: 260px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    background: #202020;
  }
  
  .service-card h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
  }
  
  /* PRICING */
  #pricing {
    background: #111;
  }
  
  .pricing-note {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 30px;
    color: #d0d0d0;
  }
  
  .pricing-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
  }
  
  .pricing-card {
    background: #1a1a1a;
    padding: 30px 20px;
    width: 100%;
    max-width: 260px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #2a2a2a;
    transition: transform 0.3s ease, border-color 0.3s ease;
  }
  
  .pricing-card:hover {
    transform: translateY(-5px);
    border-color: #ff2a2a;
  }
  
  .pricing-card h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
  
  .price {
    font-size: 2rem;
    font-weight: bold;
    color: #ff2a2a;
    margin-bottom: 12px;
  }
  
  .pricing-card.featured {
    border: 1px solid #ff2a2a;
    background: #181818;
  }
  
  /* GALLERY */
  .gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  
  .gallery img {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 28 / 19;
    object-fit: cover;
    border-radius: 10px;
  }
  
  /* CONTACT */
  #contact {
    text-align: center;
  }
  
  .contact-text {
    font-size: 1.1rem;
  }
  
  .phone {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 10px 0;
  }
  
  .service-area {
    margin-bottom: 20px;
    color: #d0d0d0;
  }
  
  form {
    display: flex;
    flex-direction: column;
    width: min(100%, 380px);
    margin: 0 auto;
  }
  
  form input,
  form textarea {
    margin-bottom: 15px;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
  }
  
  form textarea {
    min-height: 120px;
    resize: vertical;
  }
  
  button {
    padding: 14px;
    background: #ff1a1a;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  button:hover {
    background: #cc0000;
  }
  
  /* FOOTER */
  footer {
    text-align: center;
    padding: 25px;
    background: #000;
    margin-top: 30px;
  }
  
  /* DESKTOP MODE ON SMALLER WIDTHS */
  @media (max-width: 1100px) {
    nav {
      min-height: 72px;
      padding: 0 1rem;
    }
  
    .logo {
      font-size: 1.45rem;
      max-width: 28vw;
      overflow: hidden;
      text-overflow: ellipsis;
    }
  
    nav ul {
      gap: 16px;
    }
  
    nav a {
      font-size: 0.92rem;
    }
  
    .social-icons {
      gap: 10px;
    }
  
    .social-icons a {
      font-size: 0.95rem;
    }
  }
  
  /* MOBILE */
  @media (max-width: 768px) {
    nav {
      grid-template-columns: auto 1fr auto;
      min-height: 72px;
      padding: 0 0.9rem;
    }
  
    .menu-toggle {
      display: block;
    }
  
    .logo {
      font-size: 1.25rem;
      max-width: 42vw;
      overflow: hidden;
      text-overflow: ellipsis;
    }
  
    /* KEEP ICONS ON MOBILE */
    .social-icons {
      display: flex;
      gap: 10px;
    }
  
    .social-icons a {
      font-size: 0.95rem;
    }
  
    /* HIDE DESKTOP LINKS UNTIL HAMBURGER IS OPENED */
    nav ul {
      display: none;
      flex-direction: column;
      gap: 16px;
      background: #000;
      position: absolute;
      top: 72px;
      left: 12px;
      width: min(220px, calc(100vw - 24px));
      padding: 18px;
      border-radius: 8px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    }
  
    .hero {
      min-height: 65vh;
      padding: 6rem 1.25rem;
    }
  
    .hero-content {
      width: min(94%, 520px);
    }
  
    .hero h1 {
      font-size: 2rem;
    }
  
    .hero p {
      font-size: 1rem;
    }
  
    .btn {
      padding: 12px 22px;
    }
  
    .gallery img,
    .pricing-card,
    .service-card {
      max-width: 320px;
    }
  }
  
  /* SMALL PHONES */
  @media (max-width: 480px) {
    nav {
      padding: 0 0.7rem;
    }
  
    .logo {
      font-size: 1.05rem;
      max-width: 38vw;
    }
  
    .social-icons {
      gap: 8px;
    }
  
    .social-icons a {
      font-size: 0.88rem;
    }
  
    .hero {
      min-height: 60vh;
      padding: 5rem 0.9rem;
    }
  
    .hero h1 {
      font-size: 1.8rem;
    }
  
    .hero p {
      font-size: 0.95rem;
    }
  
    section {
      padding: 4rem 1rem;
    }
  
    .gallery img,
    .pricing-card,
    .service-card,
    form {
      max-width: 100%;
    }
  }