:root {
  --tt-bg: #080808;
  --tt-bg-soft: #101010;
  --tt-surface: #141414;
  --tt-surface-alt: #1b1b1b;
  --tt-surface-elevated: #202020;
  --tt-card: #121212;
  --tt-card-soft: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  --tt-border: rgba(255, 255, 255, 0.08);
  --tt-border-strong: rgba(255, 255, 255, 0.16);
  --tt-text: #f5f2ed;
  --tt-muted: #b9b1a5;
  --tt-red: #d62839;
  --tt-red-dark: #991b1b;
  --tt-red-soft: rgba(214, 40, 57, 0.18);
  --tt-gold: #f0c36d;
  --tt-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
  --tt-shadow-soft: 0 16px 32px rgba(0, 0, 0, 0.18);
  --tt-radius: 24px;
  --tt-radius-sm: 16px;
  --tt-container: min(100% - 1.5rem, 1180px);
  --tt-font-heading: "Outfit", "Segoe UI", sans-serif;
  --tt-font-body: "Manrope", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--tt-font-body);
  background:
    radial-gradient(circle at top right, rgba(214, 40, 57, 0.18), transparent 32%),
    radial-gradient(circle at bottom left, rgba(240, 195, 109, 0.08), transparent 22%),
    var(--tt-bg);
  color: var(--tt-text);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.tt-page {
  min-height: 100vh;
}

.tt-container {
  width: var(--tt-container);
  margin-inline: auto;
}

.tt-section {
  padding: 4.5rem 0;
  position: relative;
}

.tt-section.dim {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    var(--tt-bg-soft);
}

.tt-section.flush-top {
  padding-top: 2rem;
}

.tt-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 195, 109, 0.2);
  background: rgba(240, 195, 109, 0.08);
  color: var(--tt-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tt-kicker::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--tt-red);
  box-shadow: 0 0 0 6px rgba(214, 40, 57, 0.18);
}

.tt-heading {
  font-family: var(--tt-font-heading);
  font-size: clamp(2rem, 7vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 1rem 0 1rem;
}

.tt-heading span,
.tt-section-title span,
.tt-highlight {
  color: var(--tt-red);
}

.tt-section-title {
  font-family: var(--tt-font-heading);
  font-size: clamp(1.7rem, 5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 1rem 0 0.85rem;
}

.tt-lead,
.tt-section-copy,
.tt-copy {
  color: var(--tt-muted);
}

.tt-lead {
  font-size: 1rem;
  max-width: 40rem;
}

.tt-grid {
  display: grid;
  gap: 1rem;
}

.tt-grid-2,
.tt-grid-3,
.tt-grid-4 {
  display: grid;
  gap: 1rem;
}

.tt-pill-list,
.tt-check-list,
.tt-inline-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tt-check-list li,
.tt-pill-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--tt-muted);
}

.tt-check-list li + li,
.tt-pill-list li + li {
  margin-top: 0.85rem;
}

.tt-check-list i,
.tt-pill-list i {
  color: var(--tt-red);
  margin-top: 0.2rem;
}

.tt-button,
.tt-button-outline,
.tt-button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.1rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.tt-button {
  background: linear-gradient(135deg, #f14555, #d62839 60%, #8f131f);
  color: #fff;
  box-shadow: 0 16px 28px rgba(214, 40, 57, 0.28);
}

.tt-button:hover,
.tt-button-outline:hover,
.tt-button-ghost:hover {
  transform: translateY(-1px);
}

.tt-button-outline {
  border-color: var(--tt-border-strong);
  color: var(--tt-text);
  background: rgba(255, 255, 255, 0.04);
}

.tt-button-ghost {
  color: var(--tt-muted);
  border-color: rgba(255, 255, 255, 0.05);
  background: transparent;
}

.tt-card,
.tt-panel,
.tt-soft-card {
  border-radius: var(--tt-radius);
  border: 1px solid var(--tt-border);
  background: var(--tt-card-soft), var(--tt-card);
  box-shadow: var(--tt-shadow-soft);
}

.tt-card {
  padding: 1.25rem;
}

.tt-panel {
  padding: 1.5rem;
}

.tt-soft-card {
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
}

.tt-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  backdrop-filter: blur(18px);
  background: rgba(8, 8, 8, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tt-navbar {
  padding: 0.9rem 0;
}

.tt-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--tt-font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.tt-brand-mark {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, rgba(240, 195, 109, 0.24), rgba(214, 40, 57, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.tt-brand small {
  display: block;
  font-family: var(--tt-font-body);
  font-size: 0.68rem;
  color: var(--tt-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tt-nav-links .nav-link {
  color: var(--tt-muted);
  font-weight: 700;
  padding: 0.7rem 0.95rem !important;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.tt-nav-links .nav-link:hover,
.tt-nav-links .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.tt-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-weight: 800;
}

.tt-menu-btn {
  width: 2.95rem;
  height: 2.95rem;
  border-radius: 999px;
  border: 1px solid var(--tt-border);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.tt-mobile-drawer {
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(10, 10, 10, 0.99));
  color: #fff;
}

.tt-mobile-drawer .offcanvas-header {
  border-bottom-color: var(--tt-border);
}

.tt-mobile-drawer .offcanvas-title {
  font-family: var(--tt-font-heading);
}

.tt-mobile-links a {
  display: block;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  color: #fff;
  font-weight: 700;
}

.tt-mobile-links li + li {
  margin-top: 0.7rem;
}

.tt-mobile-links a:hover {
  border-color: var(--tt-border-strong);
}

.tt-hero {
  padding: 2.1rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.tt-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.72)),
    radial-gradient(circle at top left, rgba(240, 195, 109, 0.12), transparent 22%),
    linear-gradient(120deg, rgba(214, 40, 57, 0.1), transparent 55%);
  pointer-events: none;
}

.tt-hero-media {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.3;
}

.tt-hero-inner {
  position: relative;
  z-index: 1;
}

.tt-hero-grid {
  display: grid;
  gap: 1.5rem;
}

.tt-hero-copy {
  max-width: 42rem;
}

.tt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.tt-inline-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.tt-inline-metric {
  padding: 0.95rem 1rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--tt-border);
}

.tt-inline-metric strong {
  display: block;
  font-family: var(--tt-font-heading);
  font-size: 1.35rem;
}

.tt-inline-metric span {
  color: var(--tt-muted);
  font-size: 0.86rem;
}

.tt-quote-box {
  padding: 1rem;
  border-radius: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(8, 8, 8, 0.62);
  box-shadow: var(--tt-shadow);
}

.tt-booking-form {
  display: grid;
  gap: 1rem;
}

.tt-trip-toggle {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.tt-trip-chip {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--tt-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--tt-muted);
  font-weight: 800;
  cursor: pointer;
}

.tt-trip-chip.active {
  background: var(--tt-red-soft);
  color: #fff;
  border-color: rgba(214, 40, 57, 0.5);
}

.tt-form-grid {
  display: grid;
  gap: 0.85rem;
}

.tt-field {
  border: 1px solid var(--tt-border);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.8rem 0.95rem;
}

.tt-field label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
  color: var(--tt-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tt-field label i {
  color: var(--tt-red);
}

.tt-control {
  width: 100%;
  min-height: 2rem;
  border: none;
  background: transparent;
  color: #fff;
  outline: none;
  font-size: 0.98rem;
  font-weight: 700;
}

.tt-control option {
  color: #101010;
}

.tt-control::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.tt-control::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

.tt-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tt-mini-note {
  color: var(--tt-muted);
  font-size: 0.86rem;
}

.tt-swap {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid var(--tt-border);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.tt-stats-strip {
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
}

.tt-stat-card {
  padding: 1.25rem;
  border-radius: 1.4rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)), #101010;
  border: 1px solid var(--tt-border);
  height: 100%;
}

.tt-stat-card strong {
  display: block;
  font-family: var(--tt-font-heading);
  font-size: 1.7rem;
  margin-bottom: 0.25rem;
}

.tt-stat-card span {
  color: var(--tt-muted);
}

.tt-feature-card,
.tt-service-card,
.tt-airport-card,
.tt-review-card,
.tt-info-card,
.tt-policy-card,
.tt-result-card,
.tt-contact-card {
  height: 100%;
  padding: 1.2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--tt-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(18, 18, 18, 0.96);
}

.tt-feature-card i,
.tt-service-card i,
.tt-info-card i,
.tt-contact-card i {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(140deg, rgba(240, 195, 109, 0.2), rgba(214, 40, 57, 0.8));
  margin-bottom: 1rem;
}

.tt-feature-card h3,
.tt-service-card h3,
.tt-info-card h3,
.tt-contact-card h3,
.tt-policy-card h3,
.tt-result-card h3 {
  font-family: var(--tt-font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.tt-airport-card img,
.tt-result-thumb img {
  border-radius: 1.25rem;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.tt-airport-meta,
.tt-result-meta,
.tt-review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1rem 0 0;
  color: var(--tt-muted);
  font-size: 0.9rem;
}

.tt-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--tt-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--tt-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.tt-tag.red {
  color: #fff;
  background: rgba(214, 40, 57, 0.18);
  border-color: rgba(214, 40, 57, 0.38);
}

.tt-split-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: calc(var(--tt-radius) + 0.2rem);
  background:
    linear-gradient(135deg, rgba(240, 195, 109, 0.08), rgba(214, 40, 57, 0.12)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.tt-photo-frame {
  border-radius: 1.6rem;
  overflow: hidden;
  border: 1px solid var(--tt-border);
  background: #0d0d0d;
}

.tt-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tt-review-card p,
.tt-result-card p,
.tt-policy-card p,
.tt-faq-answer,
.tt-contact-card p {
  color: var(--tt-muted);
}

.tt-review-author {
  margin-top: 1rem;
  font-weight: 800;
}

.tt-avatar-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.tt-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  object-fit: cover;
}

.tt-result-layout {
  display: grid;
  gap: 1rem;
}

.tt-results-toolbar {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 1.4rem;
  border: 1px solid var(--tt-border);
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 1rem;
}

.tt-filter-row {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
}

.tt-filter-chip {
  white-space: nowrap;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--tt-border);
  color: var(--tt-muted);
  font-weight: 700;
}

.tt-filter-chip.active {
  background: var(--tt-red-soft);
  color: #fff;
  border-color: rgba(214, 40, 57, 0.45);
}

.tt-result-card {
  display: grid;
  gap: 1rem;
}

.tt-result-thumb {
  position: relative;
}

.tt-result-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid var(--tt-border);
}

.tt-price-block strong {
  display: block;
  font-family: var(--tt-font-heading);
  font-size: 1.9rem;
}

.tt-price-block span {
  color: var(--tt-muted);
  font-size: 0.85rem;
}

.tt-sidebar-card {
  padding: 1.15rem;
  border-radius: 1.35rem;
  border: 1px solid var(--tt-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(18, 18, 18, 0.96);
}

.tt-sidebar-card h3 {
  font-family: var(--tt-font-heading);
  font-size: 1.12rem;
  margin-bottom: 0.9rem;
}

.tt-inline-form {
  display: grid;
  gap: 0.75rem;
}

.tt-inline-form .tt-button {
  width: 100%;
}

.tt-faq-item {
  border-bottom: 1px solid var(--tt-border);
  padding: 1.4rem 0;
}

.tt-faq-question {
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: #fff;
  text-align: left;
  font-weight: 800;
}

.tt-faq-answer p {
  padding-top: 0.8rem;
  margin: 0;
}

.tt-table-card {
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--tt-border);
}

.tt-table-card table {
  width: 100%;
  border-collapse: collapse;
}

.tt-table-card th,
.tt-table-card td {
  padding: 1rem;
  text-align: left;
  vertical-align: top;
}

.tt-table-card tr + tr td,
.tt-table-card tr + tr th {
  border-top: 1px solid var(--tt-border);
}

.tt-table-card th {
  width: 34%;
  color: #fff;
  font-family: var(--tt-font-heading);
  font-size: 1rem;
}

.tt-content-hero {
  padding: 3rem 0 2rem;
}

.tt-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--tt-muted);
}

.tt-breadcrumb a:hover {
  color: #fff;
}

.tt-footer {
  padding: 4rem 0 2rem;
  background:
    radial-gradient(circle at top center, rgba(214, 40, 57, 0.12), transparent 22%),
    #070707;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tt-footer-brand {
  max-width: 23rem;
}

.tt-footer h4 {
  font-family: var(--tt-font-heading);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.tt-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tt-footer-links li + li {
  margin-top: 0.75rem;
}

.tt-footer-links a {
  color: var(--tt-muted);
  transition: color 0.2s ease;
}

.tt-footer-links a:hover {
  color: #fff;
}

.tt-footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding-top: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid var(--tt-border);
  color: var(--tt-muted);
}

.tt-socials {
  display: flex;
  gap: 0.65rem;
}

.tt-socials a {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--tt-border);
  color: #fff;
}

.tt-socials a:hover {
  background: rgba(214, 40, 57, 0.18);
}

.splide__pagination__page {
  background: rgba(255, 255, 255, 0.18);
}

.splide__pagination__page.is-active {
  background: var(--tt-red);
}

.splide__arrow {
  background: rgba(255, 255, 255, 0.08);
}

.splide__arrow svg {
  fill: #fff;
}

.tt-note-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 1.2rem;
  background: rgba(240, 195, 109, 0.08);
  color: #f5d59d;
  border: 1px solid rgba(240, 195, 109, 0.18);
}

.tt-note-bar i {
  color: var(--tt-gold);
}

.tt-contact-map iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 1.6rem;
}

.tt-legal-copy p + p,
.tt-legal-copy ul + p,
.tt-legal-copy p + ul {
  margin-top: 1rem;
}

.tt-legal-copy ul {
  /* padding-left: 1.15rem; */
  color: var(--tt-muted);
}

.tt-legal-copy li + li {
  margin-top: 0.65rem;
}

.tt-masthead {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 2.8rem;
}

.tt-masthead::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(214, 40, 57, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.tt-masthead-inner {
  position: relative;
  z-index: 1;
}

.tt-summary-route {
  font-family: var(--tt-font-heading);
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 0.9rem 0;
}

.tt-summary-copy {
  color: var(--tt-muted);
  max-width: 44rem;
}

.tt-search-panel {
  margin-top: 1.5rem;
}

.tt-section-head {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 576px) {
  .tt-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tt-inline-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .tt-form-grid.two-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .tt-section {
    padding: 5.25rem 0;
  }

  .tt-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tt-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .tt-hero {
    padding: 3.2rem 0 5rem;
  }

  .tt-hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: end;
  }

  .tt-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .tt-results-toolbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .tt-result-card {
    grid-template-columns: 220px minmax(0, 1fr);
  }
}

@media (min-width: 992px) {
  .tt-form-grid.search-grid {
    grid-template-columns: 1.2fr 48px 1.2fr 1fr 1fr 1fr;
    align-items: end;
  }

  .tt-form-grid.search-grid.return-active {
    grid-template-columns: 1.2fr 48px 1.2fr 1fr 1fr 1fr 1fr;
  }

  .tt-form-grid.search-grid .tt-form-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .tt-split-card {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .tt-result-layout {
    grid-template-columns: minmax(0, 1fr) 310px;
    align-items: start;
  }

  .tt-sidebar-stack {
    position: sticky;
    top: 6.5rem;
  }

  .tt-content-hero {
    padding: 3.5rem 0 2.6rem;
  }
}

/* ===== Softer Theme Override ===== */
:root {
  --tt-bg: #ffffff;
  --tt-bg-soft: #f7f7f7;
  --tt-surface: #ffffff;
  --tt-surface-alt: #f6f6f6;
  --tt-surface-elevated: #ffffff;
  --tt-card: #ffffff;
  --tt-card-soft: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1));
  --tt-border: rgba(22, 22, 22, 0.09);
  --tt-border-strong: rgba(22, 22, 22, 0.16);
  --tt-text: #161616;
  --tt-muted: #6d6d6d;
  --tt-red: #dc3545;
  --tt-red-dark: #b02a37;
  --tt-red-soft: rgba(220, 53, 69, 0.1);
  --tt-gold: #d49732;
  --tt-shadow: 0 20px 44px rgba(16, 24, 40, 0.1);
  --tt-shadow-soft: 0 12px 28px rgba(16, 24, 40, 0.08);
  --tt-font-heading: "Inter", "Segoe UI", sans-serif;
  --tt-font-body: "Inter", "Segoe UI", sans-serif;
}

body {
  background:
    radial-gradient(circle at top right, rgba(220, 53, 69, 0.06), transparent 26%),
    #ffffff;
  color: var(--tt-text);
}

.tt-section.dim,
.tt-content-hero,
.tt-masthead {
  background: var(--tt-bg-soft);
}

.tt-kicker {
  border-color: rgba(220, 53, 69, 0.18);
  background: rgba(220, 53, 69, 0.06);
  color: var(--tt-red);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.tt-kicker::before {
  box-shadow: 0 0 0 5px rgba(220, 53, 69, 0.09);
}

.tt-heading {
  font-size: clamp(1.85rem, 5vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.tt-section-title {
  font-size: clamp(1.45rem, 3.8vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.tt-summary-route {
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  line-height: 1.14;
}

.tt-lead {
  font-size: 0.98rem;
  max-width: 38rem;
}

.tt-copy,
.tt-lead,
.tt-section-copy,
.tt-summary-copy,
.tt-check-list li,
.tt-pill-list li,
.tt-result-card p,
.tt-policy-card p,
.tt-contact-card p,
.tt-review-card p,
.tt-faq-answer {
  color: var(--tt-muted);
}

.tt-button,
.tt-button-outline,
.tt-button-ghost {
  min-height: 2.9rem;
  padding: 0.82rem 1.15rem;
  font-size: 0.93rem;
}

.tt-button {
  background: linear-gradient(135deg, #e04b5a, #dc3545 60%, #c22937);
  box-shadow: 0 12px 22px rgba(220, 53, 69, 0.16);
}

.tt-button-outline {
  background: #ffffff;
  color: var(--tt-text);
}

.tt-button-ghost {
  color: #424242;
  border-color: rgba(22, 22, 22, 0.08);
}

.tt-card,
.tt-panel,
.tt-soft-card,
.tt-feature-card,
.tt-service-card,
.tt-airport-card,
.tt-review-card,
.tt-info-card,
.tt-policy-card,
.tt-result-card,
.tt-contact-card,
.tt-sidebar-card,
.tt-stat-card {
  background: #ffffff;
  border-color: rgba(22, 22, 22, 0.08);
  box-shadow: var(--tt-shadow-soft);
}

.tt-soft-card {
  background: #fafafa;
}

.tt-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(22, 22, 22, 0.06);
}

.tt-brand small,
.tt-nav-links .nav-link,
.tt-header-cta {
  color: #555;
}

.tt-nav-links .nav-link:hover,
.tt-nav-links .nav-link.active {
  color: #111;
  background: rgba(220, 53, 69, 0.08);
}

.tt-menu-btn {
  background: #ffffff;
  color: #161616;
}

.tt-mobile-drawer {
  background: #ffffff;
  color: var(--tt-text);
}

.tt-mobile-links a {
  background: #f8f8f8;
  color: var(--tt-text);
  border-color: rgba(22, 22, 22, 0.05);
}

.tt-mobile-links a:hover {
  border-color: rgba(220, 53, 69, 0.25);
}

.tt-mobile-drawer .offcanvas-title,
.tt-mobile-drawer .tt-copy,
.tt-mobile-drawer .text-white,
.tt-soft-card .text-white {
  color: var(--tt-text) !important;
}

.tt-hero {
  padding: 2rem 0 4.2rem;
}

.tt-hero::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.48)),
    linear-gradient(120deg, rgba(220, 53, 69, 0.08), transparent 55%);
}

.tt-hero-media {
  opacity: 0.42;
}

.tt-hero-copy,
.tt-hero-copy .tt-lead,
.tt-hero-copy .tt-inline-metric span {
  color: #ffffff;
}

.tt-hero-copy .tt-kicker {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.tt-quote-box {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.tt-trip-chip,
.tt-field,
.tt-inline-metric,
.tt-filter-chip,
.tt-results-toolbar,
.tt-tag,
.tt-swap {
  background: #ffffff;
  color: var(--tt-text);
  border-color: rgba(22, 22, 22, 0.09);
}

.tt-trip-chip.active,
.tt-filter-chip.active,
.tt-tag.red {
  color: #fff;
  background: var(--tt-red);
  border-color: var(--tt-red);
}

.tt-field label {
  color: #6b7280;
  font-size: 0.72rem;
}

.tt-control {
  color: #161616;
  font-size: 0.93rem;
  font-weight: 600;
}

.tt-control::placeholder {
  color: #8b8b8b;
}

.tt-control::-webkit-calendar-picker-indicator {
  filter: none;
}

.tt-swap {
  color: var(--tt-red);
}

.tt-stats-strip {
  margin-top: -1.2rem;
}

.tt-stat-card strong,
.tt-inline-metric strong,
.tt-price-block strong {
  color: var(--tt-text);
}

.tt-feature-card i,
.tt-service-card i,
.tt-info-card i,
.tt-contact-card i {
  background: rgba(220, 53, 69, 0.1);
  color: var(--tt-red);
}

.tt-photo-frame {
  background: #ffffff;
}

.tt-results-toolbar,
.tt-sidebar-card {
  background: #ffffff;
}

.tt-results-toolbar .text-white,
.tt-faq-question,
.tt-table-card th,
.tt-footer h4 {
  color: var(--tt-text) !important;
}

.tt-filter-row::-webkit-scrollbar {
  height: 6px;
}

.tt-filter-row::-webkit-scrollbar-thumb {
  background: rgba(22, 22, 22, 0.14);
  border-radius: 999px;
}

.tt-table-card,
.tt-note-bar {
  background: #ffffff;
}

.tt-note-bar {
  color: #7a4b00;
  border-color: rgba(212, 151, 50, 0.22);
  background: #fff8ea;
}

.tt-breadcrumb a:hover {
  color: var(--tt-red);
}

.tt-footer {
  background:
    radial-gradient(circle at top center, rgba(220, 53, 69, 0.08), transparent 20%),
    #121212;
  border-top: none;
}

.tt-footer .tt-copy,
.tt-footer-links a,
.tt-footer-bottom {
  color: rgba(255, 255, 255, 0.72);
}

.tt-footer-links a:hover {
  color: #ffffff;
}

.tt-socials a {
  background: rgba(255, 255, 255, 0.06);
}

.splide__pagination__page {
  background: rgba(22, 22, 22, 0.18);
}

.splide__arrow {
  background: rgba(22, 22, 22, 0.08);
}

.splide__arrow svg {
  fill: #111;
}

@media (min-width: 768px) {
  .tt-section {
    padding: 4.5rem 0;
  }

  .tt-hero {
    padding: 2.6rem 0 4.5rem;
  }
}

@media (min-width: 992px) {
  .tt-heading {
    font-size: 3rem;
  }

  .tt-section-title {
    font-size: 2.1rem;
  }

  .tt-summary-route {
    font-size: 2.2rem;
  }

  .tt-brand {
    font-size: 1.08rem;
  }

  .tt-nav-links .nav-link {
    font-size: 0.93rem;
    padding: 0.58rem 0.82rem !important;
  }
}
