/* blocks.css — styles for Gutenberg-serialised content blocks + homepage sections */

/* ─── Inner-page hero ───────────────────────────────────────────────────── */
.tsu-page-hero {
  position: relative;
  padding: 150px 20px 64px;
  overflow: hidden;
}

.tsu-page-hero--dark {
  background: linear-gradient(135deg, #0F172A 0%, #065F46 60%, #0E7A4B 100%);
  color: #fff;
}

.tsu-page-hero--dark::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201,168,97,0.16) 0%, transparent 60%);
  pointer-events: none;
}

.tsu-page-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 18px;
  max-width: 820px;
  color: inherit;
}

.tsu-page-hero--dark .tsu-page-hero__h1 { color: #fff; }

.tsu-page-hero__sub {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  max-width: 680px;
  opacity: 0.84;
  color: inherit;
}

.tsu-hero-para {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-700);
  max-width: 860px;
  margin: 0 0 16px;
}

/* ─── Card grids ────────────────────────────────────────────────────────── */
.tsu-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 32px 0;
}

.tsu-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.tsu-card:hover {
  border-color: #0E7A4B;
  transform: translateY(-3px);
  box-shadow: 0 24px 56px rgba(15,23,42,0.10);
}

.tsu-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink-900);
}

.tsu-card__body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  color: var(--ink-600);
}

.tsu-cards--steps .tsu-card { position: relative; }

.tsu-card__num {
  width: 36px; height: 36px; border-radius: 999px;
  background: linear-gradient(135deg, #0E7A4B, #138A5A);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  box-shadow: 0 8px 20px rgba(14,122,75,0.28);
  flex-shrink: 0;
}

.tsu-cards--detail .tsu-card { background: var(--bg-soft, #F8FAFC); }

/* ─── FAQ accordion ─────────────────────────────────────────────────────── */
.tsu-faq-group { max-width: 880px; margin: 32px auto; }

.tsu-faq-item {
  background: #fff; border: 1px solid #E5E7EB; border-radius: 18px;
  margin-bottom: 10px; overflow: hidden;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.tsu-faq-item[open] { border-color: #0E7A4B; box-shadow: 0 12px 28px rgba(14,122,75,0.08); }

.tsu-faq-item summary {
  padding: 20px 24px;
  font-family: var(--font-display); font-weight: 600; font-size: 17px;
  color: var(--ink-900); letter-spacing: -0.01em; cursor: pointer;
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}

.tsu-faq-item summary::-webkit-details-marker { display: none; }

.tsu-faq-item summary::after {
  content: "+"; width: 32px; height: 32px; border-radius: 999px;
  background: #F3F4F6; color: #0E7A4B;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 400; flex-shrink: 0;
  transition: background 220ms ease, transform 220ms ease;
}

.tsu-faq-item[open] summary::after {
  background: linear-gradient(135deg, #0E7A4B, #138A5A); color: #fff; transform: rotate(45deg);
}

.tsu-faq-item .wp-block-paragraph {
  padding: 0 24px 22px; font-family: var(--font-body); font-size: 15px; line-height: 1.65; color: var(--ink-600);
}

/* ─── Testimonial / review grid ─────────────────────────────────────────── */
.tsu-reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin: 32px 0;
}

.tsu-review {
  background: #fff; border: 1px solid #E5E7EB; border-radius: 20px; padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
}

.tsu-review__stars { color: #C9A861; font-size: 16px; letter-spacing: 2px; }

.tsu-review__quote {
  font-family: var(--font-body); font-size: 15px; line-height: 1.65; color: var(--ink-700); margin: 0; border: none; padding: 0;
}

.tsu-review__quote p { margin: 0; }
.tsu-review__author { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--ink-900); font-style: normal; }
.tsu-review__role { font-weight: 400; color: var(--ink-500); }

/* ─── Trust strip ───────────────────────────────────────────────────────── */
.tsu-trust-strip { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0; }

.tsu-trust-strip__item {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.16); border-radius: 999px; padding: 10px 16px;
  font-family: var(--font-body); font-weight: 600; font-size: 13px; color: white;
}

/* ─── RTL ───────────────────────────────────────────────────────────────── */
[dir="rtl"] .tsu-card__title, [dir="rtl"] .tsu-faq-item summary { font-family: var(--font-display-ar); }
[dir="rtl"] .tsu-card__body, [dir="rtl"] .tsu-review__quote, [dir="rtl"] .tsu-hero-para { font-family: var(--font-body-ar); }

/* ─── Related links ─────────────────────────────────────────────────────── */
.tsu-related-links {
  background: white; border-radius: 24px; padding: 24px;
  border: 1px solid #E5E7EB; box-shadow: 0 4px 16px rgba(15,23,42,0.04); margin: 32px 0;
}

.tsu-related-links__heading {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: #0E7A4B; margin: 0 0 14px;
}

.tsu-related-links__list { display: flex; flex-direction: column; gap: 2px; }

.tsu-related-links__item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid #F3F4F6; text-decoration: none;
  color: var(--ink-900); font-family: var(--font-body); font-size: 14px; font-weight: 500;
  transition: color 180ms ease;
}

.tsu-related-links__item:last-child { border-bottom: none; }
.tsu-related-links__item:hover { color: #0E7A4B; }
.tsu-related-links__item .tsu-icon { color: #9CA3AF; flex-shrink: 0; transition: color 180ms ease; }
.tsu-related-links__item:hover .tsu-icon { color: #0E7A4B; }


/* ═══════════════════════════════════════════════════════════
   HOMEPAGE HERO — real photo background + dark gradient overlay
   ═══════════════════════════════════════════════════════════ */

.tsu-home-hero {
  position: relative;
  min-height: 820px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 180px 0 90px;
  overflow: hidden;
  color: white;
}

.tsu-home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.tsu-home-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(14,122,75,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(201,168,97,0.12) 0%, transparent 50%);
  mix-blend-mode: screen;
}

.tsu-home-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Glass eyebrow pill */
.tsu-home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,97,0.35);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white;
  width: fit-content;
  margin-bottom: 24px;
}

.tsu-home-hero__gold-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: #C9A861;
  box-shadow: 0 0 12px rgba(201,168,97,0.8);
  flex-shrink: 0;
}

.tsu-home-hero__hairline {
  width: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, #C9A861, transparent);
  flex-shrink: 0;
}

/* H1 — gradient text for "Professional Fleet," */
.tsu-home-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6.4vw, 68px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0 0 18px;
  max-width: 900px;
  text-wrap: balance;
  color: white;
}

.tsu-home-hero__h1-shine {
  background: linear-gradient(135deg, #DDF7EA 0%, #FFFFFF 60%, #C9A861 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.tsu-home-hero__sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.55;
  color: rgba(255,255,255,0.84);
  margin: 0 0 36px;
  max-width: 640px;
}

/* CTA row */
.tsu-home-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 40px;
}

/* Trust pills */
.tsu-home-hero__trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tsu-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: white;
}

.tsu-trust-pill__icon {
  width: 16px; height: 16px; flex-shrink: 0;
  color: #3DBE83;
}

.tsu-trust-pill--gold .tsu-trust-pill__icon { color: #C9A861; }


/* ═══════════════════════════════════════════════════════════
   BOOKING WIDGET — glass card overlapping hero
   ═══════════════════════════════════════════════════════════ */

.tsu-booking-wrap {
  position: relative;
  margin: -86px auto 0;
  max-width: 1180px;
  z-index: 5;
  padding: 0 24px;
}

.tsu-booking-tabs {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 12px;
  padding: 4px;
  background: rgba(15,23,42,0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
}

.tsu-booking-tab {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  background: transparent;
  color: rgba(255,255,255,0.78);
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.tsu-booking-tab--active,
.tsu-booking-tab:hover {
  background: linear-gradient(135deg, #0E7A4B, #138A5A);
  color: white;
  box-shadow: 0 8px 20px rgba(14,122,75,0.32);
}

.tsu-booking-card {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 32px 80px rgba(15,23,42,0.20), 0 2px 4px rgba(15,23,42,0.04);
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1fr 1fr 1fr auto;
  gap: 8px;
  align-items: stretch;
}

.tsu-booking-field {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color 220ms;
  cursor: pointer;
  min-width: 0;
  text-decoration: none;
}

.tsu-booking-field:hover { border-color: #0E7A4B; }

.tsu-booking-field__icon {
  color: #0E7A4B;
  flex-shrink: 0;
  width: 18px; height: 18px;
}

.tsu-booking-field__text { flex: 1; min-width: 0; }

.tsu-booking-field__label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0E7A4B;
  margin-bottom: 2px;
  display: block;
}

.tsu-booking-field__value {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.tsu-booking-go {
  background: linear-gradient(135deg, #0E7A4B, #138A5A);
  color: white;
  border: none;
  border-radius: 14px;
  padding: 0 24px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 16px 36px rgba(14,122,75,0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  text-decoration: none;
  transition: box-shadow 220ms ease, transform 150ms ease;
}

.tsu-booking-go:hover {
  box-shadow: 0 20px 48px rgba(14,122,75,0.5);
  transform: translateY(-1px);
  color: white;
}


/* ═══════════════════════════════════════════════════════════
   CORPORATE CLIENTS — grayscale logo strip
   ═══════════════════════════════════════════════════════════ */

.tsu-clients {
  padding: 60px 0;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  background: white;
}

.tsu-clients__label {
  text-align: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6B7280;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.tsu-clients__hairline {
  width: 56px; height: 1px;
  background: linear-gradient(90deg, transparent, #C9A861, transparent);
  flex-shrink: 0;
}

.tsu-clients__subline {
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  color: #9CA3AF;
  margin-bottom: 32px;
  font-weight: 500;
}

.tsu-clients__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}

.tsu-clients__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  padding: 0 12px;
  filter: grayscale(1) brightness(0.5);
  opacity: 0.7;
  transition: filter 280ms ease, opacity 280ms ease, transform 280ms ease;
}

.tsu-clients__cell:hover {
  filter: grayscale(0) brightness(1);
  opacity: 1;
  transform: scale(1.05);
}

.tsu-clients__logo {
  max-height: 44px;
  max-width: 160px;
  object-fit: contain;
  display: block;
  width: auto;
  height: auto;
}


/* ═══════════════════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════════════════ */

.tsu-services {
  padding: var(--section-pad-y) 0;
  background: white;
}

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

.tsu-services__headline { max-width: 680px; }
.tsu-services__headline h2 { margin-top: 16px; }
.tsu-services__headline p { margin-top: 16px; }

.tsu-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.tsu-service-tile {
  background: white;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid #E5E7EB;
  transition: transform 240ms cubic-bezier(.22,.61,.36,1), box-shadow 240ms cubic-bezier(.22,.61,.36,1), border-color 240ms ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.tsu-service-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(15,23,42,0.12);
  border-color: #DDF7EA;
}

.tsu-service-tile__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0E7A4B, #138A5A);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 12px 28px rgba(14,122,75,0.28), inset 0 1px 0 rgba(232,201,122,0.4);
  flex-shrink: 0;
}

.tsu-service-tile__icon svg { width: 26px; height: 26px; stroke: white; fill: none; stroke-width: 1.75; }

.tsu-service-tile__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: #111827;
  margin: 0;
}

.tsu-service-tile__desc {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.55;
  color: #4B5563;
  margin: 0;
  flex: 1;
}

.tsu-service-tile__link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: #0E7A4B;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.tsu-service-tile__link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }


/* ═══════════════════════════════════════════════════════════
   FLEET PREVIEW SECTION
   ═══════════════════════════════════════════════════════════ */

.tsu-fleet-section {
  padding: var(--section-pad-y) 0;
  background: var(--bg-soft);
}

.tsu-fleet-section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.tsu-fleet-section__headline { max-width: 640px; }
.tsu-fleet-section__headline h2 { margin-top: 16px; }
.tsu-fleet-section__headline p { margin-top: 16px; }

.tsu-fleet-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
  margin-bottom: 32px;
}

.tsu-fleet-filter {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  background: white;
  color: #111827;
  border: 1px solid #E5E7EB;
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  text-decoration: none;
  transition: all 220ms cubic-bezier(.22,.61,.36,1);
}

.tsu-fleet-filter--active,
.tsu-fleet-filter:hover {
  background: linear-gradient(135deg, #0E7A4B, #138A5A);
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(14,122,75,0.28);
}

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

.tsu-fleet-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  transition: transform 240ms cubic-bezier(.22,.61,.36,1), box-shadow 240ms cubic-bezier(.22,.61,.36,1);
  display: flex;
  flex-direction: column;
}

.tsu-fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(15,23,42,0.14), 0 2px 4px rgba(15,23,42,0.04);
}

.tsu-fleet-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.tsu-fleet-card__body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.tsu-fleet-card__title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.tsu-fleet-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: #111827;
  margin: 0;
}

.tsu-fleet-card__popular {
  background: linear-gradient(135deg, #E8C97A, #C9A861);
  color: #0F172A;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(201,168,97,0.4);
  flex-shrink: 0;
}

.tsu-fleet-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tsu-fleet-card__chip {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  background: #F3F4F6;
  color: #4B5563;
  padding: 5px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.tsu-fleet-card__price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 12px;
  margin-top: auto;
  border-top: 1px solid #F3F4F6;
}

.tsu-fleet-card__from {
  font-family: var(--font-body);
  font-size: 11px;
  color: #C9A861;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tsu-fleet-card__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: #0E7A4B;
  letter-spacing: -0.02em;
  line-height: 1;
}

.tsu-fleet-card__unit {
  font-family: var(--font-body);
  font-size: 11px;
  color: #6B7280;
  margin-top: 2px;
}

.tsu-fleet-card__cta {
  background: transparent;
  color: #0E7A4B;
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 8px 0;
  text-decoration: none;
}

.tsu-fleet-card__cta:hover { color: #065F46; }
.tsu-fleet-card__cta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }


/* ═══════════════════════════════════════════════════════════
   WHY US SECTION
   ═══════════════════════════════════════════════════════════ */

.tsu-why-section {
  padding: var(--section-pad-y) 0;
  background: white;
}

.tsu-why-section__headline { max-width: 720px; margin-bottom: 48px; }
.tsu-why-section__headline h2 { margin-top: 16px; }
.tsu-why-section__headline p { margin-top: 16px; }

.tsu-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.tsu-why-card {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.tsu-why-card:hover {
  border-color: #0E7A4B;
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(15,23,42,0.10);
}

.tsu-why-card__icon-row { display: flex; align-items: center; gap: 12px; }

.tsu-why-card__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: #DDF7EA; color: #0E7A4B;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.tsu-why-card__icon svg { width: 22px; height: 22px; stroke: #0E7A4B; fill: none; stroke-width: 1.75; }

.tsu-why-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: #111827;
  margin: 0;
  letter-spacing: -0.01em;
}

.tsu-why-card__body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: #4B5563;
  margin: 0;
}

/* Dark stats bar */
.tsu-stats-bar {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(135deg, #0F172A 0%, #111827 100%);
  border-radius: 24px;
  padding: 32px 12px;
  color: white;
  border: 1px solid rgba(201,168,97,0.32);
  box-shadow: 0 32px 80px rgba(15,23,42,0.16), 0 0 0 1px rgba(201,168,97,0.06), inset 0 1px 0 rgba(232,201,122,0.18);
  position: relative;
  overflow: hidden;
}

.tsu-stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,168,97,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.tsu-stats-bar__item {
  padding: 8px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  position: relative;
}

.tsu-stats-bar__item:last-child { border-right: none; }

.tsu-stats-bar__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.025em;
  line-height: 1;
  background: linear-gradient(135deg, #E8C97A, #C9A861);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 8px;
}

.tsu-stats-bar__num sup {
  font-size: 20px;
  -webkit-text-fill-color: transparent;
}

.tsu-stats-bar__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}


/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS SECTION — dark luxury
   ═══════════════════════════════════════════════════════════ */

.tsu-testimonials {
  padding: var(--section-pad-y) 0;
  background: var(--bg-dark);
  color: white;
}

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

.tsu-testimonials__headline { max-width: 680px; }
.tsu-testimonials__headline h2 { margin-top: 16px; color: white; }
.tsu-testimonials__headline p { margin-top: 16px; color: rgba(255,255,255,0.72); }

.tsu-testimonials__rating {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  color: #C9A861;
  letter-spacing: -0.02em;
}

.tsu-testimonials__rating-sub {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

.tsu-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.tsu-review-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tsu-review-card--featured {
  background: linear-gradient(180deg, rgba(201,168,97,0.10) 0%, rgba(201,168,97,0.02) 100%);
  border-color: rgba(201,168,97,0.25);
}

.tsu-review-card__stars { color: #C9A861; font-size: 16px; letter-spacing: 4px; }

.tsu-review-card__quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin: 0;
  flex: 1;
}

.tsu-review-card__who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.tsu-review-card__avatar {
  width: 44px; height: 44px; border-radius: 999px;
  background: linear-gradient(135deg, #0E7A4B, #138A5A);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: white; font-size: 15px;
  flex-shrink: 0;
}

.tsu-review-card__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: white;
}

.tsu-review-card__role {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.56);
  margin-top: 2px;
}

.tsu-review-card__google {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════════ */

.tsu-cta-banner {
  padding: 32px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.tsu-cta-banner__card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0F172A 0%, #065F46 60%, #0E7A4B 100%);
  border-radius: 32px;
  padding: 72px 56px;
  color: white;
  box-shadow: 0 32px 80px rgba(14,122,75,0.32);
  border: 1px solid rgba(201,168,97,0.20);
}

.tsu-cta-banner__glow {
  position: absolute;
  top: -30%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,97,0.18) 0%, transparent 60%);
  pointer-events: none;
}

.tsu-cta-banner__content { position: relative; max-width: 720px; }

.tsu-cta-banner__eyebrow {
  color: #E8C97A;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tsu-cta-banner__eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1.5px;
  background: linear-gradient(90deg, #E8C97A, #C9A861);
  box-shadow: 0 0 8px rgba(201,168,97,0.5);
}

.tsu-cta-banner__h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 16px 0 12px;
  text-wrap: balance;
  color: white;
}

.tsu-cta-banner__p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.84);
  margin: 0;
  max-width: 580px;
}

.tsu-cta-banner__row {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.tsu-cta-banner__btn-quote {
  background: white !important;
  color: #0E7A4B !important;
  box-shadow: 0 16px 36px rgba(255,255,255,0.18);
}

.tsu-cta-banner__btn-quote:hover {
  background: #F0FBF5 !important;
  box-shadow: 0 20px 48px rgba(255,255,255,0.24);
  color: #065F46 !important;
}


/* ═══════════════════════════════════════════════════════════
   HERO BODY TEXT
   ═══════════════════════════════════════════════════════════ */

.tsu-home-hero__body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.65;
  color: rgba(255,255,255,0.80);
  max-width: 640px;
  margin: 0 0 28px;
}

/* ═══════════════════════════════════════════════════════════
   WHAT SETS US APART — reuses why-section base styles
   ═══════════════════════════════════════════════════════════ */

.tsu-apart-section {
  padding-block: var(--section-pad-y);
  background: var(--bg-soft);
}

/* ═══════════════════════════════════════════════════════════
   HOW TO BOOK — STEPS
   ═══════════════════════════════════════════════════════════ */

.tsu-steps-section {
  padding-block: var(--section-pad-y);
  background: var(--bg-dark);
  color: white;
}
.tsu-steps-section__headline { max-width: 680px; margin-bottom: 48px; }
.tsu-steps-section__headline h2 { color: white; margin-top: 12px; }

.tsu-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tsu-step-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  transition: background var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.tsu-step-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(14,122,75,0.4);
}
.tsu-step-card__num {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--grad-primary);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  box-shadow: var(--shadow-brand);
  flex-shrink: 0;
}
.tsu-step-card__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
  line-height: 1.3;
}
.tsu-step-card__body {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   WHO USES — DETAIL CARDS
   ═══════════════════════════════════════════════════════════ */

.tsu-whousesit-section {
  padding-block: var(--section-pad-y);
  background: var(--bg-white);
}
.tsu-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.tsu-detail-card {
  background: var(--bg-soft);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 24px;
  transition: box-shadow var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.tsu-detail-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
  border-color: var(--brand-emerald-200);
}
.tsu-detail-card__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg-1);
  margin-bottom: 8px;
}
.tsu-detail-card__body {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   PRICING SECTION
   ═══════════════════════════════════════════════════════════ */

.tsu-pricing-section {
  padding-block: var(--section-pad-y);
  background: var(--bg-soft);
}
.tsu-pricing-section__headline { max-width: 640px; }
.tsu-pricing-body {
  max-width: 800px;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tsu-pricing-body p {
  color: var(--fg-2);
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
}

/* ═══════════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════════ */

.tsu-faqs-section {
  padding-block: var(--section-pad-y);
  background: var(--bg-white);
}
.tsu-faqs-section__headline { max-width: 680px; margin-bottom: 40px; }
.tsu-faqs-section__headline h2 { margin-top: 12px; }

.tsu-faq-list {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tsu-faq-item {
  background: var(--bg-soft);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease-out);
}
.tsu-faq-item:hover { border-color: var(--brand-emerald); }
.tsu-faq-item[open] { border-color: var(--brand-emerald); }
.tsu-faq-item summary {
  padding: 18px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--fg-1);
}
.tsu-faq-item summary::-webkit-details-marker { display: none; }
.tsu-faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--brand-emerald);
  flex-shrink: 0;
}
.tsu-faq-item[open] summary::after { content: '\2212'; }
.tsu-faq-body {
  padding: 0 24px 18px;
  color: var(--fg-2);
  font-size: 15px;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE LAYOUT OVERRIDES
   ═══════════════════════════════════════════════════════════ */

.tsu-main--home { padding-top: 0; }
.tsu-main--home > .wp-block-post-content > * { max-width: none !important; }


/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .tsu-booking-card { grid-template-columns: 1fr 1fr; }
  .tsu-booking-card .tsu-booking-go { grid-column: 1 / -1; padding: 14px; }
  .tsu-stats-bar { grid-template-columns: repeat(2, 1fr); }
  .tsu-stats-bar__item:nth-child(2) { border-right: none; }
  .tsu-stats-bar__item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.08); }
  .tsu-steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .tsu-home-hero { min-height: auto; padding: 140px 0 72px; }
  .tsu-booking-wrap { margin: -40px auto 0; }
  .tsu-clients__row { grid-template-columns: repeat(2, 1fr); }
  .tsu-cta-banner__card { padding: 48px 32px; }
}

@media (max-width: 640px) {
  .tsu-home-hero { padding: 120px 0 60px; }
  .tsu-home-hero__inner { gap: 0; }
  .tsu-home-hero__eyebrow { font-size: 10px; padding: 6px 12px; margin-bottom: 16px; }
  .tsu-home-hero__cta { gap: 10px; margin-bottom: 24px; }
  .tsu-home-hero__trust { gap: 8px; }
  .tsu-booking-wrap { margin: 0; padding: 16px; }
  .tsu-booking-card { grid-template-columns: 1fr; border-radius: 20px; }
  .tsu-booking-tabs { width: 100%; overflow-x: auto; }
  .tsu-services__header,
  .tsu-fleet-section__header { flex-direction: column; align-items: flex-start; }
  .tsu-stats-bar { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .tsu-stats-bar__item:nth-child(2n) { border-right: none; }
  .tsu-stats-bar__item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .tsu-testimonials__grid { grid-template-columns: 1fr; }
  .tsu-cta-banner { padding: 16px; }
  .tsu-cta-banner__card { padding: 40px 24px; border-radius: 24px; }
  .tsu-page-hero { padding: 120px 16px 48px; }
  .tsu-cards { grid-template-columns: 1fr; }
  .tsu-reviews-grid { grid-template-columns: 1fr; }
  .tsu-steps-grid { grid-template-columns: 1fr; }
  .tsu-detail-grid { grid-template-columns: 1fr; }
  .tsu-home-hero__body { font-size: 14px; }
}
