/* Tamizha Taxi — Ridek-inspired online taxi booking theme */
:root {
  --tt-primary: #FBCB0A;
  --tt-primary-dark: #e5b809;
  --tt-primary-soft: #fff4d6;
  --tt-dark: #111827;
  --tt-dark-soft: #1f2937;
  --tt-text: #374151;
  --tt-muted: #6b7280;
  --tt-white: #ffffff;
  --tt-bg: #f5f7fb;
  --tt-border: #e5e7eb;
  --tt-radius: 12px;
  --tt-radius-lg: 20px;
  --tt-shadow: 0 18px 50px rgba(17, 24, 39, 0.12);
  --tt-font: 'DM Sans', system-ui, sans-serif;
  --tt-display: 'Outfit', system-ui, sans-serif;

  /* Shared booking form tokens (default partial) */
  --gold: var(--tt-primary);
  --gold-light: #ffd054;
  --gold-pale: var(--tt-primary-soft);
  --gold-border: rgba(255, 180, 0, 0.45);
  --navy: var(--tt-dark);
  --white: var(--tt-white);
  --off-white: var(--tt-bg);
  --border: var(--tt-border);
  --text-soft: var(--tt-muted);
  --radius: var(--tt-radius);
  --radius-lg: var(--tt-radius-lg);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: var(--tt-shadow);
  --shadow-lg: 0 24px 60px rgba(17,24,39,0.16);
  --transition: 0.2s ease;
  --font-body: var(--tt-font);
  --font-display: var(--tt-display);

  /* vehicle_select.php compatibility */
  --g2-lime: var(--tt-primary);
  --g2-lime-dark: var(--tt-primary-dark);
  --g2-lime-soft: var(--tt-primary-soft);
  --g2-yellow: var(--tt-primary);
  --g2-yellow-dark: var(--tt-primary-dark);
  --g2-yellow-soft: var(--tt-primary-soft);
  --g2-navy: var(--tt-dark);
  --g2-text: var(--tt-text);
  --g2-muted: var(--tt-muted);
  --g2-white: var(--tt-white);
  --g2-bg: var(--tt-bg);
  --g2-border: var(--tt-border);
  --g2-radius: var(--tt-radius);
  --g2-radius-lg: var(--tt-radius-lg);
  --g2-shadow: var(--tt-shadow);
  --g2-font: var(--tt-font);
  --g2-display: var(--tt-display);
  --g2-booking-shell: #fff8e6;
  --g2-booking-purple: var(--tt-primary-dark);
  --g2-booking-purple-deep: #c88700;
  --g2-booking-purple-soft: var(--tt-primary-soft);
  --g2-booking-purple-muted: #d4a017;
  --g2-booking-shell-border: rgba(255, 180, 0, 0.2);
  --g2-booking-badge-bg: var(--tt-primary-soft);
  --g2-booking-tabs-bg: #fff8e6;
  --g2-booking-body: #ffffff;
  --g2-booking-body-border: rgba(255, 180, 0, 0.15);
  --g2-booking-input-bg: #ffffff;
  --g2-booking-input-hover: #fffdf8;
  --g2-booking-input-text: #111827;
  --g2-booking-input-border: #e5e7eb;
  --g2-booking-input-placeholder: #b45309;
  --g2-booking-text: #78350f;
  --g2-booking-muted: #92400e;
  --g2-booking-label: #b45309;
  --g2-booking-focus: rgba(255, 180, 0, 0.25);
  --g2-booking-active: linear-gradient(135deg, #ffc233 0%, #ffb400 55%, #e69f00 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.tt-body {
  font-family: var(--tt-font);
  color: var(--tt-text);
  background: var(--tt-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, 92vw); margin: 0 auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 50px; font-weight: 700; font-size: 14px;
  border: none; cursor: pointer; transition: var(--transition); font-family: inherit;
}
.btn-primary, .btn-gold {
  background: var(--tt-primary); color: var(--tt-dark);
  box-shadow: 0 8px 24px rgba(255, 180, 0, 0.35);
}
.btn-primary:hover, .btn-gold:hover {
  background: var(--tt-primary-dark); transform: translateY(-1px);
}
.btn-outline {
  background: transparent; border: 2px solid var(--tt-dark); color: var(--tt-dark);
}
.btn-outline:hover { background: var(--tt-dark); color: var(--tt-white); }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-white { background: var(--tt-white); color: var(--tt-dark); border: 1px solid var(--tt-border); }

/* Top bar */
.tt-topbar {
  background: var(--tt-dark);
  color: rgba(255,255,255,0.82);
  font-size: 13px;
}
.tt-topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 10px 0; flex-wrap: wrap;
}
.tt-topbar a { color: var(--tt-primary); font-weight: 700; }
.tt-topbar span { display: inline-flex; align-items: center; gap: 8px; }

/* Header */
.tt-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--tt-border);
}
.tt-header.scrolled { box-shadow: var(--shadow-sm); }
.tt-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 14px 0;
}
.tt-nav { display: flex; align-items: center; gap: 4px; }
.tt-nav a {
  padding: 8px 14px; font-size: 14px; font-weight: 600; color: var(--tt-text);
  border-radius: 50px; transition: var(--transition);
}
.tt-nav a:hover, .tt-nav a.active {
  background: var(--tt-primary-soft); color: var(--tt-dark);
}
.tt-header__cta { display: flex; align-items: center; gap: 12px; }
.tt-header__call {
  font-size: 13px; font-weight: 700; color: var(--tt-dark);
  display: inline-flex; align-items: center; gap: 6px;
}
.tt-header__call i { color: var(--tt-primary-dark); }
.tt-menu-btn {
  display: none; width: 42px; height: 42px; border: 1px solid var(--tt-border);
  border-radius: 10px; background: var(--tt-white); font-size: 18px; cursor: pointer;
}
.tt-mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: var(--tt-white); padding: 24px; flex-direction: column; gap: 8px;
}
.tt-mobile-nav.open { display: flex; }
.tt-mobile-nav__close {
  align-self: flex-end; width: 42px; height: 42px; border: 1px solid var(--tt-border);
  border-radius: 10px; background: var(--tt-white); font-size: 18px; cursor: pointer; margin-bottom: 8px;
}
.tt-mobile-nav a {
  padding: 14px; font-weight: 600; border-bottom: 1px solid var(--tt-border);
}

/* Logo — full Tamizha Taxi brand mark (header + footer) */
.tt-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.tt-logo__img {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}
.tt-logo--header .tt-logo__img {
  height: clamp(52px, 7.5vw, 74px);
  max-width: min(320px, 48vw);
}
.tt-logo--footer .tt-logo__img {
  height: clamp(88px, 12vw, 120px);
  max-width: min(300px, 90vw);
  margin-bottom: 14px;
}

.tt-logo__mark {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--tt-primary), #ffd054);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--tt-dark);
  box-shadow: 0 8px 20px rgba(255, 180, 0, 0.35);
}
.tt-logo__text {
  font-family: var(--tt-display); font-size: 20px; line-height: 1.1;
}
.tt-logo__text em { font-style: normal; color: var(--tt-primary-dark); }
.tt-logo__text small {
  display: block; font-size: 10px; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--tt-muted); font-family: var(--tt-font);
}

/* ===== HERO (Ridek-style) ===== */
.tt-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(115deg, #0f172a 0%, #1e293b 42%, #334155 100%);
  padding: 48px 0 72px;
  min-height: 620px;
}
.tt-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 55%, rgba(255, 180, 0, 0.22) 0%, transparent 42%),
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 35%);
  pointer-events: none;
}
.tt-hero__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: 40px; align-items: center;
}
.tt-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 180, 0, 0.15); border: 1px solid rgba(255, 180, 0, 0.35);
  color: var(--tt-primary); font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 8px 14px; border-radius: 50px; margin-bottom: 18px;
}
.tt-hero__content h1 {
  font-family: var(--tt-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800; line-height: 1.12; color: #fff; margin-bottom: 16px;
}
.tt-hero__content h1 span { color: var(--tt-primary); }
.tt-hero__lead {
  color: rgba(255,255,255,0.78); font-size: 16px; max-width: 520px; margin-bottom: 22px;
}
.tt-hero__checks {
  list-style: none; display: grid; gap: 10px; margin-bottom: 24px;
}
.tt-hero__checks li {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.88); font-size: 14px; font-weight: 600;
}
.tt-hero__checks i { color: var(--tt-primary); }
.tt-hero__stats {
  display: flex; flex-wrap: wrap; gap: 22px;
}
.tt-hero__stats div strong {
  display: block; font-family: var(--tt-display); font-size: 1.6rem;
  color: var(--tt-primary); line-height: 1;
}
.tt-hero__stats div span { font-size: 12px; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.5px; }

.tt-hero__form-wrap {
  position: relative; z-index: 3;
}
.tt-hero__form-card {
  background: var(--tt-white);
  border-radius: var(--tt-radius-lg);
  box-shadow: 0 28px 70px rgba(0,0,0,0.28);
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.08);
}
.tt-hero__form-head {
  padding: 16px 18px 8px;
  border-bottom: 1px solid var(--tt-border);
  margin-bottom: 4px;
}
.tt-hero__form-head h2 {
  font-family: var(--tt-display); font-size: 1.25rem; font-weight: 800; color: var(--tt-dark);
}
.tt-hero__form-head p { font-size: 13px; color: var(--tt-muted); margin-top: 4px; }

.tt-hero__car {
  position: absolute; right: -2%; bottom: 0; width: min(46vw, 520px);
  pointer-events: none; z-index: 1; opacity: 0.95;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.35));
}
.tt-hero__car img { width: 100%; height: auto; }

/* Booking form inside hero — tighten default partial spacing */
.tt-hero__form-card .booking-shell { margin: 0; box-shadow: none; border: none; }
.tt-hero__form-card .booking-tabs { border-radius: var(--tt-radius) var(--tt-radius) 0 0; }

/* Sections */
.tt-section { padding: 72px 0; }
.tt-section--soft { background: var(--tt-bg); }
.tt-section__eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--tt-primary-dark); margin-bottom: 10px;
}
.tt-section__title {
  font-family: var(--tt-display); font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800; color: var(--tt-dark); margin-bottom: 12px;
}
.tt-section__title--center { text-align: center; }
.tt-section__lead {
  color: var(--tt-muted); max-width: 640px; font-size: 16px;
}
.tt-section__lead--center { text-align: center; margin: 0 auto 36px; }

.tt-grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.tt-grid-2 {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.tt-card {
  background: var(--tt-white); border: 1px solid var(--tt-border);
  border-radius: var(--tt-radius-lg); padding: 28px 24px;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.tt-card:hover {
  transform: translateY(-4px); box-shadow: var(--tt-shadow);
  border-color: rgba(255, 180, 0, 0.35);
}
.tt-card__icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--tt-primary-soft); color: var(--tt-primary-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.tt-card h3 { font-family: var(--tt-display); font-size: 1.15rem; font-weight: 700; color: var(--tt-dark); margin-bottom: 8px; }
.tt-card p { font-size: 14px; color: var(--tt-muted); }

/* Page hero (inner pages) */
.tt-page-hero {
  background: linear-gradient(135deg, var(--tt-primary-soft) 0%, var(--tt-white) 60%);
  padding: 120px 0 56px; position: relative; overflow: hidden;
}
.tt-page-hero::after {
  content: ''; position: absolute; right: -60px; top: 0; width: 240px; height: 100%;
  background: var(--tt-primary); opacity: 0.12; transform: skewX(-8deg);
}
.tt-page-hero h1 {
  font-family: var(--tt-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--tt-dark); margin-bottom: 12px; position: relative; z-index: 1;
}
.tt-page-hero p { color: var(--tt-muted); max-width: 640px; font-size: 16px; position: relative; z-index: 1; }
.tt-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--tt-white); border: 1px solid var(--tt-border);
  padding: 6px 12px; border-radius: 50px; font-size: 12px; font-weight: 700;
  color: var(--tt-primary-dark); margin-bottom: 14px; position: relative; z-index: 1;
}
.tt-breadcrumb {
  display: flex; align-items: center; gap: 8px; font-size: 13px;
  color: var(--tt-muted); margin-top: 16px; position: relative; z-index: 1;
}
.tt-breadcrumb a:hover { color: var(--tt-primary-dark); }
.tt-breadcrumb .current { color: var(--tt-dark); font-weight: 600; }

.tt-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.tt-prose h2 { font-family: var(--tt-display); font-size: 1.8rem; font-weight: 800; color: var(--tt-dark); margin-bottom: 14px; }
.tt-prose p { color: var(--tt-muted); margin-bottom: 14px; }
.tt-check-list { list-style: none; margin-top: 16px; }
.tt-check-list li {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px;
  font-size: 14px; color: var(--tt-text);
}
.tt-check-list i { color: var(--tt-primary-dark); margin-top: 3px; }

.tt-stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.tt-stat {
  text-align: center; background: var(--tt-white); border: 1px solid var(--tt-border);
  border-radius: var(--tt-radius-lg); padding: 24px 16px;
}
.tt-stat strong { display: block; font-family: var(--tt-display); font-size: 2rem; color: var(--tt-primary-dark); }
.tt-stat span { font-size: 13px; color: var(--tt-muted); }

.tt-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tt-step {
  text-align: center; padding: 28px 20px; background: var(--tt-white);
  border: 1px solid var(--tt-border); border-radius: var(--tt-radius-lg);
}
.tt-step-num {
  width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 14px;
  background: var(--tt-primary); color: var(--tt-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
}
.tt-step h3 { font-family: var(--tt-display); font-size: 1.05rem; margin-bottom: 8px; color: var(--tt-dark); }
.tt-step p { font-size: 14px; color: var(--tt-muted); }

.tt-fleet-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px;
}
.tt-fleet-card {
  background: var(--tt-white); border: 1px solid var(--tt-border);
  border-radius: var(--tt-radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
}
.tt-fleet-card img { width: 100%; height: 180px; object-fit: cover; }
.tt-fleet-card__body { padding: 20px; }
.tt-fleet-card h3 { font-family: var(--tt-display); font-size: 1.1rem; margin-bottom: 6px; color: var(--tt-dark); }
.tt-fleet-card p { font-size: 13px; color: var(--tt-muted); margin-bottom: 14px; }

.tt-contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tt-contact-cards .tt-card { text-align: center; }
.tt-contact-cards a { color: var(--tt-primary-dark); font-weight: 700; }
.tt-contact-card {
  display: block;
  height: 100%;
  padding: 28px 22px;
  transition: var(--transition);
}
.tt-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tt-shadow);
  border-color: rgba(255, 180, 0, 0.35);
}
.tt-contact-card__icon {
  margin: 0 auto 16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 180, 0, 0.12);
  color: var(--tt-primary-dark);
  font-size: 22px;
}
.tt-contact-card__icon--whatsapp {
  background: rgba(37, 211, 102, 0.14);
  color: #128C7E;
}
.tt-contact-card--whatsapp:hover { border-color: rgba(37, 211, 102, 0.35); }
.tt-contact-card h3 {
  font-family: var(--tt-display);
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--tt-dark);
}
.tt-contact-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  word-break: break-word;
}
.tt-contact-card__address { font-size: 14px !important; line-height: 1.6 !important; }
.tt-contact-card__hint {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--tt-muted);
}
.tt-contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: stretch;
}
.tt-contact-panel__info h2 {
  font-family: var(--tt-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 12px 0 20px;
  color: var(--tt-dark);
}
.tt-contact-panel__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.tt-contact-panel__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.tt-contact-panel__list i {
  width: 20px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--tt-primary-dark);
  font-size: 18px;
  text-align: center;
}
.tt-contact-panel__list strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tt-muted);
  margin-bottom: 4px;
}
.tt-contact-panel__list a {
  color: var(--tt-dark);
  font-weight: 700;
  line-height: 1.5;
}
.tt-contact-panel__list a:hover { color: var(--tt-primary-dark); }
.tt-contact-panel__cta { margin: 0; height: 100%; flex-direction: column; align-items: flex-start; }
.tt-contact-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.tt-btn-whatsapp {
  border-color: rgba(255,255,255,0.35) !important;
  color: #fff !important;
}
.tt-btn-whatsapp:hover {
  background: #25D366 !important;
  border-color: #25D366 !important;
  color: #fff !important;
}

.tt-blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px;
}
.tt-blog-card {
  display: block; background: var(--tt-white); border: 1px solid var(--tt-border);
  border-radius: var(--tt-radius-lg); padding: 24px; transition: var(--transition);
}
.tt-blog-card:hover {
  border-color: rgba(255, 180, 0, 0.4); box-shadow: var(--tt-shadow); transform: translateY(-3px);
}
.tt-blog-card h2 { font-family: var(--tt-display); font-size: 1.15rem; margin: 10px 0 8px; color: var(--tt-dark); }

.tt-faq-item {
  background: var(--tt-white); border: 1px solid var(--tt-border);
  border-radius: var(--tt-radius); padding: 20px 22px; margin-bottom: 12px;
}
.tt-faq-item h3 { font-size: 1rem; font-weight: 700; color: var(--tt-dark); margin-bottom: 8px; }
.tt-faq-item p { font-size: 14px; color: var(--tt-muted); }

.tt-legal-card {
  background: var(--tt-white); border: 1px solid var(--tt-border);
  border-radius: var(--tt-radius-lg); padding: 32px; box-shadow: var(--shadow-sm);
}
.tt-legal-card h2 { font-family: var(--tt-display); font-size: 1.25rem; margin: 24px 0 10px; color: var(--tt-dark); }
.tt-legal-card h2:first-child { margin-top: 0; }
.tt-legal-card p, .tt-legal-card li { font-size: 14px; color: var(--tt-muted); margin-bottom: 10px; }
.tt-legal-card ul { padding-left: 20px; }

.tt-cta-band {
  background: linear-gradient(135deg, var(--tt-dark) 0%, #1f2937 100%);
  border-radius: var(--tt-radius-lg); padding: 48px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.tt-cta-band h2 { font-family: var(--tt-display); color: #fff; font-size: 1.8rem; margin-bottom: 8px; }
.tt-cta-band p { color: rgba(255,255,255,0.75); max-width: 520px; }

/* ===== FOOTER — Taxiar-style ===== */
.tt-footer--taxiar {
  background: #0f0f0f;
  color: rgba(255, 255, 255, 0.72);
  padding: 0;
  margin-top: 0;
}

.tt-footer-topbar {
  display: flex;
  width: 100%;
  min-height: 96px;
}
.tt-footer-topbar__seg {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px 28px;
  position: relative;
}
.tt-footer-topbar__seg--left,
.tt-footer-topbar__seg--right {
  background-color: #1c1c1c;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 7px,
    rgba(255, 255, 255, 0.04) 7px,
    rgba(255, 255, 255, 0.04) 8px
  );
}
.tt-footer-topbar__seg--left {
  clip-path: polygon(0 0, 100% 0, calc(100% - 28px) 100%, 0 100%);
  padding-right: 44px;
}
.tt-footer-topbar__seg--mid {
  flex: 1.08;
  background: var(--tt-primary);
  color: #111;
  clip-path: polygon(28px 0, calc(100% - 28px) 0, 100% 100%, 0 100%);
  margin: 0 -14px;
  z-index: 2;
}
.tt-footer-topbar__seg--right {
  clip-path: polygon(28px 0, 100% 0, 100% 100%, 0 100%);
  padding-left: 44px;
}
.tt-footer-topbar__icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  flex: 0 0 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  line-height: 1;
  font-size: 18px;
}
.tt-footer-topbar__icon i {
  display: block;
  line-height: 1;
  font-size: inherit;
}
.tt-footer-topbar__icon--gold {
  background: var(--tt-primary);
  color: #111;
}
.tt-footer-topbar__icon--dark {
  background: #111;
  color: #fff;
}
.tt-footer-topbar__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.tt-footer-topbar__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--tt-primary);
  letter-spacing: 0.02em;
}
.tt-footer-topbar__label--dark { color: #111; }
.tt-footer-topbar__text a,
.tt-footer-topbar__text > span {
  font-family: var(--tt-display);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  word-break: break-word;
}
.tt-footer-topbar__seg--mid .tt-footer-topbar__text a,
.tt-footer-topbar__seg--mid .tt-footer-topbar__text > span { color: #111; }
.tt-footer-topbar__text a:hover { opacity: 0.85; }
.tt-footer-topbar__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #111 !important;
  opacity: 0.92;
}
.tt-footer-topbar__whatsapp:hover { opacity: 1; }
.tt-footer-topbar__whatsapp i { color: #128C7E; }

.tt-footer-main {
  padding: 52px 0 48px;
  background: #0f0f0f;
}
.tt-footer-main__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 1.15fr;
  gap: 40px 48px;
  align-items: start;
}
.tt-footer-dev {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 0;
  padding-top: 6px;
  padding-left: 10px;
  text-decoration: none;
  max-width: 100%;
  transition: opacity 0.2s ease;
  grid-column: 2;
  grid-row: 2;
  align-self: start;
}
.tt-footer-col-title {
  font-family: var(--tt-display);
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.2;
}
.tt-footer-col-title::after {
  content: '';
  display: block;
  width: 100%;
  max-width: 140px;
  height: 2px;
  margin: 12px 0 22px;
  background: repeating-linear-gradient(
    90deg,
    var(--tt-primary) 0,
    var(--tt-primary) 32px,
    transparent 32px,
    transparent 38px
  );
}
.tt-footer-about .tt-logo--footer { margin-bottom: 16px; }
.tt-footer-about .tt-logo--footer .tt-logo__img {
  height: clamp(72px, 10vw, 96px);
  max-width: 260px;
  margin-bottom: 0;
  filter: brightness(1.05);
}
.tt-footer-about p {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 22px;
  max-width: 340px;
}
.tt-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tt-footer__socials a {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1;
  margin: 0;
  transition: var(--transition);
}
.tt-footer__socials a i {
  display: block;
  line-height: 1;
  font-size: inherit;
}
.tt-footer__socials a:hover {
  border-color: var(--tt-primary);
  color: var(--tt-primary);
}
.tt-footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tt-footer-links li { margin-bottom: 12px; }
.tt-footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
  transition: var(--transition);
}
.tt-footer-links a i {
  color: var(--tt-primary);
  font-size: 11px;
  width: 14px;
  flex-shrink: 0;
}
.tt-footer-links a:hover { color: var(--tt-primary); }

.tt-footer-dev:hover { opacity: 0.92; }
.tt-footer-dev__art {
  flex-shrink: 0;
  width: 100px;
  height: 76px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 0;
}
.tt-footer-dev__art img {
  display: block;
  height: 76px;
  width: auto;
  max-width: none;
  object-fit: cover;
  object-position: left center;
}
.tt-footer-dev__copy {
  font-family: var(--tt-font);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.01em;
}
.tt-footer-dev__copy strong {
  font-family: var(--tt-display);
  font-weight: 800;
  color: #ffd54a;
  letter-spacing: 0.02em;
}
.tt-footer-dev:hover .tt-footer-dev__copy strong {
  color: var(--tt-primary);
}

.tt-footer-contact__block { margin-bottom: 22px; }
.tt-footer-contact__block:last-child { margin-bottom: 0; }
.tt-footer-contact__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tt-primary);
  margin-bottom: 8px;
}
.tt-footer-contact__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--tt-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin: 0;
  word-break: break-word;
  transition: var(--transition);
}
.tt-footer-contact__item i {
  color: var(--tt-primary);
  font-size: 16px;
  width: 18px;
  flex-shrink: 0;
  line-height: 1;
  text-align: center;
}
.tt-footer-contact__item:hover { color: var(--tt-primary); }
.tt-footer-contact__item--static { cursor: default; }

.tt-footer-copy {
  background: var(--tt-primary);
  padding: 18px 24px;
  text-align: center;
}
.tt-footer-copy p {
  margin: 0;
  font-family: var(--tt-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;
}

.tt-fab-stack {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.tt-call-fab,
.tt-whatsapp-fab {
  position: static;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tt-book-fab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
  color: #fff;
  font-family: var(--tt-display);
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.12;
  border: 2px solid #fff;
  box-shadow: 0 10px 28px rgba(229, 57, 53, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.tt-book-fab span {
  display: block;
}
.tt-call-fab:hover,
.tt-whatsapp-fab:hover,
.tt-book-fab:hover {
  transform: translateY(-2px);
}
.tt-book-fab:hover {
  background: linear-gradient(135deg, #ef5350 0%, #e53935 100%);
  box-shadow: 0 12px 32px rgba(229, 57, 53, 0.55);
  color: #fff;
}
.tt-call-fab {
  background: var(--tt-primary);
  color: var(--tt-dark);
  font-size: 22px;
  box-shadow: 0 10px 28px rgba(255, 180, 0, 0.45);
  border: 2px solid var(--tt-dark);
}
.tt-whatsapp-fab {
  background: #25D366;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  border: 2px solid #128C7E;
}

/* Responsive */
@media (max-width: 1024px) {
  .tt-hero__grid { grid-template-columns: 1fr; gap: 28px; }
  .tt-hero__car { position: relative; right: auto; width: min(420px, 90vw); margin: 0 auto -20px; opacity: 0.85; }
  .tt-hero { min-height: auto; padding-bottom: 48px; }
  .tt-grid-3, .tt-steps, .tt-contact-cards { grid-template-columns: 1fr 1fr; }
  .tt-contact-panel { grid-template-columns: 1fr; }
  .tt-stats-row { grid-template-columns: repeat(2, 1fr); }
  .tt-split { grid-template-columns: 1fr; }
  .tt-footer-main__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .tt-nav, .tt-header__call { display: none; }
  .tt-nav-taxiar { display: none; }
  .tt-menu-btn-taxiar { display: inline-flex !important; align-items: center; justify-content: center; }
  .tt-grid-3, .tt-grid-2, .tt-steps, .tt-contact-cards, .tt-stats-row { grid-template-columns: 1fr; }
  .tt-footer-main__grid { grid-template-columns: 1fr; }
  .tt-footer-dev {
    grid-column: auto;
    grid-row: auto;
    margin-top: 24px;
    padding-left: 0;
    gap: 14px;
  }
  .tt-footer-dev__art {
    width: 84px;
    height: 64px;
  }
  .tt-footer-dev__art img {
    height: 64px;
  }
  .tt-footer-dev__copy {
    font-size: 14px;
  }
  .tt-footer-topbar { flex-direction: column; min-height: 0; }
  .tt-footer-topbar__seg {
    clip-path: none !important;
    margin: 0 !important;
    padding: 20px 24px;
    justify-content: flex-start;
  }
  .tt-footer-topbar__seg--mid { order: -1; }
  .tt-footer-about p { max-width: none; }
  .tt-cta-band { padding: 32px 24px; }
  body.tt-body { padding-bottom: 0; }
  .tt-footer-copy {
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }
  .tt-services-split__bg-dark { flex: 0 0 38%; min-height: 280px; }
  .tt-services-split__head { margin-bottom: 36px; }
  .tt-vehicle-showcase__grid { grid-template-columns: 1fr; }
}

/* ===== TAXIAR-STYLE HEADER (diagonal split) ===== */
.tt-body--home { padding-top: 0; }
.tt-header--taxiar {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: var(--tt-primary);
  border-bottom: none;
  box-shadow: none;
  backdrop-filter: none;
}
.tt-header--taxiar.scrolled {
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}
.tt-header-taxiar {
  position: relative;
  min-height: 82px;
  display: flex;
  align-items: stretch;
}
.tt-header-taxiar__white {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  z-index: 2;
  background-color: #fff;
  background-image:
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 8px,
      rgba(0,0,0,0.035) 8px,
      rgba(0,0,0,0.035) 9px
    );
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
}
.tt-header-taxiar__yellow {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 max(24px, 4vw) 0 42%;
  background: var(--tt-primary);
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
}
.tt-header-taxiar__logo {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  padding-left: max(16px, 3vw);
  max-width: min(52vw, 340px);
}
.tt-nav-taxiar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 2px 4px;
}
.tt-nav-taxiar a {
  padding: 10px 14px;
  font-family: var(--tt-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;
  transition: var(--transition);
  white-space: nowrap;
}
.tt-nav-taxiar a:hover,
.tt-nav-taxiar a.active {
  color: #000;
  opacity: 0.75;
}
.tt-menu-btn-taxiar {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: 12px;
  border: 2px solid #111;
  border-radius: 4px;
  background: transparent;
  color: #111;
  font-size: 18px;
  cursor: pointer;
  flex-shrink: 0;
}
.tt-mobile-nav--taxiar {
  background: var(--tt-primary);
}
.tt-mobile-nav--taxiar a {
  color: #111;
  border-color: rgba(0,0,0,0.1);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.tt-mobile-nav--taxiar .tt-mobile-nav__close {
  background: #111;
  border-color: #111;
  color: var(--tt-primary);
}

.btn-dark {
  background: var(--tt-dark);
  color: #fff;
  border-radius: 4px;
  padding: 14px 28px;
}
.btn-dark:hover { background: #000; transform: translateY(-1px); }

/* ===== TAXIAR-STYLE HERO BANNER ===== */
.tt-hero-taxiar {
  position: relative;
  min-height: clamp(720px, 94vh, 960px);
  overflow: hidden;
  margin-top: -1px;
  display: flex;
  flex-direction: column;
}
.tt-hero-taxiar__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.tt-hero-taxiar__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.1s ease, transform 8s ease;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.tt-hero-taxiar__slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.tt-hero-taxiar__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(108deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.78) 34%, rgba(0,0,0,0.45) 62%, rgba(0,0,0,0.2) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.18) 0%, transparent 36%, rgba(0,0,0,0.38) 100%);
  pointer-events: none;
}
.tt-hero-taxiar__layout {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 44px 0 36px;
  min-height: clamp(720px, 94vh, 960px);
}
.tt-hero-taxiar__content {
  max-width: 720px;
  padding: 0;
}
.tt-hero-taxiar__eyebrow {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.tt-hero-taxiar__title {
  font-family: var(--tt-display);
  font-size: clamp(34px, 5.5vw, 58px);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.tt-slant-highlight {
  display: inline-block;
  transform: skewX(-12deg);
  background: #fff;
  padding: 4px 18px;
  margin: 0 6px;
  vertical-align: middle;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.tt-slant-highlight__inner {
  display: inline-block;
  transform: skewX(12deg);
  color: #111;
  font-weight: 900;
}
.tt-hero-taxiar__lead {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin-bottom: 32px;
}
.tt-hero-taxiar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Slanted parallelogram buttons */
.tt-btn-slant {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  padding: 16px 28px;
  transform: skewX(-12deg);
  font-family: var(--tt-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: var(--transition);
  border: 2px solid transparent;
}
.tt-btn-slant span {
  display: inline-block;
  transform: skewX(12deg);
}
.tt-btn-slant--fill {
  background: var(--tt-primary);
  color: #111;
  border-color: var(--tt-primary);
  box-shadow: 0 8px 24px rgba(251, 203, 10, 0.35);
}
.tt-btn-slant--fill:hover {
  background: var(--tt-primary-dark);
  transform: skewX(-12deg) translateY(-2px);
}
.tt-btn-slant--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.85);
}
.tt-btn-slant--outline:hover {
  background: rgba(255,255,255,0.12);
  transform: skewX(-12deg) translateY(-2px);
}

/* Vertical slider dots (right edge) */
.tt-hero-taxiar__vdots {
  position: absolute;
  right: max(20px, 3vw);
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tt-vdot {
  width: 14px;
  height: 14px;
  padding: 0;
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.tt-vdot.is-active {
  border-color: #fff;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.25);
}

.tt-hero-taxiar__booking {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  flex-shrink: 0;
}
.tt-hero-taxiar__booking .hero-booking-panel {
  max-width: 100%;
  margin: 0 auto;
}
.tt-hero-taxiar__booking .booking-lift {
  margin-top: 0;
  align-items: stretch;
  width: 100%;
}
.tt-hero-taxiar__booking .booking-card {
  --bf-gold: var(--tt-primary);
  --bf-gold-light: #ffd054;
  --bf-gold-pale: rgba(251, 203, 10, 0.12);
  --bf-action-gradient: linear-gradient(135deg, #ffd633, var(--tt-primary));
  --bf-action-shadow: 0 4px 20px rgba(251, 203, 10, 0.4);
  border-top-color: var(--tt-primary);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}
.tt-hero-taxiar__booking .booking-tabs button.active {
  background: var(--tt-primary) !important;
  color: #111 !important;
}
.tt-hero-taxiar__booking .booking-submit-btn {
  background: var(--tt-primary) !important;
  color: #111 !important;
  font-weight: 800 !important;
}

@media (max-width: 768px) {
  .tt-hero-taxiar {
    min-height: auto;
  }
  .tt-hero-taxiar__layout {
    min-height: auto;
    padding: 20px 0 28px;
    gap: 20px;
    justify-content: flex-start;
  }
  .tt-hero-taxiar__content {
    text-align: center;
    margin: 0 auto;
    order: 0;
  }
  .tt-hero-taxiar__booking {
    order: 1;
    max-width: 100%;
    width: 100%;
  }
  .tt-hero-taxiar__lead,
  .tt-hero-taxiar__actions {
    display: none !important;
  }
  .tt-hero-taxiar__title {
    font-size: clamp(28px, 8vw, 42px);
    margin-bottom: 0;
  }
  .tt-hero-taxiar__eyebrow {
    margin-bottom: 12px;
  }
  .tt-hero-taxiar__vdots {
    right: 12px;
  }
}

/* Our Services — split dark/white + overlapping cards */
.tt-services-split {
  position: relative;
  padding-bottom: 88px;
  overflow: hidden;
}
.tt-services-split__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}
.tt-services-split__bg-dark {
  flex: 0 0 48%;
  min-height: 320px;
  background: #111111;
}
.tt-services-split__bg-light {
  flex: 1;
  background: #ffffff;
}
.tt-services-split__inner {
  position: relative;
  z-index: 1;
  padding-top: 72px;
}
.tt-services-split__head {
  text-align: center;
  margin-bottom: 52px;
}
.tt-services-split__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: var(--tt-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tt-primary);
  margin-bottom: 14px;
}
.tt-services-split__eyebrow span {
  display: block;
  width: 44px;
  height: 2px;
  background: var(--tt-primary);
}
.tt-services-split__title {
  font-family: var(--tt-display);
  font-size: clamp(34px, 4.5vw, 48px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.tt-services-split__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}
.tt-service-card {
  display: flex;
  flex-direction: column;
  background: transparent;
}
.tt-service-card__img {
  overflow: hidden;
  line-height: 0;
}
.tt-service-card__img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.tt-service-card:hover .tt-service-card__img img {
  transform: scale(1.04);
}
.tt-service-card__body {
  background: #ffffff;
  padding: 30px 26px 34px;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.12);
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: -2px;
}
.tt-service-card__body h3 {
  font-family: var(--tt-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 14px;
  line-height: 1.3;
}
.tt-service-card__body p {
  font-size: 14px;
  line-height: 1.75;
  color: #6b7280;
  margin-bottom: 26px;
  flex: 1;
}
.tt-service-card__btn {
  display: inline-block;
  padding: 14px 26px;
  background: var(--tt-primary);
  color: #111111;
  font-family: var(--tt-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition);
  align-self: flex-start;
}
.tt-service-card__btn:hover {
  background: var(--tt-primary-dark);
  transform: translateY(-1px);
}

.tt-services-split__nav {
  display: none;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}
.tt-services-split__arrow {
  width: 44px;
  height: 44px;
  border: 2px solid var(--tt-primary);
  background: rgba(255, 180, 0, 0.08);
  color: var(--tt-primary);
  display: grid;
  place-items: center;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
}
.tt-services-split__arrow:hover:not(:disabled) {
  background: var(--tt-primary);
  color: #111;
}
.tt-services-split__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .tt-services-split__nav {
    display: flex;
  }
  .tt-services-split__viewport {
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
    touch-action: pan-x pan-y;
  }
  .tt-services-split__viewport::-webkit-scrollbar {
    display: none;
  }
  .tt-services-split__grid {
    display: flex;
    gap: 0;
    grid-template-columns: none;
    max-width: none;
    margin: 0;
    align-items: stretch;
  }
  .tt-service-card {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .tt-service-card:hover .tt-service-card__img img {
    transform: none;
  }
  /* Let vertical page scroll work on carousel images (avoid touch/drag capture) */
  .tt-services-split__viewport img,
  .tt-benefits__viewport img,
  .tt-stats-banner__viewport img,
  .tt-fleet-grid img,
  .tt-comfort-split__media img {
    -webkit-user-drag: none;
    user-select: none;
    touch-action: inherit;
  }
  .tt-mobile-hscroll.is-scroll-y {
    overflow-x: hidden !important;
    touch-action: pan-y;
  }
}

/* Stats counter banner — below Our Services */
.tt-stats-banner {
  background: #151c28;
  padding: 0 0 52px;
  overflow: hidden;
}
.tt-stats-banner__shell {
  width: min(1180px, 92vw);
  margin: 0 auto;
}
.tt-stats-banner__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 0;
  row-gap: 0;
  align-items: start;
}
.tt-stats-banner__visual--desktop {
  grid-column: 1 / -1;
  line-height: 0;
  margin-bottom: 0;
}
.tt-stats-banner__ref {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}
.tt-stats-banner__col {
  text-align: center;
  color: #fff;
  padding: 6px 6px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tt-stats-banner__icon-wrap--mobile,
.tt-stats-banner__rail--mobile {
  display: none;
}
.tt-stats-banner__num {
  display: block;
  font-family: var(--tt-display);
  font-size: clamp(34px, 3.8vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.tt-stats-banner__label {
  display: block;
  font-size: clamp(13px, 1.35vw, 16px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.01em;
  line-height: 1.35;
}
.tt-stats-banner__nav {
  display: none;
  justify-content: center;
  gap: 12px;
  padding: 28px 0 16px;
}
.tt-stats-banner__arrow {
  width: 40px;
  height: 40px;
  border: 2px solid var(--tt-primary);
  background: rgba(255, 180, 0, 0.1);
  color: var(--tt-primary);
  display: grid;
  place-items: center;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}
.tt-stats-banner__arrow:hover:not(:disabled) {
  background: var(--tt-primary);
  color: #111;
}
.tt-stats-banner__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

@media (max-width: 900px) {
  .tt-stats-banner__visual--desktop { display: none; }
  .tt-stats-banner__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 8px;
  }
  .tt-stats-banner__icon-wrap--mobile {
    display: block;
    width: 100%;
    max-width: 200px;
    line-height: 0;
    margin-bottom: 4px;
  }
  .tt-stats-banner__icon {
    display: block;
    width: 100%;
    height: auto;
  }
  .tt-stats-banner__rail--mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 20px;
    margin-bottom: 12px;
  }
  .tt-stats-banner__rail--mobile::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-50%);
  }
  .tt-stats-banner__dot {
    position: relative;
    z-index: 1;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #e53935;
    border: 2px solid #fff;
  }
  .tt-stats-banner__col { padding-top: 16px; }
}

@media (max-width: 768px) {
  .tt-stats-banner {
    padding: 0 0 32px;
  }
  .tt-stats-banner__nav {
    display: flex;
  }
  .tt-stats-banner__viewport {
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
    touch-action: pan-x pan-y;
  }
  .tt-stats-banner__viewport::-webkit-scrollbar {
    display: none;
  }
  .tt-stats-banner__grid {
    display: flex;
    gap: 0;
    grid-template-columns: none;
    row-gap: 0;
  }
  .tt-stats-banner__col {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 12px 20px 8px;
    box-sizing: border-box;
  }
  .tt-stats-banner__icon-wrap--mobile {
    max-width: min(220px, 72vw);
    margin: 0 auto 8px;
  }
  .tt-stats-banner__rail--mobile {
    height: 16px;
    margin-bottom: 10px;
  }
  .tt-stats-banner__num {
    font-size: clamp(36px, 10vw, 44px);
    margin-bottom: 4px;
  }
  .tt-stats-banner__label {
    font-size: 14px;
  }
}

@media (min-width: 769px) and (max-width: 900px) {
  .tt-stats-banner { padding-bottom: 40px; }
}

/* High Comfort split section (below Our Cars) */
.tt-comfort-split {
  display: grid;
  grid-template-columns: minmax(320px, 40%) 1fr;
  min-height: clamp(420px, 52vh, 560px);
  width: 100%;
  border-top: 4px solid var(--tt-primary);
}
.tt-comfort-split__content {
  background: #1a1a1a;
  padding: clamp(48px, 6vw, 88px) clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.tt-comfort-split__title {
  font-family: var(--tt-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
  max-width: 380px;
}
.tt-comfort-split__accent {
  color: var(--tt-primary);
}
.tt-comfort-split__contact {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 36px;
}
.tt-comfort-split__phone-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--tt-primary);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.tt-comfort-split__label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 6px;
  line-height: 1.4;
}
.tt-comfort-split__phone {
  font-family: var(--tt-display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  color: var(--tt-primary);
  line-height: 1.2;
  transition: var(--transition);
}
.tt-comfort-split__phone:hover {
  color: #ffd633;
}
.tt-comfort-split__btn {
  display: inline-block;
  padding: 16px 32px;
  background: var(--tt-primary);
  color: #111;
  font-family: var(--tt-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition);
}
.tt-comfort-split__btn:hover {
  background: var(--tt-primary-dark);
  transform: translateY(-2px);
}
.tt-comfort-split__media {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 32px);
}
.tt-comfort-split__media img {
  width: 100%;
  max-width: min(640px, 96%);
  height: auto;
  max-height: 480px;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: contrast(1.02) saturate(1.05);
}

@media (max-width: 768px) {
  .tt-comfort-split {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .tt-comfort-split__media {
    order: -1;
    width: 100%;
    min-height: clamp(220px, 46vw, 300px);
    padding: 20px 16px;
  }
  .tt-comfort-split__media img {
    max-height: 260px;
  }
  .tt-comfort-split__content {
    width: 100%;
    padding: 36px max(64px, calc(20px + env(safe-area-inset-right))) 44px 20px;
    box-sizing: border-box;
  }
  .tt-comfort-split__title {
    max-width: none;
    font-size: clamp(28px, 7.5vw, 36px);
    margin-bottom: 28px;
  }
  .tt-comfort-split__contact {
    width: 100%;
    margin-bottom: 28px;
  }
  .tt-comfort-split__contact-text {
    flex: 1;
    min-width: 0;
  }
  .tt-comfort-split__phone {
    display: inline-block;
    white-space: nowrap;
    font-size: clamp(20px, 5.2vw, 26px);
    letter-spacing: -0.01em;
  }
}

/* Vehicle showcase (legacy — kept for other pages if needed) */
.tt-vehicle-showcase {
  padding: 80px 0;
  background: #fff;
}
.tt-vehicle-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.tt-vehicle-showcase__main {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--tt-shadow);
}
.tt-vehicle-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.tt-vehicle-thumbs img {
  flex: 1;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  opacity: 0.85;
  border: 2px solid transparent;
  transition: var(--transition);
}
.tt-vehicle-thumbs img:hover {
  opacity: 1;
  border-color: var(--tt-primary);
}
.tt-check-list {
  list-style: none;
  margin: 24px 0 28px;
}
.tt-check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-weight: 600;
  color: var(--tt-text);
}
.tt-check-list i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--tt-primary);
  color: var(--tt-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

/* Why Tamizha Taxi — benefit cards (Taxiar-style) */
.tt-benefits {
  padding: 72px 0 80px;
  background: #f3f4f6;
}
.tt-benefits__head {
  text-align: center;
  margin-bottom: 48px;
}
.tt-benefits__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: var(--tt-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tt-primary-dark);
  margin-bottom: 14px;
}
.tt-benefits__eyebrow span {
  display: block;
  width: 44px;
  height: 2px;
  background: var(--tt-primary);
}
.tt-benefits__title {
  font-family: var(--tt-display);
  font-size: clamp(34px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--tt-dark);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}
.tt-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tt-benefit-card {
  position: relative;
  text-align: center;
  padding: 44px 28px 40px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-top: 4px solid var(--tt-primary);
  box-shadow: 0 6px 24px rgba(17, 24, 39, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}
.tt-benefit-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background: linear-gradient(180deg, transparent, rgba(255, 180, 0, 0.08));
  transition: height 0.25s ease;
  pointer-events: none;
}
.tt-benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 180, 0, 0.45);
  box-shadow: 0 14px 36px rgba(255, 180, 0, 0.18);
}
.tt-benefit-card:hover::after { height: 100%; }
.tt-benefit-card__icon {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 28px;
  display: grid;
  place-items: center;
}
.tt-benefit-card__icon-blob {
  position: absolute;
  inset: 0;
  background: var(--tt-primary);
  border-radius: 46% 54% 52% 48% / 48% 46% 54% 52%;
  transform: rotate(-10deg);
  box-shadow:
    0 0 0 3px rgba(255, 180, 0, 0.25),
    inset 0 -2px 6px rgba(0, 0, 0, 0.08);
}
.tt-benefit-card__icon i {
  position: relative;
  z-index: 1;
  font-size: 34px;
  color: #111;
  line-height: 1;
}
.tt-benefit-card h3 {
  font-family: var(--tt-display);
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tt-dark);
  margin-bottom: 14px;
  line-height: 1.35;
}
.tt-benefit-card p {
  font-size: 14px;
  line-height: 1.75;
  color: #6b7280;
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .tt-benefits {
    padding-bottom: 64px;
  }
  .tt-benefits__viewport {
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
    touch-action: pan-x pan-y;
  }
  .tt-benefits__viewport::-webkit-scrollbar {
    display: none;
  }
  .tt-benefits__grid {
    display: flex;
    gap: 0;
    grid-template-columns: none;
  }
  .tt-benefit-card {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .tt-benefit-card:hover {
    transform: none;
  }
}

/* Customer reviews — Taxiar-style cards */
.tt-reviews {
  padding: 72px 0 80px;
  background: #fff;
}
.tt-reviews__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.tt-reviews__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--tt-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tt-primary-dark);
  margin-bottom: 12px;
}
.tt-reviews__eyebrow span {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--tt-primary);
  box-shadow: 12px 0 0 var(--tt-primary);
}
.tt-reviews__title {
  font-family: var(--tt-display);
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 800;
  color: var(--tt-dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}
.tt-reviews__nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.tt-reviews__arrow {
  width: 48px;
  height: 48px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: var(--tt-dark);
  display: grid;
  place-items: center;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(17, 24, 39, 0.06);
  transition: var(--transition);
}
.tt-reviews__arrow:hover:not(:disabled) {
  border-color: var(--tt-primary);
  color: var(--tt-primary-dark);
}
.tt-reviews__arrow:disabled {
  opacity: 0.35;
  cursor: default;
}
.tt-reviews__viewport {
  overflow: hidden;
  touch-action: pan-y;
}
.tt-reviews__track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s ease;
  will-change: transform;
}
.tt-review-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  background: #fff;
  padding: 36px 32px 28px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 10px 36px rgba(17, 24, 39, 0.07);
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.tt-review-card__quote {
  flex: 1;
  font-size: 15px;
  line-height: 1.8;
  color: #6b7280;
  margin: 0 0 28px;
}
.tt-review-card__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}
.tt-review-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.tt-review-card__author img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.tt-review-card__author strong {
  display: block;
  font-family: var(--tt-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--tt-dark);
  margin-bottom: 4px;
}
.tt-review-card__author span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--tt-primary-dark);
}
.tt-review-card__mark {
  font-family: Georgia, serif;
  font-size: clamp(64px, 8vw, 88px);
  line-height: 0.8;
  color: rgba(17, 24, 39, 0.08);
  flex-shrink: 0;
  user-select: none;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .tt-review-card { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 768px) {
  .tt-reviews__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .tt-review-card {
    flex: 0 0 100%;
    min-height: auto;
  }
}

@media (max-width: 1024px) {
  .tt-nav-taxiar { display: none !important; }
  .tt-menu-btn-taxiar {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }
  .tt-services-split__grid { grid-template-columns: 1fr 1fr; }
  .tt-benefits__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .tt-header-taxiar__white { width: 58%; }
  .tt-header-taxiar__logo { max-width: 60vw; }
  .tt-logo--header .tt-logo__img { height: clamp(72px, 10vw, 88px); max-width: min(340px, 58vw); }
}

@media (max-width: 768px) {
  .tt-header-taxiar {
    min-height: 112px;
  }
  .tt-header-taxiar__white {
    width: 68%;
  }
  .tt-header-taxiar__yellow {
    padding-left: 36%;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    flex-wrap: nowrap;
    justify-content: flex-end;
  }
  .tt-header-taxiar__logo {
    padding-left: 6px;
    max-width: 72vw;
  }
  .tt-logo--header .tt-logo__img {
    height: 92px;
    max-width: min(380px, 70vw);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .tt-comfort-split { grid-template-columns: 1fr 1fr; }
  .tt-comfort-split__phone {
    white-space: nowrap;
    font-size: clamp(18px, 2.4vw, 24px);
  }
}

/* ----- Keyword SEO prose sections (text-only, unique layouts) ----- */

.tt-kw-mast {
  padding: 56px 0 64px;
  background: #fafbfc;
  border-top: 1px solid var(--tt-border);
  border-bottom: 1px solid var(--tt-border);
}
.tt-kw-mast__inner {
  max-width: 920px;
}
.tt-kw-mast__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tt-muted);
  margin-bottom: 14px;
}
.tt-kw-mast__title {
  font-family: var(--tt-display);
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 800;
  color: var(--tt-dark);
  line-height: 1.15;
  max-width: 18ch;
  margin-bottom: 20px;
}
.tt-kw-mast__rule {
  width: 64px;
  height: 4px;
  background: var(--tt-primary);
  margin-bottom: 28px;
}
.tt-kw-mast__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
}
.tt-kw-mast__cols p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--tt-text);
  margin: 0;
}

.tt-kw-cols {
  padding: 64px 0;
  background: var(--tt-white);
}
.tt-kw-cols__shell {
  display: grid;
  grid-template-columns: minmax(240px, 34%) 1fr;
  gap: 48px;
  align-items: start;
}
.tt-kw-cols__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tt-primary-dark);
  margin-bottom: 12px;
}
.tt-kw-cols__title {
  font-family: var(--tt-display);
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
  font-weight: 800;
  color: var(--tt-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}
.tt-kw-cols__aside-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--tt-muted);
  margin-bottom: 20px;
}
.tt-kw-cols__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--tt-dark);
  text-decoration: none;
  border-bottom: 2px solid var(--tt-primary);
  padding-bottom: 2px;
}
.tt-kw-cols__link:hover { color: var(--tt-primary-dark); }
.tt-kw-cols__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.tt-kw-cols__block {
  padding: 24px 22px;
  border: 1px solid var(--tt-border);
  border-radius: 4px;
  background: #fafbfc;
}
.tt-kw-cols__block h3 {
  font-family: var(--tt-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--tt-dark);
  margin-bottom: 10px;
}
.tt-kw-cols__block p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--tt-text);
  margin-bottom: 14px;
}
.tt-kw-cols__block ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.tt-kw-cols__block li {
  font-size: 13px;
  color: var(--tt-muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.tt-kw-cols__block li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--tt-primary-dark);
  font-weight: 700;
}

.tt-kw-faq {
  padding: 64px 0;
  background: var(--tt-dark);
  color: #fff;
}
.tt-kw-faq__head {
  max-width: 560px;
  margin-bottom: 36px;
}
.tt-kw-faq__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tt-primary);
  margin-bottom: 12px;
}
.tt-kw-faq__title {
  font-family: var(--tt-display);
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
}
.tt-kw-faq__intro {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}
.tt-kw-faq__list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.tt-kw-faq__item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.tt-kw-faq__item h3 {
  font-family: var(--tt-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.tt-kw-faq__item p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
  max-width: 720px;
}

.tt-kw-steps {
  padding: 64px 0;
  background: var(--tt-primary-soft);
}
.tt-kw-steps__head {
  max-width: 620px;
  margin-bottom: 36px;
}
.tt-kw-steps__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tt-primary-dark);
  margin-bottom: 12px;
}
.tt-kw-steps__title {
  font-family: var(--tt-display);
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
  font-weight: 800;
  color: var(--tt-dark);
  margin-bottom: 12px;
}
.tt-kw-steps__intro {
  font-size: 15px;
  line-height: 1.7;
  color: var(--tt-text);
  margin: 0;
}
.tt-kw-steps__rail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  counter-reset: kw-step;
}
.tt-kw-steps__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 24px;
  border-right: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.55);
}
.tt-kw-steps__item:last-child { border-right: none; }
.tt-kw-steps__num {
  font-family: var(--tt-display);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(17, 24, 39, 0.12);
}
.tt-kw-steps__item h3 {
  font-family: var(--tt-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--tt-dark);
  margin-bottom: 8px;
}
.tt-kw-steps__item p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--tt-muted);
  margin: 0;
}

.tt-kw-article {
  padding: 72px 0;
  background: var(--tt-white);
  border-top: 1px solid var(--tt-border);
}
.tt-kw-article__shell {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 320px);
  gap: 56px;
  align-items: start;
}
.tt-kw-article__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tt-muted);
  margin-bottom: 12px;
}
.tt-kw-article__title {
  font-family: var(--tt-display);
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
  font-weight: 800;
  color: var(--tt-dark);
  margin-bottom: 20px;
  line-height: 1.25;
}
.tt-kw-article__p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--tt-text);
  margin-bottom: 16px;
}
.tt-kw-article__closing {
  font-size: 15px;
  line-height: 1.8;
  color: var(--tt-dark);
  font-weight: 500;
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--tt-border);
}
.tt-kw-article__side {
  padding: 28px 24px;
  background: var(--tt-dark);
  color: #fff;
  border-radius: 4px;
}
.tt-kw-article__side h3 {
  font-family: var(--tt-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tt-primary);
  margin-bottom: 16px;
}
.tt-kw-article__side ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.tt-kw-article__side li {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  padding-left: 16px;
  position: relative;
}
.tt-kw-article__side li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tt-primary);
}
.tt-kw-article__phone {
  display: block;
  text-decoration: none;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  margin-bottom: 10px;
  transition: background 0.2s;
}
.tt-kw-article__phone:hover { background: rgba(255, 255, 255, 0.14); }
.tt-kw-article__phone span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
}
.tt-kw-article__phone strong {
  font-family: var(--tt-display);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.tt-kw-article__book {
  display: block;
  text-align: center;
  padding: 12px 16px;
  background: var(--tt-primary);
  color: var(--tt-dark);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 4px;
}
.tt-kw-article__book:hover { background: var(--tt-primary-dark); }

@media (max-width: 900px) {
  .tt-kw-mast__cols { grid-template-columns: 1fr; }
  .tt-kw-cols__shell { grid-template-columns: 1fr; gap: 32px; }
  .tt-kw-cols__main { grid-template-columns: 1fr; }
  .tt-kw-steps__rail { grid-template-columns: 1fr; }
  .tt-kw-steps__item { border-right: none; border-bottom: 1px solid rgba(17, 24, 39, 0.08); }
  .tt-kw-article__shell { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .tt-kw-mast, .tt-kw-cols, .tt-kw-faq, .tt-kw-steps, .tt-kw-article {
    padding: 44px 0;
  }
  .tt-kw-mast__title { max-width: none; }
}
