    :root {
      --bg: #05070a;
      --bg-elevated: #10131a;
      --bg-soft: #141821;
      --accent: #ff4040;
      --accent-soft: rgba(255, 64, 64, 0.15);
      --accent-blue: #3ba4ff;
      --text-main: #f9fafb;
      --text-muted: #9ca3af;
      --border-subtle: #1f2933;
      --radius-lg: 1.1rem;
      --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.7);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #1f2937 0, #05070a 50%, #020309 100%);
      color: var(--text-main);
      line-height: 1.6;
      scroll-behavior: smooth;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .page {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 1.5rem 1.25rem 4rem;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 30;
      backdrop-filter: blur(18px);
      background: linear-gradient(
        to bottom,
        rgba(5, 7, 10, 0.95),
        rgba(5, 7, 10, 0.9),
        transparent
      );
      border-bottom: 1px solid rgba(31, 41, 55, 0.7);
    }

    .nav-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0.7rem 1.25rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .brand-logo {
      width: 54px;
      height: 54px;
      border-radius: 12px;
      padding: 3px;
      background: radial-gradient(circle at top, #ff3b3b, #05070a 60%);
       box-shadow: 0 0 6px rgba(0, 140, 255, 0.35);
      object-fit: cover;
    }

    .brand-title {
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 0.9rem;
    }

    .brand-sub {
      font-size: 0.72rem;
      color: var(--text-muted);
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .nav-links a.active {
      color: var(--accent);
      background: rgba(15, 23, 42, 0.9);
    }


    .nav-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      align-items: center;
      font-size: 0.86rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
    }

    .nav-links a {
      padding: 0.25rem 0.5rem;
      border-radius: 999px;
      color: var(--text-muted);
      transition: background 0.13s ease, color 0.13s ease, transform 0.13s ease;
    }

    .nav-links a:hover {
      background: rgba(15, 23, 42, 0.9);
      color: var(--accent);
      transform: translateY(-1px);
    }

    .nav-cta {
      background: linear-gradient(to right, var(--accent), #ff7b54);
      color: #05070a;
      font-weight: 600;
      box-shadow: 0 0 6px rgba(0, 140, 255, 0.35);
    }

    main {
      flex: 1;
    }

    section {
      padding-top: 0.1rem;
    }

    .section-header {
      margin-bottom: 1.5rem;
      text-align: center;
      max-width: 1300px;
      margin-left: auto;
      margin-right: auto;
    }

    .section-header .section-intro {
      max-width: 48rem;
      margin-left: auto;
      margin-right: auto;
    }

    .kicker {
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.2rem;
    }

    h1, h2, h3, h4 {
      letter-spacing: 0.02em;
    }

    h2.section-title {
      font-size: 1.8rem;
      margin-bottom: 0.4rem;
    }

    .section-intro {
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    /* HERO / HOME */

    #home {
      padding-top: 0.1rem;
    }

    .hero {
      max-width: 1300px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      min-height: calc(100vh - 96px);
      justify-content: center;
      gap: 1.1rem;
    }

    .hero-logo-tagline {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-bottom: 0.6rem;
    }

    .hero-logo-wrap {
      max-width: 360px;
      filter: drop-shadow(0 0 36px rgba(255, 64, 64, 0.95));
      margin-bottom: 0.5rem;
    }

    .hero-logo-wrap img {
      width: 100%;
      height: auto;
    }

    .hero-tagline-main {
      font-size: 0.9rem;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: #fee2e2;
      text-shadow:
        0 0 8px rgba(255, 64, 64, 0.9),
        0 0 18px rgba(255, 64, 64, 0.9);
    }

    .hero-tagline-sub {
      font-size: 0.78rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--accent-blue);
      margin-top: 0.18rem;
      text-shadow:
        0 0 10px rgba(59, 164, 255, 0.9),
        0 0 22px rgba(59, 164, 255, 0.8);
    }

    .hero-title {
      font-size: clamp(2.1rem, 3vw, 2.6rem);
      margin-bottom: 0.4rem;
    }

    .hero-title span {
      color: var(--accent);
    }

    .hero-subtitle {
      color: var(--text-muted);
      font-size: 0.98rem;
      max-width: 36rem;
      margin-bottom: 0.8rem;
    }

    .hero-tagline-quote {
      font-style: italic;
      color: #fef3c7;
      margin-bottom: 0.9rem;
      font-size: 0.92rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
      justify-content: center;
      margin-bottom: 0.8rem;
    }

    .btn {
      border-radius: 999px;
      padding: 0.55rem 1.15rem;
      border: 1px solid transparent;
      font-size: 0.88rem;
      font-weight: 600;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      background: linear-gradient(to right, var(--accent), #ff7b54);
      color: #05070a;
      box-shadow: 0 12px 30px rgba(255, 64, 64, 0.8);
      transition: transform 0.13s ease, box-shadow 0.13s ease, background 0.13s ease;
    }

    .btn span.icon {
      font-size: 1rem;
    }

    .btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 45px rgba(255, 64, 64, 0.95);
    }

    .btn-outline {
      background: transparent;
      color: var(--text-main);
      border-color: rgba(148, 163, 184, 0.7);
      box-shadow: none;
    }

    .btn-outline:hover {
      background: rgba(15, 23, 42, 0.95);
      border-color: var(--accent);
    }

    .hero-meta {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1.5rem;
      font-size: 0.84rem;
      color: var(--text-muted);
      margin-top: 0.6rem;
      width: 100%;
      max-width: 900px;
    }

    .hero-meta-item {
      flex: 1;
      max-width: none;
    }

    .hero-meta-item strong {
      display: block;
      color: var(--text-main);
      font-size: 0.94rem;
    }

    /* Shared layout pieces */

    .card {
      background: radial-gradient(circle at top, #151824 0, #05070a 70%);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-subtle);
      padding: 1.1rem 1.2rem;
      box-shadow: var(--shadow-soft);
    }

    .two-column {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 1.6rem;
      align-items: flex-start;
    }

    .subnav {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-bottom: 1rem;
      font-size: 0.8rem;
      justify-content: center;
      text-align: center;
    }

    .subnav a {
      border-radius: 999px;
      padding: 0.1rem 0.7rem;
      border: 1px solid rgba(148, 163, 184, 0.6);
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 0.7rem;
    }

    .subnav a:hover {
      border-color: var(--accent);
      color: var(--accent);
      background: rgba(15, 23, 42, 0.9);
    }

    h3.subsection-title {
    text-align: center;
      font-size: 1.05rem;
      margin-bottom: 0.25rem;
    }

    .subsection {
      margin-top: 1.1rem;
    }

    .subsection p {
      font-size: 0.92rem;
      color: var(--text-muted);
      max-width: 52rem;
      margin-left: auto;
      margin-right: auto;
    }

    /* About */

    .about-facts {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.7rem;
      margin-top: 0.8rem;
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    .about-facts div {
      padding: 0.5rem 0.6rem;
      border-radius: 0.7rem;
      background: rgba(15, 23, 42, 0.7);
      border: 1px solid rgba(31, 41, 55, 0.9);
    }

    /* Services */

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
      margin-top: 0.5rem;
    }

    .services-grid h3 {
      margin-bottom: 0.25rem;
      font-size: 1rem;
    }

    .services-grid p {
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .service-tag {
      display: inline-flex;
      margin-top: 0.4rem;
      padding: 0.15rem 0.45rem;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.6);
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--text-muted);
    }

    /* Fleet */

    .fleet-list {
      margin-top: 0.5rem;
      list-style: none;
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .fleet-list li {
      margin-bottom: 0.25rem;
    }

    .fleet-list li::before {
      content: "✓";
      color: var(--accent-blue);
      margin-right: 0.35rem;
      font-size: 0.8rem;
    }

    /* Gallery */

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.5rem;
    }

    .gallery-item {
      border-radius: 0.8rem;
      overflow: hidden;
      background: #020309;
      border: 1px solid var(--border-subtle);
      position: relative;
      padding-bottom: 65%;
    }

    .gallery-item span {
      position: absolute;
      inset: 0.5rem;
      border-radius: 0.7rem;
      border: 1px dashed rgba(148, 163, 184, 0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      color: var(--text-muted);
      text-align: center;
      padding: 0.5rem;
    }

    /* Appointment / Contact */

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
      gap: 1.5rem;
      align-items: flex-start;
    }

    form {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 0.7rem;
    }

    .field-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.7rem;
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
      font-size: 0.85rem;
    }

    label {
      color: var(--text-muted);
      font-size: 0.8rem;
    }

    input, select, textarea {
      border-radius: 0.7rem;
      border: 1px solid rgba(55, 65, 81, 0.9);
      background: rgba(8, 10, 18, 0.96);
      padding: 0.45rem 0.65rem;
      color: var(--text-main);
      font-family: inherit;
      font-size: 0.9rem;
      outline: none;
      transition: border-color 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
    }

    input::placeholder, textarea::placeholder {
      color: #6b7280;
    }

    input:focus, select:focus, textarea:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 1px rgba(255, 64, 64, 0.65);
      background: #020309;
    }

    textarea {
      min-height: 90px;
      resize: vertical;
    }

    .form-note {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-left: 0.2rem;
    }

    .form-status {
      font-size: 0.82rem;
      min-height: 1rem;
      margin-top: 0.3rem;
    }

    .form-status.error {
      color: #f97373;
    }

    .form-status.success {
      color: #4ade80;
    }

    .hours-list {
      margin-top: 0.5rem;
      font-size: 0.9rem;
      color: var(--text-muted);
      list-style: none;
    }

    .hours-list li {
      display: flex;
      justify-content: space-between;
      gap: 0.5rem;
    }

    .contact-details {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-top: 0.8rem;
    }

    .contact-details a {
      color: var(--accent-blue);
    }

    /* Testimonials */

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
    }

    .quote-text {
      font-size: 0.9rem;
      color: #e5e7eb;
      margin-bottom: 0.5rem;
    }

    .quote-meta {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    /* Partners */

    .partners-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.8rem;
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .partners-grid h4 {
      font-size: 0.95rem;
      margin-bottom: 0.25rem;
      color: var(--text-main);
    }

    ul.clean {
      list-style: none;
      padding-left: 0;
    }

    ul.clean li::before {
      content: "•";
      margin-right: 0.35rem;
      color: var(--accent-blue);
    }

    footer {
      border-top: 1px solid rgba(31, 41, 55, 0.9);
      padding: 1rem 1.25rem 1.6rem;
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      gap: 0.6rem;
      flex-wrap: wrap;
      align-items: center;
    }

    @media (max-width: 960px) {
      .two-column,
      .services-grid,
      .gallery-grid,
      .contact-grid,
      .testimonials-grid,
      .partners-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .services-grid {
        gap: 0.9rem;
      }
    }

    @media (max-width: 780px) {
      .nav-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
      }

      .nav-links {
        font-size: 0.78rem;
      }
    }

    @media (max-width: 520px) {
      .container {
        padding-inline: 1rem;
      }

      .hero-title {
        font-size: 2rem;
      }

      .gallery-item span {
        font-size: 0.76rem;
      }

      .field-row {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero-tagline-main {
        font-size: 0.78rem;
      }

      .hero-tagline-sub {
        font-size: 0.7rem;
      }
    }

    .about-photo {
      border-radius: 0.9rem;
      overflow: hidden;
      background: #020309;
      border: 1px solid var(--border-subtle);
      box-shadow: var(--shadow-soft);
      max-width: 460px;          /* keeps them from being huge on wide screens */
      margin: 0 auto 0.75rem;    /* center in the text column */
    }

    .about-photo img {
      width: 100%;
      height: auto;
      display: block;
    }

    .about-photo figcaption {
      padding: 0.55rem 0.75rem 0.65rem;
      font-size: 0.82rem;
      color: var(--text-muted);
      background: rgba(5, 7, 10, 0.95);
    }

    /* About page horizontal photo gallery ("Photo Gallery" section) */

    .photo-gallery-shell {
      max-width: 820px;
      margin: 1.3rem auto 0;
      position: relative;
    }

    .photo-gallery-track {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      border-radius: 1rem;
      border: 1px solid var(--border-subtle);
      box-shadow: var(--shadow-soft);
      background: #020309;
    }

    /* hide scrollbar just for this track */
    .photo-gallery-track::-webkit-scrollbar {
      display: none;
    }
    .photo-gallery-track {
      scrollbar-width: none;
    }

    .photo-gallery-slide {
      flex: 0 0 100%;
      scroll-snap-align: center;
      display: flex;
      flex-direction: column;
      border-radius: 1rem;
      background: #020309;
      overflow: hidden;
    }

    .photo-gallery-image-container {
      width: 100%;
      aspect-ratio: 4 / 3; /* 800x600 shape */
      overflow: hidden;
    }

    .photo-gallery-image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .photo-gallery-slide figcaption {
      padding: 0.7rem 0.9rem 0.85rem;
      font-size: 0.82rem;
      color: var(--text-muted);
      background: rgba(5, 7, 10, 0.98);
      width: 100%;
      margin-bottom: 1rem;
    }

    /* nav buttons */

    .photo-gallery-nav {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .photo-gallery-nav-inner {
      position: absolute;
      bottom: 0.5rem;
      right: 0.6rem;
      display: flex;
      gap: 0.35rem;
      pointer-events: auto;
    }

    .gallery-dot-indicators {
      position: absolute;
      bottom: 0.75rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 0.25rem;
    }

    .gallery-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: rgba(148, 163, 184, 0.6);
    }

    .gallery-dot.is-active {
      background: var(--accent);
    }

    .gallery-button {
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.6);
      background: rgba(15, 23, 42, 0.96);
      color: var(--text-main);
      font-size: 0.75rem;
      padding: 0.25rem 0.55rem;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.15rem;
      opacity: 0.9;
      transition: opacity 0.12s ease, border-color 0.12s ease, background 0.12s ease;
    }

    .gallery-button:hover {
      opacity: 1;
      border-color: var(--accent);
      background: rgba(15, 23, 42, 1);
    }

    .gallery-button:disabled {
      opacity: 0.4;
      cursor: default;
      border-color: rgba(55, 65, 81, 0.9);
    }

  /* services */
  /* Services summary list at top of Services page */

.services-summary {
  margin: 0.9rem auto 0;
  max-width: 48rem; /* narrower width centers the content visually */
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 2.5rem; /* more horizontal spacing */
  font-size: 0.9rem;
  color: var(--text-muted);
  justify-content: center; /* ensures centering inside container */
}

/* keep bullets exactly the same */
.services-summary li {
  display: flex;
  align-items: flex-start;
}

.services-summary li::before {
  content: "•";
  margin-right: 0.45rem;
  color: var(--accent-blue);
  font-size: 1rem;
  line-height: 1;
}

/* Fleet customer gallery */

.fleet-clients {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.fleet-client {
  border-radius: 0.9rem;
  overflow: hidden;
  background: #020309;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.fleet-client-image {
  width: 100%;
  height: 170px;
  overflow: hidden;
}

.fleet-client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.fleet-client figcaption {
  padding: 0.55rem 0.7rem 0.7rem;
}

/* responsive layout for fleet clients */
@media (max-width: 960px) {
  .fleet-clients {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .fleet-clients {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Map embed on Appointment page */

.map-embed {
  margin-top: 0.85rem;
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  background: #020309;
}

.map-embed iframe {
  width: 100%;
  height: 260px;
  border: 0;
}

