:root {
      --bg: #f8fbfc;
      --ink: #1e2d44;
      --ink-soft: #5b6b80;
      --line: rgba(30, 45, 68, 0.12);
      --brand: #00d6d7;
      --brand-deep: #0f8f93;
      --accent: #00d6d7;
      --accent-soft: #c5fbfb;
      --shadow: 0 24px 70px rgba(30, 45, 68, 0.12);
      --shadow-soft: 0 14px 40px rgba(30, 45, 68, 0.08);
      --radius-xl: 28px;
      --radius-lg: 20px;
      --max: 1200px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "Source Sans 3", sans-serif;
      color: #ffffff;
      background:
        radial-gradient(circle at top left, rgba(0, 214, 215, 0.08), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at top, rgba(0, 214, 215, 0.06), transparent 38%);
      z-index: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .page-shell {
      position: relative;
      z-index: 1;
    }

    .container {
      width: min(calc(100% - 32px), var(--max));
      margin: 0 auto;
    }

    .section {
      padding: 44px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 0;
      border-radius: 0;
      background: transparent;
      border: 0;
      color: var(--brand-deep);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      box-shadow: none;
    }

    .eyebrow::before {
      content: "";
      width: 26px;
      height: 3px;
      border-radius: 999px;
      background: var(--accent);
      box-shadow: none;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      margin: 0;
      font-family: "Montserrat", sans-serif;
      letter-spacing: -0.03em;
      color: var(--ink);
    }

    h1 {
      font-size: clamp(3rem, 6vw, 5.5rem);
      line-height: 0.95;
    }

    h2 {
      font-size: clamp(2rem, 4vw, 3.4rem);
      line-height: 1;
    }

    h3 {
      font-size: 1.35rem;
      line-height: 1.15;
    }

    p {
      margin: 0;
      color: var(--ink-soft);
      line-height: 1.7;
      font-size: 1rem;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      padding: 18px 0 0;
    }

    .header-bar {
      width: min(calc(100% - 32px), var(--max));
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 14px 20px;
      border: 1px solid rgba(30, 45, 68, 0.08);
      background: rgba(255, 255, 255, 0.96);
      border-radius: 16px;
      box-shadow: var(--shadow-soft);
    }

    .brand {
      display: flex;
      align-items: center;
      min-width: 0;
    }

    .brand-logo {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      line-height: 1;
      display: flex;
      align-items: center;
      flex: 0 0 auto;
    }

    .brand-logo .charter-text {
      color: var(--ink);
    }

    .brand-logo .mybus-text {
      color: var(--brand);
      margin-left: 0.3em;
    }

    .brand-logo img {
      display: none;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 32px;
      color: var(--ink-soft);
      font-size: 0.95rem;
    }

    .nav a {
      white-space: nowrap;
      font-weight: 700;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .header-actions .button,
    .header-actions button.button {
      padding: 12px 14px;
      font-family: "Source Sans 3", sans-serif;
      font-size: 0.88rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      white-space: nowrap;
    }

    .call-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 16px;
      border-radius: 10px;
      background: rgba(0, 214, 215, 0.1);
      color: var(--ink);
      font-family: "Source Sans 3", sans-serif;
      font-size: 0.88rem;
      font-weight: 700;
      white-space: nowrap;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 15px 22px;
      border-radius: 10px;
      border: 1px solid transparent;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-size: 0.88rem;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .button:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 28px rgba(30, 45, 68, 0.12);
    }

    .button-primary {
      background: var(--brand);
      color: var(--ink);
      border-color: rgba(0, 214, 215, 0.25);
    }

    .button-secondary {
      background: #ffffff;
      border-color: rgba(30, 45, 68, 0.14);
      color: var(--ink);
    }

    .quote-modal[hidden] {
      display: none;
    }

    .quote-modal {
      position: fixed;
      inset: 0;
      z-index: 120;
      display: grid;
      place-items: center;
      padding: 20px;
    }

    .quote-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(16, 26, 38, 0.58);
      backdrop-filter: blur(8px);
    }

    .quote-modal__panel {
      position: relative;
      width: min(100%, 420px);
      max-height: calc(100vh - 40px);
      background:
        radial-gradient(circle at top right, rgba(0, 214, 215, 0.12), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f3f9fb 100%);
      color: var(--ink);
      border: 1px solid rgba(30, 45, 68, 0.1);
      border-radius: 24px;
      box-shadow: 0 28px 70px rgba(30, 45, 68, 0.18);
      padding: 24px 20px 20px;
      overflow-y: auto;
    }

    .quote-modal__panel--hero {
      width: min(100%, 460px);
      max-height: none;
      padding: 0;
      background: transparent;
      border: 0;
      box-shadow: none;
      overflow: visible;
    }

    .quote-modal__panel--hero .hero-quote-card {
      margin: 0;
      padding: clamp(16px, 4vw, 24px);
      max-height: calc(100vh - 40px);
      overflow-y: auto;
    }

    .quote-modal__panel--hero .quote-modal__close {
      z-index: 2;
    }

    .quote-modal__close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 38px;
      height: 38px;
      border: 1px solid rgba(30, 45, 68, 0.1);
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.8);
      color: transparent;
      font-size: 0;
      line-height: 1;
      cursor: pointer;
      transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
    }

    .quote-modal__close::before {
      content: "\00d7";
      color: var(--ink-soft);
      font-size: 1.3rem;
      line-height: 1;
    }

    .quote-modal__close:hover {
      transform: translateY(-1px);
      background: #ffffff;
      border-color: rgba(0, 214, 215, 0.24);
    }

    .quote-modal__close:hover::before {
      color: var(--ink);
    }

    .quote-modal__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 10px;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(0, 214, 215, 0.12);
      color: var(--brand-deep);
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .quote-modal__eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--brand);
    }

    .quote-modal__title {
      margin-bottom: 8px;
      color: var(--ink);
      font-size: 1.35rem;
      line-height: 1.15;
    }

    .quote-modal__intro {
      margin: 0 0 16px;
      color: var(--ink-soft);
      font-size: 0.88rem;
      line-height: 1.55;
    }

    .quote-toggle-group {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 16px;
    }

    .quote-toggle {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      border: 1px solid rgba(30, 45, 68, 0.12);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.88);
      color: var(--ink);
      font: inherit;
      font-size: 0.76rem;
      font-weight: 700;
      cursor: pointer;
      transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
    }

    .quote-toggle:hover {
      transform: translateY(-1px);
      border-color: rgba(0, 214, 215, 0.3);
      box-shadow: 0 10px 24px rgba(30, 45, 68, 0.08);
    }

    .quote-toggle.is-active {
      background: var(--brand);
      border-color: rgba(0, 214, 215, 0.28);
      color: var(--ink);
      box-shadow: 0 14px 28px rgba(0, 214, 215, 0.18);
    }

    .quote-form {
      display: grid;
      gap: 12px;
    }

    .quote-row {
      display: flex;
      gap: 12px;
    }

    .quote-field {
      width: 100%;
      min-height: 48px;
      padding: 12px 14px;
      border-radius: 14px;
      border: 1px solid rgba(30, 45, 68, 0.12);
      background: rgba(255, 255, 255, 0.94);
      color: var(--ink);
      font: inherit;
      font-size: 0.82rem;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
      transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }

    .quote-field::placeholder {
      color: #74859a;
    }

    .quote-field:focus {
      outline: none;
      border-color: rgba(0, 214, 215, 0.45);
      box-shadow: 0 0 0 4px rgba(0, 214, 215, 0.14);
      background: #ffffff;
    }

    .quote-stop-wrap {
      padding: 2px 0 0;
    }

    .quote-meta {
      margin-top: 2px;
      color: #6c7d92;
      font-size: 0.72rem;
      line-height: 1.5;
    }

    .quote-submit {
      width: 100%;
      margin-top: 6px;
      min-height: 50px;
      padding: 12px 16px;
      border: 0;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--brand) 0%, #42e7e7 100%);
      color: var(--ink);
      font: inherit;
      font-size: 0.82rem;
      font-weight: 800;
      cursor: pointer;
      box-shadow: 0 18px 30px rgba(0, 214, 215, 0.22);
      transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .quote-submit:hover {
      transform: translateY(-1px);
      box-shadow: 0 22px 34px rgba(0, 214, 215, 0.26);
    }

    .quote-hidden {
      display: none;
    }

    body.modal-open {
      overflow: hidden;
    }

    .hero {
      padding: 8px 0 20px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      gap: 28px;
      align-items: stretch;
    }

    .hero-copy {
      padding: 18px 0 18px;
    }

    .hero-title {
      font-size: clamp(1.45rem, 2.6vw, 2.3rem);
      line-height: 1.08;
      max-width: 720px;
    }

    .hero-copy > * + * {
      margin-top: 16px;
    }

    .hero-lead {
      max-width: 640px;
      font-size: 1.08rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: nowrap;
      gap: 12px;
      margin-top: 20px;
      align-items: center;
      width: 100%;
      max-width: 640px;
    }

    .hero-actions .button,
    .hero-actions button.button {
      flex: 1 1 0;
      min-width: 0;
      padding: 12px 14px;
      justify-content: center;
      white-space: nowrap;
      font-family: "Source Sans 3", sans-serif;
      font-size: 0.88rem;
      font-weight: 700;
    }

    .hero-media {
      margin-top: 18px;
      max-width: 640px;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(30, 45, 68, 0.1);
      background: #ffffff;
      box-shadow: var(--shadow-soft);
    }

    .hero-media img {
      display: block;
      width: 100%;
      height: 340px;
      object-fit: cover;
      object-position: center;
    }

    .hero-notes {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 32px;
    }

    .mini-card,
    .service-card,
    .fleet-card,
    .process-card,
    .review-card,
    .cta-panel {
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, 0.74);
      border: 1px solid rgba(30, 45, 68, 0.08);
      box-shadow: var(--shadow-soft);
    }

    .mini-card {
      padding: 18px;
      display: grid;
      gap: 12px;
      align-content: start;
    }

    .mini-card strong {
      display: block;
      font-family: "Montserrat", sans-serif;
      font-size: 1rem;
      margin-bottom: 0;
      color: var(--ink);
    }

    .mini-card p {
      margin: 0;
      color: var(--ink-soft);
      font-size: 0.84rem;
      line-height: 1.55;
    }

    .mini-card__icon {
      width: 50px;
      height: 50px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, rgba(0, 214, 215, 0.16), rgba(30, 45, 68, 0.08));
      color: var(--brand-deep);
    }

    .mini-card__icon svg {
      width: 24px;
      height: 24px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.9;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .hero-panel {
      position: relative;
      border-radius: var(--radius-xl);
      overflow: hidden;
      padding: 26px;
      background:
        radial-gradient(circle at top left, rgba(0, 214, 215, 0.18), transparent 32%),
        linear-gradient(160deg, #1e2d44 0%, #263b58 44%, #1b2d46 100%);
      box-shadow: var(--shadow);
      color: white;
      min-height: 640px;
    }

    .hero-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
      background-size: 42px 42px;
      opacity: 0.18;
      pointer-events: none;
    }

    .hero-stack {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 18px;
      height: 100%;
    }

    .hero-quote-card {
      margin: auto 0;
      padding: 24px;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.96);
      color: var(--ink);
      box-shadow: 0 24px 54px rgba(11, 22, 35, 0.18);
      border: 1px solid rgba(255, 255, 255, 0.18);
      backdrop-filter: blur(10px);
    }

    .hero-quote-card .quote-modal__eyebrow {
      margin-bottom: 12px;
    }

    .hero-quote-card .quote-modal__title {
      margin-bottom: 10px;
    }

    .hero-quote-card .quote-modal__intro {
      margin-bottom: 18px;
    }

    .hero-quote-card .quote-form {
      gap: 12px;
    }

    .hero-quote-card .quote-meta {
      margin-top: 4px;
    }

    .hero-process-grid {
      display: grid;
      gap: 14px;
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-process-card {
      padding: 16px 14px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow: 0 16px 32px rgba(10, 18, 30, 0.14);
      backdrop-filter: blur(8px);
      display: grid;
      gap: 10px;
      align-content: start;
    }

    .hero-process-icon {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, rgba(0, 214, 215, 0.24), rgba(255, 255, 255, 0.16));
      border: 1px solid rgba(255, 255, 255, 0.18);
      color: #ffffff;
    }

    .hero-process-icon svg {
      width: 22px;
      height: 22px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.9;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .hero-process-card h3 {
      margin: 0;
      color: var(--ink);
      font-size: 0.92rem;
      line-height: 1.2;
    }

    .hero-process-card p {
      margin: 0;
      color: rgba(255, 255, 255, 0.76);
      font-size: 0.76rem;
      line-height: 1.55;
    }

    .route-window,
    .panel-grid,
    .section-head,
    .service-layout,
    .review-layout,
    .cta-panel {
      display: grid;
      gap: 18px;
    }

    .route-window {
      grid-template-columns: 1.08fr 0.92fr;
      align-items: stretch;
      flex: 1;
    }

    .route-map,
    .route-card,
    .panel-card,
    .review-intro {
      border-radius: 20px;
    }

    .route-map,
    .route-card,
    .panel-card {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.16);
    }

    .route-map {
      position: relative;
      padding: 28px;
      min-height: 320px;
      overflow: hidden;
    }

    .route-line {
      position: absolute;
      inset: 40px 26px 50px 26px;
    }

    .route-line svg {
      width: 100%;
      height: 100%;
    }

    .map-point {
      position: absolute;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      border-radius: 10px;
      background: rgba(8, 17, 31, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.16);
      font-size: 0.83rem;
      font-weight: 700;
    }

    .map-point::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 7px rgba(0, 214, 215, 0.18);
    }

    .map-point.start { top: 34px; left: 28px; }
    .map-point.middle { top: 42%; right: 16px; }
    .map-point.end { bottom: 34px; left: 34%; }

    .route-card,
    .panel-card,
    .service-card,
    .fleet-card,
    .process-card,
    .review-card,
    .review-intro {
      padding: 22px;
      display: grid;
      gap: 16px;
    }

    .route-card h3,
    .panel-card h3 {
      color: var(--ink);
    }

    .route-row {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.14);
      color: rgba(255, 255, 255, 0.78);
      font-size: 0.95rem;
    }

    .route-row:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .route-row strong {
      color: white;
    }

    .panel-grid {
      grid-template-columns: 1.1fr 0.9fr;
    }

    .trust-list {
      display: grid;
      gap: 10px;
      padding: 0;
      margin: 0;
      list-style: none;
      color: rgba(255, 255, 255, 0.86);
    }

    .trust-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }

    .trust-list li strong {
      color: var(--ink);
    }

    .trust-list li::before {
      font-family: "Montserrat", sans-serif;
      color: var(--accent-soft);
      font-size: 0.9rem;
      opacity: 0.92;
    }

    .trust-list li:nth-child(1)::before { content: "01"; }
    .trust-list li:nth-child(2)::before { content: "02"; }
    .trust-list li:nth-child(3)::before { content: "03"; }

    .quote-chip,
    .card-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      width: fit-content;
      padding: 8px 12px;
      border-radius: 8px;
      font-size: 0.85rem;
      font-weight: 700;
    }

    .quote-chip {
      background: rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.92);
    }

    .quote-total {
      font-family: "Montserrat", sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1;
    }

    .brand-strip {
      margin-top: 18px;
      padding: 24px 0 6px;
    }

    .brand-row {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 14px;
    }

    .brand-pill {
      display: grid;
      place-items: center;
      min-height: 76px;
      border-radius: 12px;
      border: 1px solid rgba(30, 45, 68, 0.08);
      background: rgba(255, 255, 255, 0.75);
      box-shadow: var(--shadow-soft);
      color: var(--ink-soft);
      font-family: "Montserrat", sans-serif;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      font-size: 0.85rem;
    }

    .section-head {
      grid-template-columns: 1.1fr 0.9fr;
      align-items: end;
      margin-bottom: 28px;
    }

    .section-head--single {
      grid-template-columns: 1fr;
    }

    .section-head--single h2 {
      font-size: clamp(1.8rem, 2.8vw, 2.6rem);
      line-height: 1.06;
      max-width: none;
    }

    .section-head--compact {
      margin-bottom: 14px;
    }

    .section-head--fleet {
      margin-bottom: 32px;
    }

    .process-headline {
      font-size: 1.4rem;
      line-height: 1.3;
      white-space: nowrap;
    }

    .section-head > * + * {
      justify-self: end;
      max-width: 420px;
    }

    .service-layout {
      grid-template-columns: 1fr;
    }

    .service-feature {
      position: relative;
      padding: 28px;
      min-height: 0;
      overflow: hidden;
      border-radius: var(--radius-lg);
      background:
        radial-gradient(circle at top right, rgba(0, 214, 215, 0.14), transparent 24%),
        linear-gradient(145deg, #223a5b 0%, #1e2d44 100%);
      color: white;
      box-shadow: 0 18px 38px rgba(30, 45, 68, 0.12);
    }

    .service-feature::after {
      content: "";
      position: absolute;
      right: -30px;
      bottom: -30px;
      width: 260px;
      height: 260px;
      border-radius: 40px;
      background: linear-gradient(145deg, rgba(0, 214, 215, 0.18), rgba(255, 255, 255, 0.04));
      transform: rotate(18deg);
    }

    .service-feature-content {
      position: relative;
      z-index: 1;
      max-width: none;
      display: grid;
      gap: 16px;
    }

    .service-feature p {
      color: rgba(255, 255, 255, 0.8);
    }

    .service-feature-content h3 {
      max-width: 980px;
      font-size: clamp(1.5rem, 2.1vw, 2rem);
      line-height: 1.08;
      color: #ffffff;
    }

    .service-feature-content p {
      max-width: 980px;
      font-size: 0.88rem;
    }

    .service-grid,
    .review-grid {
      display: grid;
      gap: 18px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-wheel {
      position: relative;
      overflow-x: auto;
      overflow-y: hidden;
      margin-top: 24px;
      margin-left: -28px;
      margin-right: -28px;
      padding: 10px 28px 6px;
      scrollbar-width: none;
      -ms-overflow-style: none;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      cursor: grab;
    }

    .service-wheel:active {
      cursor: grabbing;
    }

    .service-wheel::-webkit-scrollbar {
      display: none;
    }

    .service-wheel::before,
    .service-wheel::after {
      display: none;
    }

    .service-track {
      display: flex;
      gap: 18px;
      width: max-content;
      will-change: transform;
    }

    .service-card {
      min-width: 238px;
      max-width: 238px;
    }

    .service-card--wheel {
      min-height: 0;
      padding: 14px 14px 16px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.86);
      border: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow: 0 18px 34px rgba(13, 24, 38, 0.14);
      display: grid;
      gap: 10px;
      align-content: start;
      backdrop-filter: blur(10px);
    }

    .service-thumb {
      width: 100%;
      height: 132px;
      border-radius: 14px;
      overflow: hidden;
      background: rgba(30, 45, 68, 0.08);
    }

    .service-thumb img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      transform: scale(1.02);
    }

    .service-icon {
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(0, 214, 215, 0.2), rgba(30, 45, 68, 0.08));
      color: var(--brand-deep);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
    }

    .service-icon svg {
      width: 28px;
      height: 28px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.9;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .service-card--wheel h3 {
      margin: 0;
      color: var(--ink);
      font-size: 0.95rem;
      line-height: 1.24;
    }

    .service-card--wheel p {
      margin: 0;
      color: var(--ink-soft);
      font-size: 0.76rem;
      line-height: 1.5;
    }

    .service-card--wheel .card-tag {
      width: fit-content;
      font-size: 0.68rem;
      padding: 7px 10px;
    }

    .service-uses {
      display: grid;
      gap: 5px;
      margin: 0;
      padding: 0;
      list-style: none;
      color: var(--ink-soft);
      font-size: 0.72rem;
      line-height: 1.45;
    }

    .service-uses li {
      position: relative;
      padding-left: 12px;
    }

    .service-uses li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.5em;
      width: 5px;
      height: 5px;
      border-radius: 999px;
      background: var(--brand-deep);
      transform: translateY(-50%);
    }

    .service-cta {
      width: 100%;
      justify-content: center;
      margin-top: auto;
      padding: 10px 12px;
      font-family: "Source Sans 3", sans-serif;
      font-size: 0.88rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      line-height: 1.2;
      text-align: center;
    }

    .service-card-actions {
      display: flex;
      gap: 10px;
      align-items: center;
      margin-top: auto;
      width: 100%;
    }

    .service-card-actions .service-cta {
      flex: 1;
      width: auto;
    }

    .service-readmore {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-weight: 700;
      font-size: 0.7rem;
      color: var(--accent);
      text-decoration: none;
      white-space: nowrap;
      transition: gap 0.2s ease;
    }

    .service-readmore:hover {
      gap: 8px;
    }

    .service-readmore::after {
      content: "\2192";
      font-size: 0.85rem;
    }

    @keyframes service-wheel-scroll {
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(calc(-50% - 9px));
      }
    }

    .card-tag {
      background: rgba(0, 214, 215, 0.12);
      color: var(--ink);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      font-size: 0.8rem;
    }

    .service-link,
    .fleet-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: auto;
      font-weight: 700;
      color: var(--ink);
    }

    .service-link::after,
    .fleet-link::after {
      content: "->";
      color: var(--accent);
      transition: transform 0.2s ease;
    }

    .service-card:hover .service-link::after,
    .fleet-card:hover .fleet-link::after {
      transform: translateX(4px);
    }

    .fleet-grid,
    .process-grid {
      display: grid;
      gap: 18px;
    }

    .fleet-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 24px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .fleet-card,
    .process-card,
    .review-card {
      min-height: 240px;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .service-card,
    .fleet-card {
      min-height: 206px;
    }

    .fleet-card {
      padding: 20px;
      min-height: 0;
      gap: 14px;
    }

    .service-card:hover,
    .fleet-card:hover,
    .review-card:hover,
    .process-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 46px rgba(30, 45, 68, 0.12);
    }

    .fleet-visual {
      height: 200px;
      border-radius: 16px;
      background:
        radial-gradient(circle at 18% 30%, rgba(255, 255, 255, 0.78), transparent 14%),
        linear-gradient(135deg, rgba(0, 214, 215, 0.16), rgba(30, 45, 68, 0.1));
      position: relative;
      overflow: hidden;
    }

    .fleet-visual svg {
      position: absolute;
      inset: auto 12px 8px 12px;
      width: calc(100% - 24px);
      height: 72px;
      color: var(--ink);
      opacity: 0.92;
    }

    .fleet-visual img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .fleet-visual--gallery {
      padding: 0;
    }

    .fleet-gallery {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .fleet-gallery-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.24s ease;
    }

    .fleet-gallery-slide.is-active {
      opacity: 1;
      pointer-events: auto;
    }

    .fleet-gallery-slide img {
      display: block;
      width: 100%;
      height: 100%;
      border-radius: 16px;
      object-fit: contain;
      object-position: center;
      background: linear-gradient(135deg, rgba(0, 214, 215, 0.08), rgba(30, 45, 68, 0.05));
    }

    .fleet-gallery-slide--hero img {
      object-fit: contain;
      object-position: center bottom;
      padding: 4px 8px 2px;
    }

    .fleet-gallery-slide--interior img {
      object-position: center center;
    }

    .fleet-gallery-slide--rear img {
      object-position: center 42%;
    }

    .fleet-gallery-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      width: 28px;
      height: 28px;
      border: 1px solid rgba(30, 45, 68, 0.24);
      border-radius: 999px;
      background: rgba(30, 45, 68, 0.82);
      color: var(--ink);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: "Montserrat", sans-serif;
      font-size: 0.92rem;
      font-weight: 700;
      line-height: 1;
      cursor: pointer;
      box-shadow: 0 10px 18px rgba(30, 45, 68, 0.18);
      transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
    }

    .fleet-gallery-nav:hover {
      background: var(--teal);
      color: #ffffff;
      transform: translateY(-50%) scale(1.04);
    }

    .fleet-gallery-nav--prev {
      left: -14px;
    }

    .fleet-gallery-nav--next {
      right: -14px;
    }

    .fleet-card h3 {
      font-size: 1.02rem;
      line-height: 1.2;
      color: var(--ink);
    }

    .fleet-card p {
      font-size: 0.84rem;
      line-height: 1.55;
    }

    .fleet-meta {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
      color: var(--ink-soft);
      font-size: 0.82rem;
    }

    .fleet-meta strong {
      color: var(--ink);
    }

    .fleet-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: auto;
    }

    .fleet-cta {
      width: fit-content;
      padding: 10px 12px;
      font-family: "Source Sans 3", sans-serif;
      font-size: 0.88rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      white-space: nowrap;
    }

    .fleet-readmore {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-weight: 700;
      font-size: 0.82rem;
      color: var(--accent);
      text-decoration: none;
      transition: gap 0.2s ease;
    }

    .fleet-readmore:hover {
      gap: 10px;
    }

    .fleet-readmore::after {
      content: "\2192";
      font-size: 1rem;
    }

    .process-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .step-number {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      font-family: "Montserrat", sans-serif;
      font-weight: 700;
      color: white;
      background: linear-gradient(135deg, #1e2d44, #2f4f73);
      box-shadow: 0 16px 24px rgba(30, 45, 68, 0.18);
    }

    .review-layout {
      grid-template-columns: 0.85fr 1.15fr;
      align-items: stretch;
    }

    .review-intro {
      background:
        radial-gradient(circle at top left, rgba(0, 214, 215, 0.18), transparent 24%),
        linear-gradient(145deg, #223a5b 0%, #15273e 100%);
      color: white;
      box-shadow: var(--shadow);
    }

    .review-intro p {
      color: rgba(255, 255, 255, 0.78);
    }

    .review-stats {
      display: grid;
      gap: 14px;
      margin-top: 28px;
    }

    .review-stats strong {
      display: block;
      font-family: "Montserrat", sans-serif;
      font-size: 2rem;
      line-height: 1;
    }

    .review-card p {
      color: var(--ink);
      font-size: 1.02rem;
      line-height: 1.75;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: auto;
    }

    .review-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-weight: 700;
      color: white;
      background: linear-gradient(135deg, #1e2d44, #00c4c5);
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 28px;
      margin-top: 32px;
    }

    .blog-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .blog-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
    }

    .blog-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      background: linear-gradient(135deg, rgba(0, 214, 215, 0.1), rgba(30, 45, 68, 0.05));
    }

    .blog-content {
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex: 1;
    }

    .blog-date {
      font-size: 0.85rem;
      color: var(--brand);
      font-weight: 600;
    }

    .blog-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--ink);
      line-height: 1.3;
      margin: 0;
    }

    .blog-excerpt {
      font-size: 0.95rem;
      color: var(--ink-soft);
      line-height: 1.6;
      flex: 1;
    }

    .blog-link {
      color: var(--brand-deep);
      font-weight: 600;
      font-size: 0.95rem;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.2s ease;
    }

    .blog-link:hover {
      gap: 10px;
    }

    .cta-panel {
      padding: 34px;
      grid-template-columns: 1.1fr 0.9fr;
      align-items: center;
      background:
        radial-gradient(circle at top right, rgba(0, 214, 215, 0.16), transparent 22%),
        rgba(255, 255, 255, 0.8);
    }

    .cta-card {
      padding: 22px;
      border-radius: 24px;
      background: var(--ink);
      color: white;
      display: grid;
      gap: 12px;
      box-shadow: var(--shadow);
    }

    .cta-card p {
      color: rgba(255, 255, 255, 0.76);
    }

    .footer {
      padding: 64px 0 0;
      background: linear-gradient(180deg, var(--bg) 0%, #e8f3f5 100%);
      border-top: 1px solid rgba(30, 45, 68, 0.08);
    }

    .footer-content {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
      gap: 48px;
      padding-bottom: 48px;
    }

    .footer-section {
      color: var(--ink-soft);
    }

    .footer-heading {
      margin: 0 0 16px;
      font-family: "Montserrat", sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--ink);
    }

    .footer-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .footer-list li {
      margin-bottom: 10px;
    }

    .footer-list a {
      color: var(--ink-soft);
      font-size: 0.88rem;
      transition: color 0.2s ease;
    }

    .footer-list a:hover {
      color: var(--brand-deep);
    }

    .footer-bar {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: center;
      padding: 24px 0;
      border-top: 1px solid rgba(30, 45, 68, 0.12);
      color: var(--ink-soft);
      font-size: 0.88rem;
    }

    .footer-links {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: var(--ink-soft);
      transition: color 0.2s ease;
    }

    .footer-links a:hover {
      color: var(--brand-deep);
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1100px) {
      .hero-grid,
      .service-layout,
      .review-layout,
      .cta-panel,
      .section-head,
      .route-window,
      .panel-grid {
        grid-template-columns: 1fr;
      }

      .section-head > * + * {
        justify-self: start;
      }

      .fleet-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
      }
    }

    @media (max-width: 900px) {
      .nav,
      .call-pill {
        display: none;
      }

      .hero-notes,
      .hero-process-grid,
      .process-grid,
      .review-grid,
      .brand-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .service-grid {
        grid-template-columns: 1fr;
      }

      .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
      }

      .footer-brand {
        grid-column: 1 / -1;
      }

      .fleet-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .section {
        padding: 34px 0;
      }

      .header-bar {
        padding: 12px 14px;
      }

      .button {
        width: 100%;
        min-height: 48px;
        font-size: 1rem;
      }

      .fleet-gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
      }

      .brand-logo {
        white-space: nowrap;
        font-size: 1.15rem;
      }

      .brand {
        min-width: auto;
        overflow: visible;
      }

      .header-actions .button,
      .header-actions button.button {
        width: auto;
        padding: 10px 12px;
        font-size: 0.75rem;
      }

      .hero-panel {
        min-height: auto;
        padding: 18px;
      }

      .hero h1 {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
      }

      .hero p {
        font-size: 1rem !important;
      }

      .eyebrow {
        font-size: 0.75rem !important;
      }

      .hero-notes,
      .hero-process-grid,
      .brand-row,
      .process-grid,
      .review-grid {
        grid-template-columns: 1fr;
      }

      .fleet-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 16px;
        grid-template-columns: none;
        padding: 0 16px 16px 16px;
        margin: 0 -16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
      }

      .fleet-grid::-webkit-scrollbar {
        height: 6px;
      }

      .fleet-grid::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
        border-radius: 3px;
      }

      .fleet-grid::-webkit-scrollbar-thumb {
        background: rgba(0, 214, 215, 0.5);
        border-radius: 3px;
      }

      .fleet-card {
        min-width: 280px;
        max-width: 280px;
        flex-shrink: 0;
        scroll-snap-align: start;
      }

      .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .section-head h2 {
        font-size: 1.5rem !important;
        white-space: normal !important;
        line-height: 1.4 !important;
      }

      .process-headline {
        font-size: 1.25rem !important;
        white-space: normal !important;
        line-height: 1.35 !important;
      }

      .section {
        padding: 48px 0;
      }

      .container {
        padding: 0 16px;
      }

      .service-card,
      .fleet-card,
      .process-card {
        padding: 20px;
      }

      .service-feature {
        padding: 20px;
      }

      .service-wheel {
        margin-left: -20px;
        margin-right: -20px;
        padding: 10px 20px 6px;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
      }

      .service-wheel::-webkit-scrollbar {
        display: none;
      }

      .service-feature-content h3 {
        font-size: 1.35rem !important;
        line-height: 1.3 !important;
      }

      .service-feature-content p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
      }

      .service-feature-content {
        gap: 14px;
      }

      .fleet-visual {
        height: 180px;
      }

      .review-intro {
        padding: 24px 20px;
      }

      .cta-panel {
        padding: 32px 20px;
        gap: 24px;
      }

      .route-map {
        min-height: 260px;
      }

      .map-point {
        font-size: 0.74rem;
      }

      .hero-media img {
        height: 220px;
      }

      .hero-actions {
        flex-wrap: wrap;
      }

      .hero-actions .button,
      .hero-actions button.button {
        flex: 1 1 calc(50% - 6px);
      }

      .service-card-actions {
        flex-direction: column;
        gap: 8px;
      }

      .service-readmore {
        justify-content: center;
      }

      .fleet-actions {
        flex-direction: column;
        gap: 8px;
        width: 100%;
      }

      .fleet-actions .fleet-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
      }

      .fleet-readmore {
        justify-content: center;
      }

      .quote-modal {
        padding: 12px;
      }

      .quote-modal__panel {
        padding: 20px 14px 16px;
        max-height: calc(100vh - 24px);
      }

      .quote-row {
        flex-direction: column;
      }

      .footer-bar {
        flex-direction: column;
        align-items: flex-start;
      }

      .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
      }
    }
    /* Slider Container Logic */
.service-wheel {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-bottom: 60px; /* Space for buttons */
}

.service-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px; /* Adjust spacing between cards */
}


/* Navigation Buttons */
.slider-controls {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.slider-arrow {
  background: #000; /* Change to your brand color */
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.slider-arrow:hover {
  opacity: 0.8;
}

/* Responsive adjustment */
@media (max-width: 992px) {
  .service-card--wheel {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .service-card--wheel {
    flex: 0 0 100%;
  }
}

@media (max-width: 768px) {
  .fleet-grid {
    display: flex !important; /* Overwrite grid with flex */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 20px;
    padding-bottom: 15px; /* Space for scrollbar if visible */
    -webkit-overflow-scrolling: touch;
  }

  .fleet-card {
    flex: 0 0 85%; /* Shows 85% of the card so the next one is peeked */
    scroll-snap-align: center;
    margin: 0;
  }

  /* Hide scrollbar for a cleaner look */
  .fleet-grid::-webkit-scrollbar {
    display: none;
  }
  .fleet-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}
.flatpickr-input::placeholder {
  opacity: 1 !important;
  color: #1e2d44;
}

.pri-wrapper {
    font-family: 'Poppins', sans-serif;
    background: #f5f7fb;
    color: #333;
}

/* HEADER */
.pri-header {
  background: linear-gradient(135deg, #00d6d7, #00d6d7);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

/* CARD */
.pri-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-top: -40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* TITLES */
.pri-section-title {
    color: #0d3b66;
    font-weight: 600;
    margin-top: 30px;
}

.pri-sub-title {
    color: #145da0;
    font-weight: 500;
    margin-top: 20px;
}

/* LIST */
.pri-list {
    padding-left: 20px;
}

.pri-list li {
    margin-bottom: 8px;
}

.bannerdata h1{
    color: white;
    font-size: 60px;
}
.bannerdata p{
    color: white;
    font-size: 20px;
    padding-top: 10px;
}

/* RESPONSIVE */
@media(max-width:768px){
    .pri-card {
        padding: 20px;
    }
}
