:root {
  --bg: #eef1f4;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --text: #1f2933;
  --muted: #626b75;
  --line: #d8dde3;
  --accent: #de7a12;
  --accent-dark: #b85f08;
  --accent-soft: #fff1df;
  --font-display: clamp(1.9rem, 4vw, 3.2rem);
  --font-section: clamp(1.6rem, 3vw, 2.5rem);
  --font-body: 0.95rem;
  --font-card-title: 1rem;
  --font-label: 0.9rem;
  --font-meta: 0.86rem;
  --font-kicker: 0.72rem;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 70px rgba(37, 43, 52, 0.08);
  --container: min(1160px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top right, rgba(222, 122, 18, 0.12), transparent 26%),
    radial-gradient(circle at left 18%, rgba(255, 255, 255, 0.72), transparent 24%),
    linear-gradient(180deg, #f7f8fa 0%, var(--bg) 100%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text);
}

.site-shell {
  width: 100%;
  overflow-x: clip;
}

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

button,
input,
textarea {
  font: inherit;
}

input,
textarea {
  outline: none;
}

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

.section {
  padding: 72px 0;
  border-top: 1px solid rgba(216, 221, 227, 0.72);
}

main .section:first-child {
  border-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(216, 221, 227, 0.88);
  backdrop-filter: blur(14px);
  background: rgba(247, 248, 250, 0.88);
}

.site-header .container,
.footer-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: auto;
  height: 72px;
}

.brand-name {
  color: #111111;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 12px;
}

.language-switcher {
  position: relative;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
}

.lang-trigger,
.lang-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  min-width: 62px;
  border-radius: 999px;
  background: transparent;
  padding: 10px 14px;
  color: #111111;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.lang-trigger {
  position: relative;
  padding-right: 34px;
}

.lang-trigger::after {
  content: "";
  position: absolute;
  right: 14px;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: none;
  min-width: 100%;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.language-switcher.is-open .language-menu {
  display: grid;
  gap: 6px;
}

.lang-button.is-active {
  background: var(--accent);
  color: #fff;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--surface-strong);
  color: #111111;
  text-transform: uppercase;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-left: auto;
}

.site-nav a {
  color: #111111;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--accent);
}

.hero {
  padding-top: 36px;
}

.hero-grid,
.split-layout,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 24px;
  align-items: center;
}

.hero-grid {
  align-items: start;
}

.hero-copy h1,
.section-heading h2,
.booking-card h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-copy {
  padding-top: 0;
}

.hero-copy h1 {
  font-size: var(--font-display);
  max-width: 11ch;
}

.section-heading h2,
.booking-card h2 {
  font-size: var(--font-section);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: var(--font-kicker);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lead,
.body-copy,
.content-card p,
.detail-card p {
  color: var(--muted);
  font-size: var(--font-body);
  line-height: 1.6;
}

.lead {
  max-width: 58ch;
  margin: 14px 0 0;
  font-size: 0.96rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
}

.hero-card,
.content-card,
.mini-card,
.step-item,
.contact-panel,
.detail-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.content-card,
.detail-card,
.step-item,
.feature-card {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 420ms ease,
    transform 420ms ease,
    box-shadow 280ms ease,
    background-color 280ms ease;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.992);
  transition:
    opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.content-card.is-visible,
.detail-card.is-visible,
.step-item.is-visible,
.scroll-reveal.is-visible,
.feature-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.content-card:hover,
.detail-card:hover,
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(58, 60, 67, 0.08);
}

.step-item:hover {
  transform: translateY(-3px);
}

.hero-card {
  padding: 12px;
}

.quick-request-panel {
  align-self: start;
}

.booking-card {
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 241, 223, 0.92), rgba(255, 255, 255, 0.96)),
    var(--surface-strong);
}

.booking-card h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  margin-bottom: 14px;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form-actions {
  display: grid;
  gap: 8px;
}

.chat-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.chat-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #3b4450;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.chat-button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.chat-button-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chat-button:hover {
  transform: translateY(-1px);
}

.chat-button.is-whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.45);
  background: rgba(37, 211, 102, 0.1);
  color: #118a44;
}

.chat-button.is-telegram:hover {
  border-color: rgba(34, 158, 217, 0.42);
  background: rgba(34, 158, 217, 0.1);
  color: #1b7fb0;
}

.chat-button.is-viber:hover {
  border-color: rgba(115, 96, 242, 0.36);
  background: rgba(115, 96, 242, 0.1);
  color: #5b46c4;
}

.chat-phone {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.98);
  font-size: 0.92rem;
}

.contact-form input.is-invalid,
.contact-form textarea.is-invalid {
  border-color: rgba(230, 108, 0, 0.42);
  box-shadow: 0 0 0 4px rgba(230, 108, 0, 0.08);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(106, 115, 131, 0.58);
}

.form-field-error {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 0;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(230, 108, 0, 0.08);
  color: #d46500;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  opacity: 0;
  transform: translateY(-4px);
  max-height: 0;
  overflow: hidden;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    max-height 180ms ease,
    padding 180ms ease;
}

.form-field-error.is-visible {
  min-height: 34px;
  padding: 0 12px;
  opacity: 1;
  transform: translateY(0);
  max-height: 40px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.metric-card {
  padding: 14px;
  border: 1px solid rgba(235, 238, 242, 0.96);
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.98), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 244, 247, 0.88) 100%);
  backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(255, 255, 255, 0.4),
    0 18px 40px rgba(32, 44, 64, 0.06);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.metric-card strong {
  display: block;
  margin-bottom: 6px;
  color: #0f1726;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.metric-card span {
  color: #667181;
  font-size: 0.74rem;
  line-height: 1.4;
}

.metric-card:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -1px 0 rgba(255, 255, 255, 0.45),
    0 22px 44px rgba(32, 44, 64, 0.12);
}

.section-heading {
  margin-bottom: 28px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-band-section {
  padding-top: 48px;
  padding-bottom: 48px;
  background: #f1f3f6;
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 208px;
  padding: 22px;
  border: 0;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #eef1f5 100%);
  box-shadow: none;
}

.feature-body {
  padding-right: 82px;
}

.feature-card h3 {
  margin: 0 0 8px;
  padding-right: 0;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  max-width: 18ch;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.feature-icon {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
  color: #4f5662;
  border: 0;
  box-shadow: none;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 36px;
  margin-top: 14px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #1b2433;
  font-weight: 800;
  font-size: 0.74rem;
  border: 0;
  box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .content-card,
  .detail-card,
  .step-item,
  .feature-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.card-grid,
.contact-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.district-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.content-card,
.detail-card {
  padding: 18px;
}

.content-card .text-link {
  margin-top: 12px;
}

.district-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  border-radius: 24px;
  background: #f2f2f3;
  box-shadow: none;
}

.district-card-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid rgba(240, 157, 10, 0.46);
  border-radius: 999px;
  background: rgba(255, 249, 241, 0.9);
}

.district-card-pill-code,
.district-card-pill-arrow {
  color: #e66c00;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.district-card-pill-label {
  color: #465266;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.district-card h3 {
  margin: 0;
  color: #121827;
  font-size: clamp(1.3rem, 1.8vw, 1.7rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.district-card-note {
  margin: 0;
  color: #6a7383;
  font-size: 0.88rem;
  line-height: 1.55;
  min-height: 3.1em;
}

.district-card-links {
  display: grid;
  gap: 8px;
}

.district-card-links a {
  position: relative;
  color: #39465c;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.4;
  transition: color 160ms ease, transform 160ms ease;
}

.district-card-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 200ms ease;
}

.district-card-links a:hover {
  color: #e66c00;
  transform: translateX(2px);
}

.district-card-links a:hover::after {
  transform: scaleX(1);
}

.district-card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(210, 214, 220, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.district-card-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #8b95a5;
  font-size: 0.95rem;
  font-weight: 500;
}

.district-card-meta::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #c6ccd6;
}

.district-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #e8e8ec;
  color: #8e96a4;
  text-decoration: none;
  font-size: 1.8rem;
  line-height: 1;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.district-card:hover .district-card-arrow {
  transform: rotate(-45deg);
  background: #f57c00;
  color: #ffffff;
}

.district-card:hover .district-card-pill {
  border-color: rgba(240, 157, 10, 0.66);
}

.district-card:hover h3 {
  color: #e66c00;
}

.content-card h3,
.detail-card strong {
  display: block;
  margin: 0 0 10px;
  font-size: var(--font-card-title);
}

.section-footer {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-dark);
  font-weight: 800;
}

.text-link::after {
  content: ">";
  line-height: 1;
}

.accent-section {
  background: linear-gradient(180deg, rgba(223, 242, 238, 0.45), rgba(243, 239, 231, 0));
}

.reviews-section {
  --reviews-per-view: 4;
  background: #ececee;
}

.reviews-section .container {
  width: min(1280px, calc(100% - 24px));
}

.reviews-header {
  display: grid;
  gap: 28px;
  justify-items: center;
  margin-bottom: 26px;
  text-align: center;
}

.reviews-title {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: #121a2b;
  font-size: var(--font-section);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.reviews-title-icon {
  font-size: 0.8em;
}

.reviews-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #3f4d63;
  font-size: var(--font-label);
  line-height: 1.3;
}

.reviews-summary strong {
  color: #121a2b;
  font-size: var(--font-card-title);
  letter-spacing: -0.02em;
}

.review-stars {
  display: inline-flex;
  gap: 2px;
}

.review-stars span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: #00b67a;
  color: #fff;
  font-size: 1rem;
  line-height: 1;
}

.review-stars.compact span {
  width: 22px;
  height: 22px;
  font-size: 0.72rem;
}

.reviews-brand {
  color: #00b67a;
  font-size: 1.15rem;
  line-height: 1;
}

.reviews-brand-label {
  color: #121a2b;
}

.reviews-slider-shell {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: 18px;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

.reviews-viewport {
  overflow: hidden;
  min-width: 0;
  padding: 12px 0 16px;
}

.reviews-grid {
  display: flex;
  gap: 18px;
  min-width: 0;
  padding: 0 2px;
  transition: transform 420ms ease;
  will-change: transform;
}

.reviews-arrow {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(24, 32, 50, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  color: #2c3648;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.reviews-arrow.is-accent {
  border-color: rgba(31, 115, 229, 0.9);
  color: #1665d8;
  background: rgba(255, 255, 255, 0.55);
}

.reviews-arrow:disabled {
  opacity: 0.45;
  cursor: default;
}

.review-card {
  display: grid;
  flex: 0 0 auto;
  min-width: 0;
  gap: 20px;
  min-height: 336px;
  padding: 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 6px 16px rgba(35, 45, 67, 0.025);
}

.review-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: nowrap;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: #dde2e8;
  border: 1px solid #c8d0da;
  color: #445165;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  align-self: flex-start;
  white-space: nowrap;
}

.verified-badge::before {
  content: "✓";
  margin-right: 4px;
  font-size: 0.78em;
}

.review-card h3 {
  margin: 0;
  color: #182132;
  font-size: 1.08rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.review-card p {
  margin: 0;
  color: #455368;
  font-size: 0.9rem;
  line-height: 1.6;
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  color: #536176;
  font-size: 0.86rem;
}

.reviews-footer {
  margin: 34px 0 0;
  text-align: center;
  color: #425066;
  font-size: 1.05rem;
}

.reviews-footer strong,
.reviews-summary strong {
  font-weight: 800;
}

.stacked-cards {
  display: grid;
  gap: 14px;
}

.mini-card {
  padding: 22px;
  font-weight: 700;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step-item {
  display: grid;
  gap: 14px;
  padding: 22px;
  font-weight: 700;
}

.step-item span:first-child {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 800;
}

.contact-panel {
  align-items: start;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  padding: 28px;
}

.contact-panel .contact-details {
  grid-template-columns: 1fr;
  gap: 16px;
}

.contact-panel .detail-card {
  padding: 18px 20px;
  border-radius: 16px;
}

.contact-panel .detail-card strong {
  margin-bottom: 6px;
  font-size: 1rem;
}

.contact-panel .detail-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.contact-panel .detail-card .text-link {
  margin-top: 10px;
  font-size: 0.86rem;
}

.contact-panel .section-footer {
  grid-column: 1 / -1;
  justify-content: center;
  margin-top: 12px;
}

.process-showcase-section {
  background: linear-gradient(180deg, #f3f4f6 0%, #eef1f4 100%);
}

.process-showcase-header {
  display: grid;
  gap: 10px;
  justify-items: center;
  margin-bottom: 24px;
  padding-top: 14px;
  text-align: center;
}

.process-showcase-header h2 {
  margin: 0;
  color: #1a1830;
  font-size: var(--font-section);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.process-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.process-showcase-card {
  position: relative;
  display: grid;
  justify-items: center;
  min-width: 0;
  padding: 16px 12px 0;
  color: inherit;
  text-decoration: none;
  text-align: center;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  z-index: 1;
}

.process-showcase-section .container.is-visible .process-showcase-card:nth-child(1) {
  animation: process-showcase-card-in 720ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 180ms;
}

.process-showcase-section .container.is-visible .process-showcase-card:nth-child(2) {
  animation: process-showcase-card-in 720ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 1380ms;
}

.process-showcase-section .container.is-visible .process-showcase-card:nth-child(3) {
  animation: process-showcase-card-in 720ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 2580ms;
}

.process-showcase-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 62px;
  left: calc(50% + 46px);
  width: calc(100% - 64px);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(238, 145, 74, 0.9), rgba(238, 145, 74, 0.28));
  transform: scaleX(0);
  transform-origin: left center;
}

.process-showcase-section .container.is-visible .process-showcase-card:nth-child(1)::after {
  animation: process-showcase-line-in 700ms ease forwards;
  animation-delay: 900ms;
}

.process-showcase-section .container.is-visible .process-showcase-card:nth-child(2)::after {
  animation: process-showcase-line-in 700ms ease forwards;
  animation-delay: 2100ms;
}

.process-showcase-top {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.process-showcase-icon-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ff7e1c 0%, #f58c42 100%);
  box-shadow: 0 16px 28px rgba(245, 140, 66, 0.22);
}

.process-showcase-step {
  position: absolute;
  top: -6px;
  right: -6px;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #0f172a;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.14);
}

.process-showcase-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #ffffff;
}

.process-showcase-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-showcase-card h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: var(--font-card-title);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.process-showcase-card p {
  margin: 0;
  max-width: 28ch;
  color: var(--muted);
  font-size: var(--font-body);
  line-height: 1.6;
}

.process-showcase-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 22px;
  padding: 0 22px;
  border-radius: 999px;
  background: #efe1cb;
  color: #f06d11;
  font-size: var(--font-label);
  font-weight: 800;
  line-height: 1;
}

.fleet-showcase-section {
  background:
    radial-gradient(circle at top right, rgba(222, 122, 18, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(247, 248, 250, 0.96), rgba(238, 241, 244, 0.92));
}

.fleet-showcase-shell {
  display: grid;
  gap: 26px;
  width: min(1360px, calc(100% - 12px));
}

.fleet-showcase-head {
  position: relative;
  display: grid;
  gap: 18px;
  justify-items: center;
}

.fleet-showcase-copy {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.fleet-showcase-copy h2 {
  margin: 0;
  color: #1a1830;
  font-size: var(--font-section);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.fleet-showcase-nav {
  display: none;
}

.fleet-showcase-arrow {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--muted);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.fleet-showcase-arrow:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(222, 122, 18, 0.38);
  color: var(--accent);
  background: rgba(255, 247, 237, 0.92);
}

.fleet-showcase-arrow:disabled {
  opacity: 0.4;
  cursor: default;
}

.fleet-showcase-viewport {
  overflow: hidden;
  min-width: 0;
  padding-top: 6px;
  margin-top: -6px;
}

.fleet-showcase-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: 2px;
}

.fleet-showcase-card {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 18px 14px 16px;
  border: 1px solid rgba(216, 221, 227, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 8px 16px rgba(35, 42, 56, 0.03);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.fleet-showcase-image-frame {
  display: grid;
  place-items: center;
  min-height: 126px;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(226, 231, 237, 0.9);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.96), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 244, 247, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    border-color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.fleet-showcase-image-frame img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 96px;
  object-fit: contain;
}

.fleet-showcase-card h3 {
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(216, 221, 227, 0.9);
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  transition: color 220ms ease, border-color 220ms ease;
}

.fleet-showcase-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.8rem;
  flex-wrap: wrap;
}

.fleet-showcase-meta > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.fleet-showcase-meta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.fleet-showcase-meta-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fleet-showcase-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.fleet-showcase-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--accent);
  font-size: var(--font-label);
  font-weight: 800;
  transition: gap 180ms ease, color 180ms ease;
}

.fleet-showcase-link::after {
  content: "→";
  line-height: 1;
}

.customer-voices-section {
  background:
    radial-gradient(circle at top left, rgba(222, 122, 18, 0.06), transparent 20%),
    linear-gradient(180deg, rgba(247, 248, 250, 0.96), rgba(238, 241, 244, 0.94));
}

.customer-voices-shell {
  display: grid;
  gap: 28px;
}

.customer-voices-header {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.customer-voices-header h2 {
  margin: 0;
  color: #1a1830;
  font-size: var(--font-section);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.customer-voices-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px 0 4px;
}

.customer-voices-rating,
.customer-voices-count,
.customer-voices-platforms {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.customer-voices-rating strong,
.customer-voices-count strong {
  color: var(--text);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.customer-voices-rating > span:last-child,
.customer-voices-count span {
  color: var(--muted);
  font-size: var(--font-label);
}

.customer-voices-stars {
  display: inline-flex;
  gap: 2px;
}

.customer-voices-stars span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #f4b31a;
  font-size: 1.45rem;
  line-height: 1;
}

.customer-voices-stars.compact span {
  width: 18px;
  height: 18px;
  font-size: 1rem;
}

.customer-voices-divider {
  width: 1px;
  height: 54px;
  background: rgba(216, 221, 227, 0.9);
}

.customer-voices-platforms {
  flex-wrap: wrap;
}

.customer-voices-platform {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(216, 221, 227, 0.96);
  color: var(--muted);
  font-size: var(--font-meta);
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(35, 42, 56, 0.03);
}

.customer-voices-platform-logo {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.customer-voices-platform-logo svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.customer-voices-platform-google {
  background: rgba(66, 133, 244, 0.08);
  border-color: rgba(66, 133, 244, 0.18);
  color: #365eae;
}

.customer-voices-platform-google .customer-voices-platform-logo {
  color: #4285f4;
}

.customer-voices-platform-google .customer-voices-platform-logo svg {
  fill: currentColor;
  stroke: none;
}

.customer-voices-platform-tripadvisor {
  background: rgba(0, 166, 128, 0.08);
  border-color: rgba(0, 166, 128, 0.2);
  color: #0b7b62;
}

.customer-voices-platform-tripadvisor .customer-voices-platform-logo {
  color: #00a680;
}

.customer-voices-platform-trustpilot {
  background: rgba(0, 182, 122, 0.08);
  border-color: rgba(0, 182, 122, 0.18);
  color: #0c8d61;
}

.customer-voices-platform-trustpilot .customer-voices-platform-logo {
  color: #00b67a;
}

.customer-voices-platform-trustpilot .customer-voices-platform-logo svg {
  fill: currentColor;
  stroke: none;
}

.customer-voices-slider-shell {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 12px;
  align-items: center;
}

.customer-voices-arrow {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(216, 221, 227, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.customer-voices-arrow.is-accent {
  color: var(--accent);
}

.customer-voices-arrow:disabled {
  opacity: 0.4;
  cursor: default;
}

.customer-voices-viewport {
  overflow: hidden;
  min-width: 0;
  padding: 8px 0 10px;
}

.customer-voices-track {
  display: flex;
  gap: 14px;
  min-width: 0;
  padding: 0 2px;
  transition: transform 420ms ease;
  will-change: transform;
}

.customer-voice-card {
  flex: 0 0 auto;
  display: grid;
  gap: 12px;
  min-width: 0;
  min-height: 310px;
  padding: 18px;
  border: 1px solid rgba(216, 221, 227, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 18px rgba(35, 42, 56, 0.03);
}

.customer-voice-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.customer-voice-avatar {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 2px solid rgba(222, 122, 18, 0.45);
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 800;
}

.customer-voice-head {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.customer-voice-head strong {
  color: var(--text);
  font-size: 0.96rem;
}

.customer-voice-head span {
  color: var(--muted);
  font-size: 0.78rem;
}

.customer-voice-quote {
  color: rgba(240, 109, 17, 0.14);
  font-size: 4rem;
  line-height: 0.8;
}

.customer-voice-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
}

.customer-voice-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.35;
}

.customer-voice-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.customer-voice-verified {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #22a652;
  font-size: var(--font-meta);
  font-weight: 700;
}

.customer-voice-verified::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-size: 0.78rem;
  line-height: 1;
}

.faq-accordion-section {
  background:
    linear-gradient(180deg, rgba(247, 248, 250, 0.98), rgba(241, 244, 247, 0.96));
}

.faq-accordion-shell {
  display: grid;
  gap: 20px;
}

.faq-accordion-header {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.faq-accordion-header h2 {
  margin: 0;
  color: #1a1830;
  font-size: var(--font-section);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.faq-accordion-intro {
  margin: 0;
  max-width: 88ch;
  color: var(--muted);
  font-size: var(--font-body);
  line-height: 1.7;
}

.faq-accordion-list {
  width: min(100%, 920px);
  margin: 0 auto;
}

.faq-accordion-list.is-multi-column {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 20px;
}

.faq-accordion-item {
  border-bottom: 1px solid rgba(216, 221, 227, 0.92);
}

.faq-accordion-item:first-child {
  border-top: 1px solid rgba(216, 221, 227, 0.92);
}

.faq-accordion-list.is-multi-column .faq-accordion-item:first-child {
  border-top: 0;
}

.faq-accordion-item summary {
  position: relative;
  display: block;
  padding: 18px 40px 18px 0;
  list-style: none;
  cursor: pointer;
}

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

.faq-accordion-item summary span {
  display: block;
  color: var(--text);
  font-size: clamp(0.875rem, 1.25vw, 1.055rem);
  font-weight: 700;
  line-height: 1.45;
}

.faq-accordion-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #4b5563;
  border-bottom: 2px solid #4b5563;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 180ms ease, border-color 180ms ease;
}

.faq-accordion-item[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
  border-color: var(--accent);
}

.faq-accordion-answer {
  padding: 0 0 16px;
}

.faq-accordion-answer p {
  margin: 0;
  max-width: 72ch;
  color: var(--muted);
  font-size: var(--font-body);
  line-height: 1.7;
}

.fleet-showcase-link:hover {
  gap: 14px;
  color: var(--accent-dark);
}

.fleet-showcase-card:hover {
  transform: translateY(-4px);
  border-color: rgba(222, 122, 18, 0.26);
  box-shadow: 0 14px 28px rgba(58, 60, 67, 0.06);
}

.fleet-showcase-card:hover .fleet-showcase-image-frame {
  border-color: rgba(222, 122, 18, 0.2);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 12px 22px rgba(35, 42, 56, 0.06);
}

.fleet-showcase-card:hover h3 {
  color: var(--accent-dark);
  border-color: rgba(222, 122, 18, 0.22);
}

@keyframes process-showcase-card-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes process-showcase-line-in {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.page-hero {
  padding-top: 42px;
}

.page-title {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-size: var(--font-display);
  max-width: 12ch;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 22px;
  align-items: start;
}

.detail-panel {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.seo-route-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.seo-route-stat {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid rgba(216, 205, 189, 0.7);
  border-radius: 18px;
  background: rgba(255, 252, 247, 0.72);
}

.seo-route-stat span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-route-stat strong {
  color: #111111;
  font-size: 1.12rem;
  line-height: 1.15;
}

.seo-route-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.6;
}

.page-hero .lead {
  max-width: 52ch;
}

.services-page-title {
  max-width: 9.5ch;
}

.service-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.service-hero-support {
  max-width: 58ch;
  margin: 14px 0 0;
  color: #5f6c80;
  font-size: var(--font-body);
  line-height: 1.72;
}

.service-hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(216, 205, 189, 0.9);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.74);
  color: #334155;
  font-size: var(--font-meta);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.services-catalog-section {
  background:
    radial-gradient(circle at top right, rgba(12, 122, 106, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.55), rgba(243, 239, 231, 0));
}

.services-seo-panel {
  display: grid;
  gap: 18px;
  width: min(1320px, calc(100% - 12px));
  margin-bottom: 22px;
  padding: 20px 20px 18px;
  border: 1px solid rgba(210, 214, 220, 0.9);
  border-radius: 24px;
  background: #ececee;
  box-shadow: none;
}

.services-seo-kicker {
  margin: 0;
  color: #3f4b5d;
  font-size: var(--font-label);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.services-seo-intro-grid {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 0;
  align-items: start;
}

.services-seo-title-block {
  justify-self: start;
  padding: 0 28px 22px 0;
  border-bottom: 0;
  background-image: none;
}

.services-seo-side-copy {
  padding: 0;
  margin-left: 0;
  border-left: 0;
  background-image: none;
  min-height: 100%;
}

.services-seo-side-copy p {
  padding: 6px 0 0 24px;
}

.services-seo-main-copy {
  grid-column: 1 / -1;
  padding-top: 18px;
}

.services-seo-panel h2 {
  margin: 0;
  color: #0f172a;
  font-size: var(--font-section);
  line-height: 1.02;
  letter-spacing: -0.06em;
  max-width: none;
}

.services-seo-copy {
  display: grid;
  gap: 12px;
}

.services-seo-copy p {
  margin: 0;
  color: #425066;
  font-size: var(--font-body);
  line-height: 1.72;
  letter-spacing: -0.02em;
}

.services-seo-divider {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-top: 2px;
}

.services-seo-divider span {
  display: block;
  height: 1px;
  background: #c8d0da;
}

.services-seo-divider i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #efb03a, #e39c1f);
  color: #fffdf8;
  font-style: normal;
  font-size: var(--font-kicker);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-seo-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.services-seo-stat {
  display: grid;
  gap: 4px;
}

.services-seo-stat > span {
  color: #4b5563;
  font-size: var(--font-meta);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.services-seo-stat strong {
  color: #0f172a;
  font-size: var(--font-section);
  line-height: 1;
  letter-spacing: -0.05em;
}

.services-seo-stat-plus {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: var(--accent);
}

.services-overview-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: center;
  padding: 32px 0;
  border-radius: 0;
}

.services-overview-band {
  width: 100%;
  margin: 18px 0 36px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.92), transparent 24%),
    radial-gradient(circle at 84% 22%, rgba(222, 122, 18, 0.12), transparent 28%),
    radial-gradient(circle at 70% 78%, rgba(231, 235, 240, 0.8), transparent 26%),
    linear-gradient(180deg, rgba(248, 249, 251, 0.96), rgba(241, 244, 247, 0.94));
  border-radius: 0;
  position: relative;
}

.services-overview-band::before,
.services-overview-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  pointer-events: none;
}

.services-overview-band::before {
  top: 0;
  background: linear-gradient(90deg, rgba(222, 122, 18, 0), rgba(222, 122, 18, 0.28) 18%, rgba(222, 122, 18, 0.28) 82%, rgba(222, 122, 18, 0));
}

.services-overview-band::after {
  bottom: 0;
  background: linear-gradient(90deg, rgba(216, 221, 227, 0), rgba(216, 221, 227, 0.72) 18%, rgba(216, 221, 227, 0.72) 82%, rgba(216, 221, 227, 0));
}

.services-overview-band .eyebrow {
  color: var(--accent);
}

.services-overview-band h2 {
  color: var(--text);
}

.services-overview-band p:last-child {
  color: var(--muted);
}

.services-overview-panel h2 {
  margin: 0;
  font-size: var(--font-section);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.services-overview-panel p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: var(--font-body);
  line-height: 1.75;
}

.services-overview-band .services-overview-panel p:last-child {
  color: var(--muted);
}

.detail-facts-section {
  padding-top: 28px;
}

.detail-facts-shell {
  display: grid;
  gap: 18px;
}

.detail-facts-crumb {
  margin: 0;
  color: #6f7b8e;
  font-size: var(--font-kicker);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-facts-crumb a,
.detail-facts-crumb span {
  color: inherit;
}

.detail-facts-crumb a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.detail-facts-crumb a:hover,
.detail-facts-crumb a:focus-visible {
  color: var(--accent);
}

.detail-facts-crumb-separator {
  margin: 0 0.45rem;
}

.detail-facts-head {
  display: grid;
  gap: 10px;
  max-width: 78ch;
}

.detail-facts-head h2 {
  margin: 0;
  color: #101826;
  font-size: var(--font-section);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.detail-facts-head p {
  margin: 0;
  color: #5f6c80;
  font-size: var(--font-body);
  line-height: 1.72;
}

.detail-facts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.detail-fact-card {
  display: grid;
  gap: 6px;
  min-height: 96px;
  padding: 13px 14px;
  border: 1px solid rgba(214, 218, 224, 0.9);
  border-radius: 16px;
  background: rgba(251, 252, 253, 0.88);
  box-shadow: 0 6px 16px rgba(32, 39, 49, 0.02);
}

.detail-fact-card span {
  color: #d8740c;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-fact-card strong {
  color: #152031;
  font-size: clamp(0.9rem, 1.2vw, 1.08rem);
  line-height: 1.36;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.detail-facts-highlight-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(214, 218, 224, 0.9);
  border-radius: 18px;
  background: rgba(251, 252, 253, 0.88);
}

.detail-facts-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.detail-facts-highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 244, 229, 0.92);
  color: #cf7a12;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  flex: 0 0 auto;
}

.detail-facts-highlight-label {
  display: block;
  margin-bottom: 2px;
  color: #d8740c;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-facts-highlight strong {
  display: block;
  color: #182232;
  font-size: 0.84rem;
  line-height: 1.3;
  font-weight: 700;
}

.detail-airport-spotlight-section {
  padding-top: 12px;
}

.detail-airport-spotlight-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: start;
}

.detail-airport-spotlight-main,
.detail-airport-spotlight-side {
  border: 1px solid rgba(214, 218, 224, 0.92);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.82), transparent 34%),
    linear-gradient(180deg, rgba(249, 250, 252, 0.96), rgba(244, 246, 249, 0.94));
  box-shadow: 0 12px 26px rgba(32, 39, 49, 0.04);
}

.detail-airport-spotlight-main {
  display: grid;
  gap: 22px;
  padding: 30px;
}

.detail-airport-spotlight-copy {
  display: grid;
  gap: 16px;
}

.detail-airport-spotlight-copy h2 {
  margin: 0;
  color: #101826;
  font-size: clamp(1.8rem, 3.2vw, 2.95rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  max-width: 10ch;
}

.detail-airport-spotlight-copy p,
.detail-airport-spotlight-side-intro,
.detail-airport-spotlight-note p,
.detail-airport-spotlight-closing {
  margin: 0;
  color: #586577;
  font-size: 0.97rem;
  line-height: 1.66;
}

.detail-airport-spotlight-copy strong,
.detail-airport-spotlight-side-intro strong {
  color: #1b2638;
}

.detail-airport-spotlight-services {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(214, 218, 224, 0.92);
  border-radius: 24px;
  background: rgba(252, 253, 255, 0.82);
}

.detail-airport-spotlight-eyebrow {
  margin: 0;
  color: #6d798c;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-airport-spotlight-keywords {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.detail-airport-spotlight-chip {
  display: block;
  padding: 14px 18px;
  border: 1px solid rgba(221, 225, 231, 0.96);
  border-radius: 18px;
  background: rgba(248, 250, 252, 0.94);
  color: #253043;
  font-size: 0.92rem;
  line-height: 1.4;
  font-weight: 600;
}

.detail-airport-spotlight-side {
  display: grid;
  gap: 16px;
  padding: 30px;
}

.detail-airport-spotlight-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-airport-spotlight-list li {
  position: relative;
  padding-left: 22px;
  color: #445165;
  font-size: 0.96rem;
  line-height: 1.64;
}

.detail-airport-spotlight-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #e58c1b;
  box-shadow: 0 0 0 6px rgba(229, 140, 27, 0.12);
}

.detail-airport-spotlight-stack {
  display: grid;
  gap: 12px;
}

.detail-airport-spotlight-note {
  display: grid;
  gap: 10px;
  padding: 20px 22px;
  border: 1px solid rgba(220, 224, 230, 0.92);
  border-radius: 22px;
  background: rgba(250, 252, 254, 0.84);
}

.detail-airport-spotlight-note h3 {
  margin: 0;
  color: #162131;
  font-size: clamp(0.96rem, 1.1vw, 1.08rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.detail-airport-spotlight-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(227, 144, 22, 0.64);
  border-radius: 999px;
  background: rgba(255, 244, 229, 0.68);
  color: #cf7a12;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    background 220ms ease,
    color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.detail-airport-spotlight-cta:hover,
.detail-airport-spotlight-cta:focus-visible {
  background: rgba(227, 144, 22, 0.92);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(207, 122, 18, 0.14);
}

.detail-editorial-mosaic-section {
  padding-top: 8px;
}

.detail-editorial-mosaic-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.82fr);
  gap: 28px;
  align-items: start;
}

.detail-editorial-mosaic-copy,
.detail-editorial-mosaic-media {
  border: 1px solid rgba(214, 218, 224, 0.92);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.82), transparent 34%),
    linear-gradient(180deg, rgba(249, 250, 252, 0.96), rgba(244, 246, 249, 0.94));
  box-shadow: 0 12px 26px rgba(32, 39, 49, 0.04);
}

.detail-editorial-mosaic-copy {
  display: grid;
  gap: 24px;
  padding: 30px;
}

.detail-editorial-mosaic-head {
  display: grid;
  gap: 14px;
}

.detail-editorial-mosaic-head h2 {
  margin: 0;
  color: #101826;
  font-size: clamp(1.95rem, 3.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.detail-editorial-mosaic-head p,
.detail-editorial-mosaic-block p,
.detail-editorial-mosaic-block li {
  margin: 0;
  color: #586577;
  font-size: 0.98rem;
  line-height: 1.72;
}

.detail-editorial-mosaic-head strong,
.detail-editorial-mosaic-block strong {
  color: #172133;
}

.detail-editorial-mosaic-sections {
  display: grid;
  gap: 18px;
}

.detail-editorial-mosaic-block {
  display: grid;
  gap: 12px;
  padding: 22px 24px;
  border: 1px solid rgba(220, 224, 230, 0.92);
  border-radius: 22px;
  background: rgba(251, 252, 254, 0.84);
}

.detail-editorial-mosaic-block h3 {
  margin: 0;
  color: #162131;
  font-size: clamp(1.02rem, 1.25vw, 1.3rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.detail-editorial-mosaic-block ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.15rem;
}

.detail-editorial-mosaic-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 20px;
  padding-bottom: 236px;
}

.detail-editorial-mosaic-image {
  margin: 0;
  min-height: 220px;
  border-radius: 22px;
  overflow: hidden;
  background: #eef2f7;
  box-shadow: 0 12px 22px rgba(24, 31, 42, 0.08);
}

.detail-editorial-mosaic-media .detail-editorial-mosaic-image:nth-child(odd) {
  transform: translateY(144px);
}

.detail-editorial-mosaic-image.is-tall {
  min-height: 340px;
}

.detail-editorial-mosaic-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-guide-sidebar-section {
  padding-top: 10px;
}

.detail-guide-sidebar-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: start;
}

.detail-guide-sidebar-main {
  display: grid;
  gap: 26px;
}

.detail-guide-sidebar-head {
  display: grid;
  gap: 14px;
}

.detail-guide-sidebar-head h2 {
  margin: 0;
  color: #101826;
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.detail-guide-sidebar-head p,
.detail-guide-sidebar-step p,
.detail-guide-sidebar-tip p,
.detail-guide-sidebar-tip li {
  margin: 0;
  color: #586577;
  font-size: 0.98rem;
  line-height: 1.72;
}

.detail-guide-sidebar-steps {
  display: grid;
  gap: 24px;
}

.detail-guide-sidebar-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.detail-guide-sidebar-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: #efaa35;
  color: #101826;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
}

.detail-guide-sidebar-step h3 {
  margin: 0 0 8px;
  color: #162131;
  font-size: clamp(1.18rem, 1.45vw, 1.6rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.detail-guide-sidebar-tip {
  display: grid;
  gap: 18px;
  padding: 30px;
  border-radius: 30px;
  background:
    radial-gradient(circle at bottom center, rgba(231, 142, 18, 0.18), transparent 38%),
    linear-gradient(180deg, #070707, #020202);
  box-shadow: 0 16px 30px rgba(20, 20, 22, 0.12);
}

.detail-guide-sidebar-tip h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.22rem, 1.45vw, 1.6rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.detail-guide-sidebar-tip p,
.detail-guide-sidebar-tip li {
  color: rgba(248, 249, 252, 0.88);
}

.detail-guide-sidebar-tip ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-guide-sidebar-tip li {
  position: relative;
  padding-left: 24px;
}

.detail-guide-sidebar-tip li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #efaa35;
}

.detail-faq-copy-grid-section {
  padding-top: 10px;
}

.detail-faq-copy-grid-shell {
  display: grid;
  gap: 28px;
}

.detail-faq-copy-grid-head {
  display: grid;
  gap: 14px;
  max-width: 88ch;
  margin: 0 auto;
  text-align: center;
}

.detail-faq-copy-grid-head h2 {
  margin: 0;
  color: #101826;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.detail-faq-copy-grid-head p,
.detail-faq-copy-card p {
  margin: 0;
  color: #5c687a;
  font-size: 0.98rem;
  line-height: 1.72;
}

.detail-faq-copy-grid-head strong,
.detail-faq-copy-card strong {
  color: #162131;
}

.detail-faq-copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 46px;
}

.detail-faq-copy-card {
  display: grid;
  gap: 10px;
  align-content: start;
}

.detail-faq-copy-card h3 {
  margin: 0;
  color: #162131;
  font-size: clamp(1.06rem, 1.35vw, 1.45rem);
  line-height: 1.38;
  letter-spacing: -0.02em;
}

.detail-compact-route-links-section {
  padding-top: 10px;
}

.detail-compact-route-links-shell {
  display: grid;
  gap: 16px;
}

.detail-compact-route-links-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.detail-compact-route-links-head > div {
  display: grid;
  gap: 6px;
  max-width: 72ch;
}

.detail-compact-route-links-head h2 {
  margin: 0;
  color: #101826;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.detail-compact-route-links-head p {
  margin: 0;
  color: #5c687a;
  font-size: 0.84rem;
  line-height: 1.52;
}

.detail-compact-route-links-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(214, 218, 224, 0.92);
  border-radius: 999px;
  background: rgba(252, 253, 255, 0.88);
  color: #2b3749;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.detail-compact-route-links-cta:hover,
.detail-compact-route-links-cta:focus-visible {
  color: var(--accent);
  border-color: rgba(227, 144, 22, 0.44);
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(29, 36, 47, 0.06);
}

.detail-compact-route-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.detail-compact-route-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(214, 218, 224, 0.92);
  border-radius: 16px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.7), transparent 34%),
    linear-gradient(180deg, rgba(249, 250, 252, 0.96), rgba(244, 246, 249, 0.94));
  box-shadow: 0 6px 14px rgba(32, 39, 49, 0.025);
}

.detail-compact-route-card-eyebrow {
  color: #e49122;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-compact-route-card h3 {
  margin: 0;
  color: #162131;
  font-size: clamp(0.9rem, 1vw, 1.02rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.detail-compact-route-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  color: #394659;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}

.detail-compact-route-card-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease;
}

.detail-compact-route-card-link:hover,
.detail-compact-route-card-link:focus-visible {
  color: var(--accent);
}

.detail-compact-route-card-link:hover::after,
.detail-compact-route-card-link:focus-visible::after {
  transform: scaleX(1);
}

.detail-transfer-insights-section {
  padding-top: 10px;
}

.detail-transfer-insights-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.72fr);
  gap: 24px;
  align-items: start;
}

.detail-transfer-insights-main,
.detail-transfer-insights-airport {
  border: 1px solid rgba(214, 218, 224, 0.92);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.76), transparent 32%),
    linear-gradient(180deg, rgba(249, 250, 252, 0.96), rgba(244, 246, 249, 0.95));
  box-shadow: 0 14px 26px rgba(32, 39, 49, 0.04);
}

.detail-transfer-insights-main {
  display: grid;
  gap: 18px;
  padding: 30px;
}

.detail-transfer-insights-head {
  display: grid;
  gap: 14px;
}

.detail-transfer-insights-head h2 {
  margin: 0;
  color: #101826;
  font-size: clamp(2rem, 3.6vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 11ch;
}

.detail-transfer-insights-head p,
.detail-transfer-insights-card p,
.detail-transfer-insights-support p,
.detail-transfer-insights-row strong {
  margin: 0;
  color: #5d697c;
  font-size: 0.98rem;
  line-height: 1.68;
}

.detail-transfer-insights-card {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(219, 223, 229, 0.94);
  border-radius: 24px;
  background: rgba(250, 252, 254, 0.84);
}

.detail-transfer-insights-card h3,
.detail-transfer-insights-airport-head h3 {
  margin: 0;
  color: #142033;
  font-size: clamp(1.28rem, 1.7vw, 1.7rem);
  line-height: 1.24;
  letter-spacing: -0.02em;
}

.detail-transfer-insights-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: #3f4b5f;
  font-size: 0.98rem;
  line-height: 1.62;
}

.detail-transfer-insights-details {
  display: grid;
  gap: 18px;
}

.detail-transfer-insights-details > summary {
  list-style: none;
}

.detail-transfer-insights-details > summary::-webkit-details-marker {
  display: none;
}

.detail-transfer-insights-expanded {
  display: grid;
  gap: 18px;
  order: 1;
}

.detail-transfer-insights-toggle {
  order: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid rgba(216, 221, 227, 0.96);
  border-radius: 999px;
  background: rgba(252, 253, 255, 0.92);
  color: #243043;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    border-color 220ms ease,
    color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.detail-transfer-insights-toggle:hover,
.detail-transfer-insights-toggle:focus-visible {
  border-color: rgba(226, 147, 29, 0.48);
  color: #cf7a12;
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(32, 39, 49, 0.06);
}

.detail-transfer-insights-toggle-open,
.detail-transfer-insights-details[open] .detail-transfer-insights-toggle-closed {
  display: none;
}

.detail-transfer-insights-details[open] .detail-transfer-insights-toggle-open {
  display: inline;
}

.detail-transfer-insights-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.detail-transfer-insight-option {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid rgba(219, 223, 229, 0.94);
  border-radius: 20px;
  background: rgba(250, 252, 254, 0.84);
}

.detail-transfer-insight-option span {
  color: #d8740c;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-transfer-insight-option strong {
  color: #223043;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 700;
}

.detail-transfer-insights-side {
  position: sticky;
  top: 104px;
}

.detail-transfer-insights-airport {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.detail-transfer-insights-airport-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.detail-transfer-insights-airport-head p {
  margin: 4px 0 0;
  color: #6a7688;
  font-size: 0.94rem;
}

.detail-transfer-insights-airport-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: rgba(255, 243, 226, 0.92);
  color: #d17b13;
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  flex: 0 0 auto;
}

.detail-transfer-insights-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(221, 245, 232, 0.76);
  color: #1f9a62;
}

.detail-transfer-insights-status span,
.detail-transfer-insights-status strong {
  font-size: 0.92rem;
  font-weight: 800;
}

.detail-transfer-insights-data-grid {
  display: grid;
  gap: 10px;
}

.detail-transfer-insights-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 12px;
  align-items: center;
  padding: 15px 18px;
  border-radius: 18px;
  background: rgba(248, 250, 252, 0.92);
}

.detail-transfer-insights-row span {
  color: #6a7688;
  font-size: 0.86rem;
  font-weight: 800;
}

.detail-transfer-insights-row strong {
  color: #223043;
  text-align: right;
}

.detail-transfer-insights-support {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 22px;
  background: #1f2940;
}

.detail-transfer-insights-support h4 {
  margin: 0;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.detail-transfer-insights-support p {
  color: rgba(230, 236, 244, 0.88);
}

.detail-transfer-insights-image {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #dbe8f5;
  position: relative;
}

.detail-transfer-insights-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.detail-transfer-insights-image figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(10, 18, 32, 0), rgba(10, 18, 32, 0.72));
  color: #fff;
  font-size: 0.94rem;
  font-weight: 700;
}

.detail-booking-steps-section {
  padding-top: 10px;
}

.detail-booking-steps-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.6fr);
  gap: 24px;
  align-items: start;
}

.detail-booking-steps-main,
.detail-booking-tip-card,
.detail-booking-support-card {
  border: 1px solid rgba(214, 218, 224, 0.92);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.74), transparent 30%),
    linear-gradient(180deg, rgba(249, 250, 252, 0.96), rgba(244, 246, 249, 0.95));
  box-shadow: 0 14px 26px rgba(32, 39, 49, 0.04);
}

.detail-booking-steps-main {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 26px;
}

.detail-booking-steps-head {
  display: grid;
  gap: 14px;
}

.detail-booking-steps-head h2 {
  margin: 0;
  color: #101826;
  font-size: clamp(1.8rem, 3.1vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 11ch;
}

.detail-booking-steps-head p,
.detail-booking-step-card p,
.detail-booking-tip-card p,
.detail-booking-support-card p {
  margin: 0;
  color: #5d697c;
  font-size: 0.95rem;
  line-height: 1.62;
}

.detail-booking-steps-list {
  display: grid;
  gap: 12px;
}

.detail-booking-step-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid rgba(219, 223, 229, 0.94);
  border-radius: 20px;
  background: rgba(250, 252, 254, 0.84);
}

.detail-booking-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 243, 226, 0.92);
  color: #d17b13;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.detail-booking-step-card h3,
.detail-booking-tip-card h3,
.detail-booking-support-card h4 {
  margin: 0 0 8px;
  color: #142033;
  font-size: clamp(1.04rem, 1.32vw, 1.28rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.detail-booking-steps-side {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 14px;
}

.detail-booking-tip-card,
.detail-booking-support-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 22px;
}

.detail-booking-tip-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-booking-tip-card li {
  position: relative;
  padding-left: 22px;
  color: #445165;
  font-size: 0.92rem;
  line-height: 1.54;
}

.detail-booking-tip-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #e58c1b;
  box-shadow: 0 0 0 6px rgba(229, 140, 27, 0.12);
}

.detail-grid-faq-section {
  padding-top: 10px;
}

.detail-grid-faq-shell {
  display: grid;
  gap: 18px;
}

.detail-grid-faq-head {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.detail-grid-faq-head .eyebrow {
  margin: 0;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 244, 229, 0.82);
}

.detail-grid-faq-head h2 {
  margin: 0;
  color: #101826;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.detail-grid-faq-head p:last-child {
  margin: 0;
  max-width: 52ch;
  color: #5f6c80;
  font-size: 0.9rem;
  line-height: 1.58;
}

.detail-grid-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}

.detail-grid-faq-card {
  align-self: start;
  border: 1px solid rgba(216, 221, 227, 0.94);
  border-radius: 16px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.7), transparent 30%),
    linear-gradient(180deg, rgba(249, 250, 252, 0.96), rgba(244, 246, 249, 0.95));
  box-shadow: 0 8px 18px rgba(32, 39, 49, 0.025);
  overflow: hidden;
}

.detail-grid-faq-card > summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 74px;
  padding: 14px 15px;
  cursor: pointer;
}

.detail-grid-faq-card > summary::-webkit-details-marker {
  display: none;
}

.detail-grid-faq-card > summary span:first-child {
  color: #1d293c;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  line-height: 1.4;
  font-weight: 600;
}

.detail-grid-faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 244, 229, 0.82);
  color: #d17b13;
  font-size: 0.88rem;
  font-weight: 700;
  flex: 0 0 auto;
  transition: transform 220ms ease;
}

.detail-grid-faq-card[open] .detail-grid-faq-icon {
  transform: rotate(180deg);
}

.detail-grid-faq-answer {
  padding: 0 15px 14px;
}

.detail-grid-faq-answer p {
  margin: 0;
  color: #5f6c80;
  font-size: 0.82rem;
  line-height: 1.5;
}

.detail-route-showcase-section {
  padding-top: 10px;
}

.detail-destinations-explorer-section {
  padding-top: 28px;
}

.detail-destinations-explorer-shell {
  padding: 34px clamp(18px, 3vw, 36px);
  border: 1px solid rgba(202, 209, 220, 0.9);
  border-radius: 30px;
  background: #f5f6f8;
}

.detail-destinations-explorer-eyebrow {
  margin: 0 0 18px;
  color: #111826;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.detail-destinations-explorer-crumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  color: #6b7280;
  font-size: 0.94rem;
}

.detail-destinations-explorer-shell h2 {
  margin: 0;
  max-width: 12ch;
  color: #111827;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.detail-destinations-explorer-intro {
  margin: 24px 0 0;
  max-width: 86ch;
  color: #374151;
  font-size: 1rem;
  line-height: 1.75;
}

.detail-destinations-explorer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.detail-destinations-explorer-card {
  min-height: 148px;
  padding: 26px 28px;
  border: 1px solid rgba(210, 216, 226, 0.95);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(17, 24, 39, 0.04);
}

.detail-destinations-explorer-card h3 {
  margin: 0;
  color: #111827;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.18;
}

.detail-destinations-explorer-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  color: #1f2937;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.detail-destinations-explorer-card a::after {
  content: "->";
  font-size: 0.92em;
}

.detail-destinations-explorer-card a:hover,
.detail-destinations-explorer-card a:focus-visible {
  color: #d8740c;
}

.airport-destinations-page .detail-destinations-explorer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.airport-destinations-page .detail-destinations-explorer-card {
  min-height: 110px;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 6px 14px rgba(17, 24, 39, 0.03);
}

.airport-destinations-page .detail-destinations-explorer-card h2 {
  margin: 0;
  max-width: none;
  color: #111827;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.airport-destinations-page .detail-destinations-explorer-card a {
  gap: 6px;
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 700;
}

@media (max-width: 1180px) {
  .airport-destinations-page .detail-destinations-explorer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .airport-destinations-page .detail-destinations-explorer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .airport-destinations-page .detail-destinations-explorer-grid {
    grid-template-columns: 1fr;
  }
}

.detail-route-showcase-shell {
  display: grid;
  gap: 14px;
}

.detail-route-showcase-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.detail-route-showcase-head h2 {
  margin: 0 0 10px;
  color: #101826;
  font-size: clamp(1.55rem, 2.6vw, 2.3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 18ch;
}

.detail-route-showcase-head p {
  margin: 0;
  max-width: 60ch;
  color: #5f6c80;
  font-size: 0.84rem;
  line-height: 1.52;
}

.detail-route-showcase-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(216, 221, 227, 0.96);
  border-radius: 999px;
  background: rgba(252, 253, 255, 0.92);
  color: #243043;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.detail-route-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.detail-route-card {
  display: grid;
  gap: 8px;
  padding: 13px;
  border: 1px solid rgba(216, 221, 227, 0.94);
  border-radius: 14px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.72), transparent 30%),
    linear-gradient(180deg, rgba(249, 250, 252, 0.96), rgba(244, 246, 249, 0.95));
  box-shadow: 0 8px 16px rgba(32, 39, 49, 0.022);
}

.detail-route-card-eyebrow {
  color: #d8740c;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-route-card h3 {
  margin: 0;
  color: #152031;
  font-size: clamp(0.84rem, 1vw, 0.94rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.detail-route-card-destination {
  margin: 0;
  color: #5f6c80;
  font-size: 0.74rem;
  line-height: 1.4;
}

.detail-route-card-stats {
  display: grid;
  gap: 6px;
}

.detail-route-card-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 9px;
  border-radius: 10px;
  background: rgba(248, 250, 252, 0.92);
}

.detail-route-card-stat span {
  color: #4d596b;
  font-size: 0.7rem;
  font-weight: 700;
}

.detail-route-card-stat strong {
  color: #1d293c;
  font-size: 0.72rem;
  line-height: 1.35;
  font-weight: 800;
  text-align: right;
}

.detail-route-card-link {
  position: relative;
  display: inline-flex;
  color: #364257;
  font-size: 0.74rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease;
}

.detail-route-card-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #d8740c;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.detail-route-card-link:hover,
.detail-route-card-link:focus-visible {
  color: #d8740c;
}

.detail-route-card-link:hover::after,
.detail-route-card-link:focus-visible::after {
  transform: scaleX(1);
}

.detail-booking-cta-section {
  padding-top: 40px;
}

.detail-search-intent-section {
  padding-top: 72px;
}

.detail-search-intent-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.95fr);
  gap: 22px;
  align-items: start;
}

.detail-search-intent-main,
.detail-search-intent-side {
  padding: 18px;
  border: 1px solid rgba(214, 220, 228, 0.95);
  border-radius: 22px;
  background: #f7f8fa;
  box-shadow: 0 10px 24px rgba(18, 27, 38, 0.04);
}

.detail-search-intent-head h2 {
  margin: 0 0 10px;
  color: #111827;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.detail-search-intent-head p {
  margin: 0;
  color: #556274;
  font-size: 0.94rem;
  line-height: 1.72;
}

.detail-search-intent-tag-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.detail-search-intent-tag {
  padding: 12px 14px;
  border: 1px solid rgba(219, 224, 232, 0.96);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
}

.detail-search-intent-tag span {
  color: #2c3b4f;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.45;
}

.detail-search-intent-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.detail-search-intent-row {
  padding: 0;
  border: 1px solid rgba(219, 224, 232, 0.96);
  border-radius: 14px;
  background: #ffffff;
  overflow: hidden;
}

.detail-search-intent-row summary {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 16px;
  cursor: pointer;
  list-style: none;
}

.detail-search-intent-row summary::-webkit-details-marker {
  display: none;
}

.detail-search-intent-row-copy {
  display: grid;
  gap: 0;
}

.detail-search-intent-row h3 {
  margin: 0;
  color: #111827;
  font-size: 1.1rem;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.detail-search-intent-row-answer {
  padding: 0 16px 16px;
}

.detail-search-intent-row-answer p {
  margin: 0;
  max-width: 58ch;
  color: #4b596d;
  font-size: 0.9rem;
  line-height: 1.65;
}

.detail-search-intent-row-toggle {
  margin-top: 2px;
  color: #d8740c;
  font-size: 0.84rem;
  font-weight: 500;
  white-space: nowrap;
}

.detail-search-intent-row[open] .detail-search-intent-row-toggle,
.detail-search-intent-row summary:hover .detail-search-intent-row-toggle,
.detail-search-intent-row summary:focus-visible .detail-search-intent-row-toggle {
  color: #b85f00;
}

.detail-search-intent-side-eyebrow {
  margin: 0 0 12px;
  color: #6b7280;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-search-intent-side-intro {
  margin: 0;
  color: #556274;
  font-size: 0.9rem;
  line-height: 1.72;
}

.detail-search-intent-side-points {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.detail-search-intent-side-points li {
  position: relative;
  padding-left: 14px;
  color: #344255;
  font-size: 0.88rem;
  line-height: 1.62;
}

.detail-search-intent-side-points li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #d8740c;
}

.detail-search-intent-side-cards {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.detail-search-intent-side-card {
  padding: 14px 15px;
  border: 1px solid rgba(219, 224, 232, 0.96);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
}

.detail-search-intent-side-card h3 {
  margin: 0 0 8px;
  color: #162132;
  font-size: 0.9rem;
  line-height: 1.35;
}

.detail-search-intent-side-card p {
  margin: 0;
  color: #566476;
  font-size: 0.82rem;
  line-height: 1.62;
}

.detail-search-intent-side-card p + p {
  margin-top: 6px;
}

.detail-search-intent-side-closing {
  margin: 14px 0 0;
  color: #556274;
  font-size: 0.86rem;
  line-height: 1.65;
}

.detail-search-intent-side-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 14px;
  padding: 0 16px;
  border: 1px solid rgba(216, 127, 15, 0.45);
  border-radius: 999px;
  color: #c76b08;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.72);
}

.detail-search-intent-side-cta:hover,
.detail-search-intent-side-cta:focus-visible {
  color: #a55500;
  border-color: rgba(199, 107, 8, 0.6);
}

.detail-booking-cta-band {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 48px 28px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 100%, rgba(212, 120, 16, 0.26), transparent 28%),
    linear-gradient(180deg, #050505, #090909);
  box-shadow: 0 22px 34px rgba(21, 25, 33, 0.12);
  text-align: center;
}

.detail-booking-cta-band.is-compact {
  gap: 9px;
  max-width: 820px;
  margin-inline: auto;
  padding: 42px 26px;
  border-radius: 26px;
}

.detail-booking-cta-band h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.detail-booking-cta-band.is-compact h2 {
  font-size: clamp(1.9rem, 3.1vw, 2.8rem);
}

.detail-booking-cta-band p {
  margin: 0;
  max-width: 40ch;
  color: rgba(231, 236, 244, 0.84);
  font-size: 1rem;
  line-height: 1.7;
}

.detail-booking-cta-band.is-compact p {
  max-width: 44ch;
  font-size: 0.96rem;
  line-height: 1.68;
}

.detail-booking-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 14px;
  background: #fff;
  color: #111826;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.detail-booking-cta-band.is-compact .detail-booking-cta-button {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 12px;
  font-size: 0.96rem;
}

.detail-booking-cta-button:hover,
.detail-booking-cta-button:focus-visible {
  background: #d8740c;
  color: #fff;
  transform: translateY(-1px);
}

.services-mid-band {
  width: 100%;
  margin: 22px 0 42px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.92), transparent 24%),
    radial-gradient(circle at 84% 22%, rgba(222, 122, 18, 0.12), transparent 28%),
    radial-gradient(circle at 70% 78%, rgba(231, 235, 240, 0.8), transparent 26%),
    linear-gradient(180deg, rgba(248, 249, 251, 0.96), rgba(241, 244, 247, 0.94));
  position: relative;
}

.services-mid-band::before,
.services-mid-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  pointer-events: none;
}

.services-mid-band::before {
  top: 0;
  background: linear-gradient(90deg, rgba(222, 122, 18, 0), rgba(222, 122, 18, 0.28) 18%, rgba(222, 122, 18, 0.28) 82%, rgba(222, 122, 18, 0));
}

.services-mid-band::after {
  bottom: 0;
  background: linear-gradient(90deg, rgba(216, 221, 227, 0), rgba(216, 221, 227, 0.72) 18%, rgba(216, 221, 227, 0.72) 82%, rgba(216, 221, 227, 0));
}

.services-mid-band .container {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 56px,
    #000 calc(100% - 56px),
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 56px,
    #000 calc(100% - 56px),
    transparent 100%
  );
}

.services-highlight-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 220px;
  gap: 22px;
  padding: 20px 0;
  width: max-content;
  will-change: transform;
}

.services-highlight-card {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 0;
  padding: 16px;
  border: 1px solid rgba(203, 206, 214, 0.78);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.48);
  overflow: hidden;
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.services-highlight-card::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: radial-gradient(circle, rgba(255, 122, 18, 0.14), rgba(255, 122, 18, 0.07) 54%, rgba(255, 122, 18, 0.02) 72%, rgba(255, 122, 18, 0));
  transform: scale(1);
  transform-origin: top left;
  opacity: 0;
  transition:
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 260ms ease;
}

.services-highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(236, 236, 240, 0.9);
  color: #1b2332;
  position: relative;
  z-index: 1;
  transition:
    background-color 260ms ease,
    color 260ms ease,
    transform 260ms ease;
}

.services-highlight-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-highlight-card strong {
  display: block;
  margin: 2px 0 0;
  color: #1a2232;
  font-size: var(--font-label);
  line-height: 1.18;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
  width: fit-content;
  transform-origin: left center;
  transition:
    color 260ms ease,
    transform 260ms ease;
}

.services-highlight-card p {
  margin: 0;
  color: #5e697b;
  font-size: var(--font-meta);
  line-height: 1.45;
  position: relative;
  z-index: 1;
  width: fit-content;
}

.services-highlight-card p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: rgba(255, 122, 18, 0.75);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 260ms ease;
}

.services-highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 18, 0.34);
  box-shadow: 0 14px 28px rgba(255, 122, 18, 0.08);
}

.services-highlight-card:hover::before {
  transform: scale(13);
  opacity: 1;
}

.services-highlight-card:hover .services-highlight-icon {
  background: rgba(255, 122, 18, 0.16);
  color: #f06d11;
  transform: translateY(-1px);
}

.services-highlight-card:hover strong {
  color: #f06d11;
  transform: scale(1.04);
}

.services-highlight-card:hover p::after {
  transform: scaleX(1);
}

.service-group-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-group-card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(216, 205, 189, 0.68);
  border-radius: 22px;
  background: rgba(255, 252, 247, 0.72);
  box-shadow: 0 10px 24px rgba(31, 38, 34, 0.035);
}

.service-group-icon-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: rgba(12, 122, 106, 0.12);
  color: #0c7a6a;
  font-size: 1.8rem;
  line-height: 1;
}

.service-group-head {
  display: grid;
  gap: 10px;
  padding-right: 88px;
}

.service-group-eyebrow {
  margin: 0;
  color: #5e6a7d;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-group-head h2 {
  margin: 0;
  color: #141c2b;
  font-size: var(--font-card-title);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.service-group-head p:last-child {
  margin: 0;
  color: #667181;
  font-size: var(--font-body);
  line-height: 1.62;
}

.service-keyword-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-keyword-list li {
  display: grid;
  gap: 10px;
  min-height: 0;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(216, 205, 189, 0.54);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  color: #223046;
  line-height: 1.45;
  box-shadow: none;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.service-item-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  max-width: 100%;
  min-height: 28px;
  padding: 0 8px;
  border: 1px solid rgba(240, 173, 91, 0.7);
  border-radius: 999px;
  background: rgba(255, 247, 237, 0.9);
}

.service-item-pill-code {
  color: #e46a16;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.service-item-pill-arrow {
  color: #f1a659;
  font-size: 0.72rem;
  line-height: 1;
}

.service-item-title {
  display: block;
  margin: 0;
  color: #1b2332;
  font-size: var(--font-meta);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.service-item-subtitle {
  margin: -4px 0 0;
  color: #748093;
  font-size: var(--font-kicker);
  line-height: 1.32;
}

.service-item-footer {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 4px;
  padding-top: 10px;
  border-top: 1px solid rgba(216, 205, 189, 0.42);
  min-width: 0;
}

.service-item-price-label {
  color: #9aa3b2;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.service-item-price {
  color: #142033;
  font-size: var(--font-meta);
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.service-item-arrow {
  display: inline-grid;
  place-items: center;
  justify-self: end;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(238, 239, 243, 0.9);
  color: #97a0af;
  font-size: 0.76rem;
  line-height: 1;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    color 220ms ease;
}

.service-keyword-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(31, 38, 34, 0.08);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(234, 149, 63, 0.38);
}

.service-keyword-list li:hover .service-item-pill {
  border-color: rgba(236, 146, 47, 0.9);
  background: rgba(255, 244, 229, 0.96);
}

.service-keyword-list li:hover .service-item-title {
  color: #f06d11;
}

.service-keyword-list li:hover .service-item-arrow {
  background: #ff7a12;
  color: #ffffff;
  transform: rotate(-45deg);
}

.service-keyword-list li:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(31, 38, 34, 0.08);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(234, 149, 63, 0.38);
}

.service-keyword-list li::before {
  content: none;
}

.service-group-card .text-link {
  margin-top: 2px;
}

.service-group-more {
  display: grid;
  gap: 12px;
}

.service-group-more summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(216, 205, 189, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: #314055;
  font-weight: 800;
  font-size: 0.76rem;
  cursor: pointer;
  list-style: none;
}

.service-group-more summary::-webkit-details-marker {
  display: none;
}

.service-group-more summary::after {
  content: "+";
  margin-left: 6px;
  font-size: 0.92rem;
  line-height: 1;
}

.service-group-more[open] summary::after {
  content: "-";
}

.service-keyword-list-extra {
  padding-top: 2px;
}

@media (max-width: 1180px) {
  .service-keyword-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-search-intent-layout {
    grid-template-columns: 1fr;
  }

  .detail-transfer-insights-layout {
    grid-template-columns: 1fr;
  }

  .detail-transfer-insights-side {
    position: static;
  }

  .detail-transfer-insights-head h2 {
    max-width: none;
  }

  .detail-booking-steps-layout {
    grid-template-columns: 1fr;
  }

  .detail-booking-steps-side {
    position: static;
  }

  .detail-booking-steps-head h2 {
    max-width: none;
  }

  .detail-grid-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-route-showcase-head {
    align-items: start;
    flex-direction: column;
  }

  .detail-route-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-destinations-explorer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-booking-cta-band {
    padding: 38px 22px;
    border-radius: 24px;
  }

  .detail-booking-cta-band.is-compact {
    padding: 34px 20px;
    border-radius: 20px;
  }

  .detail-airport-spotlight-layout {
    grid-template-columns: 1fr;
  }

  .detail-airport-spotlight-copy h2 {
    max-width: none;
  }

  .detail-guide-sidebar-layout {
    grid-template-columns: 1fr;
  }

  .detail-guide-sidebar-head h2 {
    max-width: none;
  }

  .detail-faq-copy-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .detail-faq-copy-grid-head {
    margin: 0;
    max-width: none;
    text-align: left;
  }

  .detail-compact-route-links-head {
    align-items: start;
    flex-direction: column;
  }

  .detail-compact-route-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-facts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-editorial-mosaic-media .detail-editorial-mosaic-image:nth-child(odd) {
    transform: none;
  }

  .detail-facts-highlight-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .service-keyword-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .service-keyword-list {
    grid-template-columns: 1fr;
  }

  .detail-search-intent-main,
  .detail-search-intent-side {
    padding: 16px;
    border-radius: 18px;
  }

  .detail-search-intent-tag-grid {
    grid-template-columns: 1fr;
  }

  .detail-search-intent-row {
    align-items: start;
    flex-direction: column;
    padding: 14px 15px;
  }

  .detail-transfer-insights-main,
  .detail-transfer-insights-airport {
    padding: 20px;
    border-radius: 22px;
  }

  .detail-transfer-insights-card,
  .detail-transfer-insight-option,
  .detail-transfer-insights-support {
    padding: 16px;
    border-radius: 18px;
  }

  .detail-transfer-insights-options {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .detail-transfer-insights-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .detail-transfer-insights-row strong {
    text-align: left;
  }

  .detail-transfer-insights-toggle {
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.9rem;
  }

  .detail-booking-steps-main,
  .detail-booking-tip-card,
  .detail-booking-support-card {
    padding: 20px;
    border-radius: 22px;
  }

  .detail-booking-step-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
  }

  .detail-booking-step-badge {
    width: 48px;
    height: 48px;
    font-size: 0.96rem;
  }

  .detail-guide-sidebar-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .detail-guide-sidebar-badge {
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
  }

  .detail-guide-sidebar-tip {
    padding: 22px;
    border-radius: 24px;
  }

  .detail-compact-route-links-grid {
    grid-template-columns: 1fr;
  }

  .detail-compact-route-card {
    padding: 14px;
    border-radius: 16px;
  }

  .detail-grid-faq-grid {
    grid-template-columns: 1fr;
  }

  .detail-route-showcase-head h2 {
    max-width: none;
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .detail-destinations-explorer-shell {
    padding: 24px 16px;
    border-radius: 22px;
  }

  .detail-destinations-explorer-shell h2 {
    max-width: none;
    font-size: clamp(1.8rem, 9vw, 2.7rem);
  }

  .detail-destinations-explorer-intro {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .detail-destinations-explorer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .detail-destinations-explorer-card {
    min-height: auto;
    padding: 20px 18px;
    border-radius: 18px;
  }

  .detail-destinations-explorer-card a {
    margin-top: 22px;
    font-size: 0.94rem;
  }

  .detail-route-showcase-head p {
    font-size: 0.88rem;
  }

  .detail-route-showcase-link {
    min-height: 46px;
    padding: 0 16px;
    font-size: 0.88rem;
  }

  .detail-route-showcase-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .detail-route-card {
    padding: 18px;
    border-radius: 18px;
  }

  .detail-route-card-stat {
    padding: 10px 12px;
    border-radius: 14px;
  }

  .detail-booking-cta-band {
    gap: 14px;
    padding: 30px 18px;
    border-radius: 20px;
  }

  .detail-booking-cta-band.is-compact {
    gap: 7px;
    max-width: 100%;
    padding: 28px 16px;
    border-radius: 16px;
  }

  .detail-booking-cta-band h2 {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
  }

  .detail-booking-cta-band.is-compact h2 {
    font-size: clamp(1.45rem, 6vw, 1.9rem);
  }

  .detail-booking-cta-band p {
    font-size: 0.9rem;
  }

  .detail-booking-cta-band.is-compact p {
    font-size: 0.88rem;
  }

  .detail-booking-cta-button {
    min-height: 48px;
    padding: 0 18px;
    border-radius: 12px;
    font-size: 0.9rem;
  }

  .detail-booking-cta-band.is-compact .detail-booking-cta-button {
    min-height: 46px;
    padding: 0 18px;
    border-radius: 10px;
    font-size: 0.88rem;
  }

  .detail-grid-faq-head h2 {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  .detail-grid-faq-card {
    border-radius: 20px;
  }

  .detail-grid-faq-card > summary {
    min-height: 0;
    padding: 18px 18px;
    gap: 12px;
  }

  .detail-grid-faq-card > summary span:first-child {
    font-size: 0.98rem;
  }

  .detail-grid-faq-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .detail-grid-faq-answer {
    padding: 0 18px 18px;
  }

  .detail-airport-spotlight-main,
  .detail-airport-spotlight-side {
    padding: 20px;
    border-radius: 22px;
  }

  .detail-airport-spotlight-services,
  .detail-airport-spotlight-note {
    padding: 16px;
    border-radius: 18px;
  }

  .detail-airport-spotlight-keywords {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .detail-airport-spotlight-chip {
    padding: 12px 14px;
    border-radius: 15px;
    font-size: 0.92rem;
  }

  .detail-facts-grid,
  .detail-facts-highlight-row {
    grid-template-columns: 1fr;
  }

  .detail-fact-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .service-group-icon-badge {
    top: 16px;
    right: 16px;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    font-size: 1.45rem;
  }

  .service-group-head {
    padding-right: 72px;
  }

  .service-keyword-list li {
    padding: 12px;
    border-radius: 14px;
  }

  .service-item-title {
    font-size: 0.92rem;
  }

  .service-item-subtitle {
    font-size: 0.78rem;
  }

  .service-item-price {
    font-size: 0.88rem;
  }
}

.site-footer {
  margin-top: 40px;
  padding: 32px 0 22px;
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 180, 55, 0.14), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(180deg, #0c0d12 0%, #06070a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-shell {
  display: grid;
  gap: 28px;
}

.footer-topline,
.footer-bottomline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #ffffff;
  text-decoration: none;
}

.footer-brand-logo {
  display: block;
  width: auto;
  height: 84px;
}

.footer-brand-name {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.footer-language {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-language-globe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.8rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 191, 75, 0.5);
  background: rgba(255, 191, 75, 0.08);
  color: rgba(255, 255, 255, 0.88);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-column {
  min-width: 0;
}

.footer-column h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-support-list,
.footer-link-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-support-list li {
  display: grid;
  gap: 4px;
}

.footer-label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-support-list strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  font-weight: 500;
}

.footer-link-list a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-link-list a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.detail-back-link {
  display: block;
  margin-bottom: 10px;
}

.footer-trust {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.footer-trust-brand {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.footer-trust-stars {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
  max-width: 190px;
}

.footer-trust-stars span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 8px;
  background: #00b67a;
  color: #ffffff;
  font-size: 1rem;
}

.footer-trust p,
.footer-bottomline p,
.footer-bottomline a {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-trust strong {
  color: #ffffff;
}

.footer-bottomline {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottomline a {
  text-decoration: none;
}

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

[dir='rtl'] .footer-link-list a:hover {
  transform: translateX(-2px);
}

[dir='rtl'] .footer-topline,
[dir='rtl'] .footer-bottomline {
  flex-direction: row-reverse;
}

[dir='rtl'] .footer-brand,
[dir='rtl'] .footer-language,
[dir='rtl'] .footer-socials {
  direction: rtl;
}

@media (max-width: 1080px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-footer {
    padding-top: 28px;
  }

  .footer-topline,
  .footer-bottomline {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-socials a {
    width: 38px;
    height: 38px;
  }

  .footer-brand-name {
    font-size: 0.74rem;
    letter-spacing: 0.04em;
  }

  [dir='rtl'] .footer-topline,
  [dir='rtl'] .footer-bottomline {
    flex-direction: column;
    align-items: flex-end;
  }
}

.why-us-section {
  padding-top: 36px;
  background: transparent;
  border-top: 0;
}

.why-us-header {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  padding-top: 14px;
  justify-items: center;
  text-align: center;
}

.why-us-header h2 {
  margin: 0;
  color: #1a1830;
  font-size: var(--font-section);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.why-us-board {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 22px;
  border: 1px solid rgba(210, 206, 219, 0.8);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 34px rgba(56, 52, 77, 0.05);
}

.why-us-columns,
.why-us-row {
  display: grid;
  grid-template-columns: minmax(120px, 1.1fr) repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}

.why-us-columns {
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(210, 206, 219, 0.72);
}

.why-us-columns strong {
  color: #4e5868;
  font-size: var(--font-meta);
  font-weight: 800;
  text-align: center;
}

.why-us-columns .is-brand {
  color: #f06d11;
}

.why-us-rows {
  display: grid;
}

.why-us-row {
  padding: 14px 0;
  border-bottom: 1px solid rgba(210, 206, 219, 0.5);
}

.why-us-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.why-us-label {
  color: #20263a;
  font-size: var(--font-label);
  font-weight: 800;
}

.why-us-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
  color: #5e697b;
  font-size: 0.84rem;
  font-weight: 700;
  text-align: center;
}

.why-us-value.is-brand {
  background: rgba(255, 122, 18, 0.12);
  color: #f06d11;
}

@media (max-width: 1024px) {
  .reviews-section {
    --reviews-per-view: 2;
  }

  .services-seo-intro-grid {
    grid-template-columns: 1fr;
  }

  .services-seo-title-block {
    padding: 0 0 18px;
    background-size: 100% 1px;
  }

  .services-seo-side-copy {
    padding: 0;
    margin-left: 0;
    background-image: none;
  }

  .services-seo-side-copy p {
    padding: 18px 0 0;
  }

  .services-seo-main-copy {
    padding-top: 16px;
  }

  .services-seo-panel h2,
  .services-seo-copy p {
    max-width: none;
  }

  .services-seo-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-overview-panel,
  .service-group-grid {
    grid-template-columns: 1fr;
  }

  .services-highlight-grid {
    grid-auto-columns: 240px;
  }

  .hero-grid,
  .detail-layout,
  .split-layout,
  .contact-panel,
  .why-us-columns,
  .why-us-row,
  .feature-strip,
  .card-grid,
  .district-card-grid,
  .contact-details,
  .steps,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-copy {
    padding-top: 0;
  }

  .why-us-columns,
  .why-us-row {
    grid-template-columns: minmax(100px, 1fr) repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .why-us-columns strong,
  .why-us-label,
  .why-us-value {
    font-size: 0.8rem;
  }

  .process-showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .fleet-showcase-copy h2 {
    font-size: var(--font-section);
  }

  .fleet-showcase-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .process-showcase-card {
    padding-top: 0;
  }

  .process-showcase-card:not(:last-child)::after {
    top: 32px;
    bottom: auto;
    left: calc(50% + 32px);
    width: calc(100% - 52px);
    height: 3px;
    transform: scaleX(0);
    transform-origin: left center;
    animation-name: process-showcase-line-in;
  }
}

@media (max-width: 820px) {
  .reviews-section {
    --reviews-per-view: 1;
  }

  .site-header .container {
    position: relative;
    flex-wrap: nowrap;
    padding: 14px 0;
    min-height: 72px;
    gap: 8px;
  }

  .header-actions {
    order: 2;
    width: auto;
    margin-left: auto;
    justify-content: flex-end;
    flex-shrink: 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 30;
    width: 100%;
    margin: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .language-switcher {
    flex-shrink: 0;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }
}

@media (max-width: 640px) {
  :root {
    --font-display: clamp(1.8rem, 10vw, 2.6rem);
    --font-section: clamp(1.2rem, 7vw, 1.7rem);
  }

  .reviews-arrow {
    display: none;
  }

  .reviews-slider-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 56px 0;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-copy h1 {
    font-size: var(--font-display);
  }

  .section-heading h2,
  .booking-card h2 {
    font-size: var(--font-section);
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-logo {
    height: 60px;
  }

  .brand-name {
    font-size: 0.72rem;
    letter-spacing: 0.03em;
  }

  .services-overview-panel,
  .services-seo-panel,
  .service-group-card {
    padding: 20px;
    border-radius: 20px;
  }

  .fleet-showcase-head {
    justify-items: stretch;
    align-items: center;
  }

  .customer-voices-header h2 {
    font-size: var(--font-section);
  }

  .customer-voices-summary {
    gap: 14px;
  }

  .customer-voices-divider {
    height: 42px;
  }

  .fleet-showcase-copy {
    justify-items: center;
    text-align: center;
  }

  .fleet-showcase-nav {
    display: inline-flex;
    justify-self: center;
  }

  .fleet-showcase-arrow {
    width: 46px;
    height: 46px;
    font-size: 1.6rem;
  }

  .customer-voices-slider-shell {
    grid-template-columns: 1fr;
  }

  .customer-voices-arrow {
    display: none;
  }

  .customer-voice-card {
    min-height: 0;
    padding: 18px;
    border-radius: 20px;
  }

  .fleet-showcase-track {
    display: flex;
    gap: 14px;
    transition: transform 360ms ease;
    will-change: transform;
  }

  .fleet-showcase-card {
    flex: 0 0 auto;
    gap: 12px;
    padding: 18px 14px 16px;
    border-radius: 18px;
  }

  .fleet-showcase-image-frame {
    min-height: 122px;
    padding: 10px;
    border-radius: 14px;
  }

  .fleet-showcase-image-frame img {
    height: 96px;
  }

  .fleet-showcase-card h3 {
    padding-bottom: 10px;
    font-size: 0.94rem;
  }

  .fleet-showcase-meta {
    gap: 12px;
    font-size: 0.8rem;
  }

  .fleet-showcase-meta-icon {
    width: 18px;
    height: 18px;
  }

  .fleet-showcase-meta-icon svg {
    width: 17px;
    height: 17px;
  }

  .fleet-showcase-card p {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .fleet-showcase-link {
    font-size: 0.95rem;
  }

  .customer-voices-summary {
    flex-direction: column;
  }

  .customer-voices-divider {
    display: none;
  }

  .customer-voices-rating strong,
  .customer-voices-count strong {
    font-size: 1.6rem;
  }

  .customer-voices-platforms {
    justify-content: center;
  }

  .customer-voices-platform {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.76rem;
    gap: 6px;
  }

  .customer-voices-platform-logo {
    width: 18px;
    height: 18px;
  }

  .customer-voices-platform-logo svg {
    width: 18px;
    height: 18px;
  }

  .customer-voice-top {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .customer-voice-quote {
    display: none;
  }

  .customer-voice-avatar {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }

  .customer-voice-card h3 {
    font-size: 0.96rem;
  }

  .customer-voice-card p {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .faq-accordion-list {
    width: 100%;
  }

  .faq-accordion-list.is-multi-column {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-accordion-item summary {
    padding: 18px 36px 18px 0;
  }

  .faq-accordion-item summary span {
    font-size: 0.815rem;
  }

  .faq-accordion-answer p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .process-showcase-header {
    margin-bottom: 28px;
  }

  .process-showcase-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .process-showcase-step {
    width: 26px;
    height: 26px;
    top: -4px;
    right: -4px;
    font-size: 0.68rem;
  }

  .process-showcase-icon {
    width: 24px;
    height: 24px;
  }

  .process-showcase-icon svg {
    width: 22px;
    height: 22px;
  }

  .process-showcase-card h3 {
    font-size: 0.9rem;
    line-height: 1.25;
  }

  .process-showcase-card p {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .process-showcase-badge {
    min-height: 32px;
    margin-top: 14px;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  .seo-route-stats {
    grid-template-columns: 1fr;
  }

  .why-us-board {
    padding: 18px;
    border-radius: 20px;
  }

  .why-us-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 0 0 10px;
  }

  .why-us-columns > span:first-child {
    display: none;
  }

  .why-us-columns strong {
    min-width: 0;
    font-size: 0.62rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .why-us-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 12px 0;
  }

  .why-us-label {
    grid-column: 1 / -1;
    margin-bottom: 2px;
    font-size: var(--font-label);
  }

  .why-us-value {
    min-width: 0;
    min-height: 38px;
    padding: 8px 6px;
    font-size: 0.76rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .why-us-value.is-brand {
    font-weight: 800;
  }

  [dir='rtl'] .why-us-label {
    text-align: right;
  }

  .services-highlight-grid {
    gap: 14px;
    padding: 20px 0;
    grid-auto-columns: 230px;
  }

  .services-mid-band .container {
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0,
      #000 30px,
      #000 calc(100% - 30px),
      transparent 100%
    );
    mask-image: linear-gradient(
      90deg,
      transparent 0,
      #000 30px,
      #000 calc(100% - 30px),
      transparent 100%
    );
  }

  .services-highlight-card {
    min-height: 0;
    padding: 18px;
    border-radius: 20px;
  }

  .district-card {
    padding: 18px;
  }

  .district-card h3 {
    font-size: 1.45rem;
  }

  .district-card-links a {
    font-size: 0.82rem;
  }

  .district-card-arrow {
    width: 50px;
    height: 50px;
  }

  .chat-buttons {
    grid-template-columns: 1fr;
  }

  .services-highlight-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .services-highlight-icon svg {
    width: 19px;
    height: 19px;
  }

  .services-highlight-card strong {
    font-size: 0.96rem;
  }

  .services-highlight-card p {
    font-size: 0.88rem;
  }

  .service-keyword-list li {
    padding: 11px 12px 11px 36px;
    border-radius: 16px;
    font-size: 0.92rem;
  }

  .services-seo-stat span {
    font-size: 0.74rem;
  }

  .services-seo-stat strong {
    font-size: 1.35rem;
  }
}

.floating-chat-dock {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  gap: 14px;
}

@keyframes floating-chat-entrance {
  from {
    opacity: 0;
    transform: translate3d(14px, 18px, 0) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes floating-chat-drift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes floating-chat-pulse {
  0%,
  100% {
    box-shadow: 0 14px 24px rgba(35, 42, 56, 0.1);
  }

  50% {
    box-shadow: 0 18px 30px rgba(35, 42, 56, 0.16);
  }
}

@keyframes floating-chat-attention {
  0%,
  100% {
    transform: scale(1);
    opacity: 0;
  }

  18% {
    transform: scale(1);
    opacity: 0.24;
  }

  62% {
    transform: scale(1.28);
    opacity: 0;
  }
}

@keyframes floating-chat-ring-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.floating-chat-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 24px rgba(35, 42, 56, 0.1);
  text-decoration: none;
  opacity: 0;
  animation:
    floating-chat-entrance 420ms ease forwards,
    floating-chat-drift 3.2s ease-in-out infinite 520ms,
    floating-chat-pulse 3.2s ease-in-out infinite 520ms;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.floating-chat-button::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  border: 2px solid currentColor;
  opacity: 0;
  pointer-events: none;
  animation: floating-chat-attention 3.2s ease-out infinite 1.1s;
}

.floating-chat-button:nth-child(2) {
  animation-delay: 90ms, 700ms, 700ms;
}

.floating-chat-button:nth-child(3) {
  animation-delay: 180ms, 880ms, 880ms;
}

.floating-chat-button:nth-child(2)::after {
  animation-delay: 1.45s;
}

.floating-chat-button:nth-child(3)::after {
  animation-delay: 1.8s;
}

.floating-chat-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(35, 42, 56, 0.14);
}

.floating-chat-dock:hover .floating-chat-button {
  animation-play-state: paused;
}

.floating-chat-dock:hover .floating-chat-button::after {
  animation-play-state: paused;
}

.floating-chat-dock:hover .floating-chat-ring {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .floating-chat-button,
  .floating-chat-button:nth-child(2),
  .floating-chat-button:nth-child(3) {
    opacity: 1;
    animation: none;
  }

  .floating-chat-button::after {
    animation: none;
  }
}

.floating-chat-icon {
  position: relative;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  color: #ffffff;
}

.floating-chat-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 98px;
  height: 98px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  animation: floating-chat-ring-spin 9s linear infinite;
}

.floating-chat-ring svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.floating-chat-ring text {
  fill: rgba(53, 60, 74, 0.72);
  font-size: 9.2px;
  font-weight: 700;
  letter-spacing: 0.95px;
  text-transform: uppercase;
}

.floating-chat-ring.is-compact text {
  font-size: 7.5px;
  letter-spacing: 0.55px;
}

.floating-chat-svg {
  display: block;
  width: 40px;
  height: 40px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-chat-svg--whatsapp,
.floating-chat-svg--telegram {
  fill: currentColor;
  stroke: none;
}

.floating-chat-svg--viber {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
}

.floating-chat-button.is-whatsapp .floating-chat-icon {
  background: #25d366;
}

.floating-chat-button.is-whatsapp {
  color: rgba(37, 211, 102, 0.42);
}

.floating-chat-button.is-viber .floating-chat-icon {
  background: #7360f2;
}

.floating-chat-button.is-viber {
  color: rgba(115, 96, 242, 0.36);
}

.floating-chat-button.is-telegram .floating-chat-icon {
  background: #229ed9;
}

.floating-chat-button.is-telegram {
  color: rgba(34, 158, 217, 0.36);
}

.floating-chat-button.is-whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.34);
  background: rgba(37, 211, 102, 0.08);
}

.floating-chat-button.is-viber:hover {
  border-color: rgba(115, 96, 242, 0.28);
  background: rgba(115, 96, 242, 0.08);
}

.floating-chat-button.is-telegram:hover {
  border-color: rgba(34, 158, 217, 0.28);
  background: rgba(34, 158, 217, 0.08);
}

@media (max-width: 640px) {
  .floating-chat-dock {
    right: 12px;
    bottom: 12px;
    gap: 10px;
  }

  .floating-chat-button {
    width: 72px;
    height: 72px;
  }

  .floating-chat-icon {
    width: 52px;
    height: 52px;
  }

  .floating-chat-ring {
    width: 76px;
    height: 76px;
  }

  .floating-chat-ring text {
    font-size: 7.1px;
    letter-spacing: 0.72px;
  }

  .floating-chat-ring.is-compact text {
    font-size: 5.8px;
    letter-spacing: 0.36px;
  }

  .floating-chat-svg {
    width: 28px;
    height: 28px;
  }

  .floating-chat-svg--viber {
    stroke-width: 1.9;
  }
}

.detail-narrative-feature-section {
  padding-top: 72px;
}

.detail-narrative-feature-trail {
  margin: 0 0 14px;
  color: #697586;
  font-size: 0.78rem;
  line-height: 1.5;
}

.detail-narrative-feature-shell {
  border: 1px solid rgba(219, 224, 232, 0.96);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 249, 252, 0.98));
  padding: 18px;
}

.detail-narrative-feature-eyebrow {
  margin: 0 0 10px;
  color: #6b7280;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-narrative-feature-shell h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.detail-narrative-feature-top,
.detail-narrative-feature-bottom {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
  gap: 16px;
  align-items: stretch;
  margin-top: 20px;
}

.detail-narrative-feature-bottom {
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.9fr);
}

.detail-narrative-feature-middle {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.detail-narrative-feature-copy {
  display: grid;
  gap: 12px;
}

.detail-narrative-feature-intro,
.detail-narrative-feature-block,
.detail-narrative-feature-closing {
  padding: 0;
}

.detail-narrative-feature-intro h3,
.detail-narrative-feature-block h3,
.detail-narrative-feature-closing h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 1rem;
  line-height: 1.32;
  letter-spacing: -0.02em;
}

.detail-narrative-feature-intro p,
.detail-narrative-feature-block p,
.detail-narrative-feature-closing p {
  margin: 0;
  color: #4b596d;
  font-size: 0.86rem;
  line-height: 1.58;
}

.detail-narrative-feature-intro p + p {
  margin-top: 10px;
}

.detail-narrative-feature-stack {
  display: grid;
  gap: 10px;
}

.detail-narrative-feature-image {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  height: auto;
  min-height: 150px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.detail-narrative-feature-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.detail-narrative-feature-image.is-secondary {
  min-height: 160px;
}

.detail-narrative-feature-closing {
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .detail-narrative-feature-top,
  .detail-narrative-feature-bottom {
    grid-template-columns: 1fr;
  }

  .detail-narrative-feature-shell h2 {
    max-width: none;
  }

  .detail-narrative-feature-image,
  .detail-narrative-feature-image.is-secondary {
    height: auto;
    min-height: 150px;
  }
}

@media (max-width: 640px) {
  .detail-narrative-feature-trail {
    margin-bottom: 12px;
    font-size: 0.72rem;
  }

  .detail-narrative-feature-shell {
    padding: 14px;
    border-radius: 16px;
  }

  .detail-narrative-feature-top,
  .detail-narrative-feature-middle,
  .detail-narrative-feature-bottom {
    margin-top: 8px;
    gap: 10px;
  }

  .detail-narrative-feature-intro,
  .detail-narrative-feature-block,
  .detail-narrative-feature-closing {
    padding: 0;
  }

  .detail-narrative-feature-intro h3,
  .detail-narrative-feature-block h3,
  .detail-narrative-feature-closing h3 {
    font-size: 0.96rem;
  }

  .detail-narrative-feature-intro p,
  .detail-narrative-feature-block p,
  .detail-narrative-feature-closing p {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .detail-narrative-feature-image,
  .detail-narrative-feature-image.is-secondary {
    height: auto;
    min-height: 120px;
    border-radius: 14px;
  }
}

.detail-top-hotels-section {
  padding-top: 36px;
}

.detail-top-hotels-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.detail-top-hotels-eyebrow {
  margin: 0;
  color: #6b7280;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-top-hotels-head h2 {
  margin: 30px 0 0;
  color: #111827;
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.detail-top-hotels-head p {
  margin: 10px 0 0;
  max-width: 68ch;
  color: #556274;
  font-size: 0.9rem;
  line-height: 1.65;
}

.detail-top-hotels-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(219, 224, 232, 0.96);
  border-radius: 999px;
  background: #ffffff;
  color: #c36a06;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.detail-top-hotels-view-all:hover,
.detail-top-hotels-view-all:focus-visible {
  color: #a45500;
  border-color: rgba(211, 134, 39, 0.28);
  background: rgba(255, 249, 240, 0.95);
}

.detail-top-hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.detail-top-hotels-grid-shell {
  transition: max-height 420ms ease;
}

.detail-top-hotels-grid-shell.is-collapsible {
  position: relative;
  overflow: hidden;
}

.detail-top-hotels-grid-shell.is-collapsible::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 44px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(247, 249, 252, 0.98));
  pointer-events: none;
  transition: opacity 260ms ease;
}

.detail-top-hotels-grid-shell.is-expanded::after {
  opacity: 0;
}

.detail-top-hotels-card {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(219, 224, 232, 0.96);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 249, 252, 0.98));
  padding: 12px;
}

.detail-top-hotels-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 8px;
}

.detail-top-hotels-card-head > div {
  flex: 1 1 auto;
  min-width: 0;
}

.detail-top-hotels-card h3 {
  margin: 0;
  color: #111827;
  font-size: clamp(0.68rem, 0.34vw + 0.62rem, 0.8rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.detail-top-hotels-card-head p {
  margin: 4px 0 0;
  color: #5a6779;
  font-size: clamp(0.68rem, 0.35vw + 0.61rem, 0.75rem);
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.detail-top-hotels-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: #eef2f7;
  color: #435166;
  font-size: 0.66rem;
  font-weight: 700;
  white-space: nowrap;
}

.detail-top-hotels-image {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  height: 128px;
  max-height: 128px;
}

.detail-top-hotels-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-top-hotels-link {
  display: block;
  color: #c36a06;
  font-size: clamp(0.68rem, 0.35vw + 0.61rem, 0.74rem);
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-all;
  hyphens: auto;
}

.detail-top-hotels-link:hover,
.detail-top-hotels-link:focus-visible {
  color: #a45500;
}

.detail-top-hotels-toggle {
  margin-top: 14px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(195, 106, 6, 0.28);
  border-radius: 999px;
  background: #fff9f2;
  color: #a45500;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  animation: detail-top-hotels-toggle-bob 1s ease-in-out infinite;
}

.detail-top-hotels-toggle::before,
.detail-top-hotels-toggle::after {
  content: "↓";
  font-size: 0.86em;
  line-height: 1;
}

.detail-top-hotels-toggle[aria-expanded="true"]::after {
  content: "↑";
}

.detail-top-hotels-toggle[aria-expanded="true"]::before {
  content: "↑";
}

.detail-top-hotels-toggle:hover,
.detail-top-hotels-toggle:focus-visible {
  background: #fff3e3;
  border-color: rgba(164, 85, 0, 0.36);
}

@keyframes detail-top-hotels-toggle-bob {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .detail-top-hotels-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .detail-top-hotels-head {
    align-items: start;
    flex-direction: column;
    margin-bottom: 14px;
  }

  .detail-top-hotels-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .detail-top-hotels-card {
    gap: 9px;
    padding: 11px;
    border-radius: 13px;
  }

  .detail-top-hotels-image {
    height: 112px;
    max-height: 112px;
  }
}
