:root {
  --brand-navy: #092d44;
  --brand-ink: #142434;
  --brand-teal: #0c8fa3;
  --brand-sun: #d9922f;
  --brand-sand: #f5efe3;
  --brand-ivory: #fbf7ee;
  --brand-foam: #eef8f6;
  --brand-muted: #62717c;
  --navy: var(--brand-navy);
  --navy-2: #10425e;
  --ink: var(--brand-ink);
  --muted: var(--brand-muted);
  --line: #dfe6e6;
  --sand: var(--brand-sand);
  --sand-2: var(--brand-ivory);
  --foam: var(--brand-foam);
  --teal: var(--brand-teal);
  --gold: var(--brand-sun);
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(9, 45, 68, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 64px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 34px rgba(8, 47, 76, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
.site-header.is-open .site-nav a:hover,
.site-header.is-open .site-nav a:focus-visible {
  background: var(--foam);
}

.site-nav .nav-subtle {
  font-size: 0.84rem;
  opacity: 0.9;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  place-items: center;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 3px 0;
}

.hero {
  position: relative;
  min-height: max(760px, 88vh);
  display: grid;
  align-content: end;
  align-items: end;
  gap: 24px;
  padding: 112px clamp(18px, 5vw, 72px) 28px;
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.hero picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 27, 43, 0.78), rgba(4, 27, 43, 0.36) 48%, rgba(4, 27, 43, 0.12)),
    linear-gradient(0deg, rgba(4, 27, 43, 0.54), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-bottom: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 7vw, 6.8rem);
  line-height: 0.98;
  letter-spacing: 0;
  max-width: 900px;
}

h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 34ch;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.02rem, 2vw, 1.28rem);
  line-height: 1.45;
  text-wrap: balance;
}

.city-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  margin: 0 0 16px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(4, 27, 43, 0.34);
  box-shadow: 0 18px 46px rgba(4, 27, 43, 0.24);
  backdrop-filter: blur(16px);
}

.city-switcher-label {
  padding: 0 6px 0 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.city-switcher-options {
  display: flex;
  align-items: center;
  gap: 4px;
}

.city-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.city-switcher a:hover,
.city-switcher a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

.city-switcher a.is-active {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 10px 22px rgba(4, 27, 43, 0.18);
}

.hero-actions {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.hero-subactions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
}

.button.primary {
  color: var(--white);
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(217, 146, 47, 0.28);
}

.button img,
.sticky-whatsapp img,
.footer-whatsapp img {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  object-fit: contain;
}

.button span {
  min-width: 0;
}

.whatsapp-button {
  min-height: 56px;
  padding: 0 22px;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 16px 34px rgba(18, 140, 126, 0.34);
}

.hero-secondary-button {
  min-height: 48px;
}

.hero-airport-button {
  min-height: 48px;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible,
.sticky-whatsapp:hover,
.sticky-whatsapp:focus-visible {
  background: #1ebe5b;
  outline: none;
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.1);
}

.button.secondary.dark {
  color: var(--navy);
  border-color: rgba(9, 45, 68, 0.24);
  background: var(--white);
}

.hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(100%, 980px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
}

.hero-panel div {
  padding: 18px;
  background: rgba(8, 47, 76, 0.5);
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  margin-bottom: 4px;
  color: var(--white);
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.section-pad {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

.page-shell {
  width: min(100%, 1200px);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.6fr) minmax(280px, 1.4fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto 42px;
}

.section-heading.compact {
  grid-template-columns: 1fr;
  max-width: 820px;
  margin-left: 0;
}

.section-heading.compact p:last-child,
.section-lead,
.intro-copy p,
.planning-copy p:last-child {
  color: var(--muted);
}

.section-lead {
  max-width: 760px;
  margin: -20px auto 34px;
  font-size: 1.05rem;
}

.intro {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 76px;
  background:
    linear-gradient(135deg, rgba(238, 248, 246, 0.72), rgba(255, 255, 255, 0) 40%),
    linear-gradient(180deg, #fbf7ee 0%, #faf6ee 100%);
}

.intro::before {
  content: "";
  position: absolute;
  inset: 28px clamp(18px, 5vw, 72px) auto auto;
  width: min(34vw, 360px);
  height: min(34vw, 360px);
  border: 1px solid rgba(12, 143, 163, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.intro.section-pad {
  padding-top: clamp(58px, 7vw, 92px);
  padding-bottom: clamp(48px, 6vw, 76px);
}

.intro-shell {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
}

.intro-header {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: end;
  margin: 0 0 clamp(20px, 3.2vw, 34px);
}

.intro-header .eyebrow {
  margin-bottom: 14px;
}

.intro-header h2 {
  max-width: 760px;
  font-size: clamp(2.25rem, 4.6vw, 4.45rem);
  text-wrap: balance;
}

.intro-copy {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.intro-copy p {
  margin-bottom: 0;
}

.intro-trust-note {
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(217, 146, 47, 0.24);
  border-left: 3px solid rgba(217, 146, 47, 0.62);
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.52);
  font-weight: 700;
  line-height: 1.45;
}

.solution-grid article::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  border: 2px solid rgba(12, 143, 163, 0.42);
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 44%, rgba(12, 143, 163, 0.95) 45% 55%, transparent 56%) 4px 8px / 8px 5px no-repeat,
    var(--foam);
}

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

.solution-grid article {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 12px;
  align-content: start;
  min-height: 100%;
  padding: 20px 18px 22px;
  border: 1px solid rgba(9, 45, 68, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
    var(--white);
  box-shadow: 0 18px 44px rgba(8, 47, 76, 0.07);
}

.solution-grid article::before {
  grid-row: 1 / span 2;
  margin-top: 2px;
  margin-right: 0;
}

.solution-grid span {
  display: block;
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.25;
}

.solution-grid p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

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

.start-options {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfa 58%, #f2f8f7 100%);
}

.start-options.section-pad {
  padding-top: clamp(38px, 5vw, 64px);
  padding-bottom: clamp(28px, 4vw, 48px);
}

.start-options-shell {
  display: grid;
  grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
}

.start-options .section-heading.compact {
  max-width: 390px;
  margin: 0;
  gap: 9px;
}

.start-options .section-heading.compact h2 {
  margin-bottom: 4px;
  max-width: 11ch;
  font-size: clamp(2.2rem, 3.2vw, 3.75rem);
  text-wrap: balance;
}

.start-options .section-heading.compact p:last-child {
  max-width: 34ch;
  font-size: 0.96rem;
  line-height: 1.5;
}

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

.start-options-grid article {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
  gap: 7px;
  min-height: 100%;
  padding: 16px;
  border: 1px solid rgba(9, 45, 68, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 28px rgba(8, 47, 76, 0.055);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.start-options-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  border-radius: 8px 0 0 8px;
  background: linear-gradient(180deg, var(--teal), rgba(217, 146, 47, 0.75));
  opacity: 0.72;
}

.start-options-grid article:hover,
.start-options-grid article:focus-within {
  border-color: rgba(12, 143, 163, 0.24);
  background: var(--white);
  box-shadow: 0 18px 36px rgba(8, 47, 76, 0.085);
  transform: translateY(-1px);
}

.start-option-topline {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.start-option-icon {
  display: inline-grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(12, 143, 163, 0.18);
  border-radius: 999px;
  color: var(--teal);
  background: rgba(238, 248, 246, 0.9);
}

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

.start-option-topline > span:last-child {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.start-options-grid h3,
.start-options-grid p {
  margin: 0;
}

.start-options-grid h3 {
  font-size: 1.22rem;
  line-height: 1.15;
}

.start-options-grid p {
  color: var(--muted);
  max-width: 28ch;
  font-size: 0.92rem;
  line-height: 1.42;
}

.start-options-grid .button {
  width: fit-content;
  margin-top: 3px;
  min-height: 38px;
  padding: 0 15px;
  font-size: 0.9rem;
}

.services {
  background:
    radial-gradient(circle at 12% 10%, rgba(12, 143, 163, 0.1), transparent 28%),
    linear-gradient(180deg, #f2f8f7 0%, #ffffff 38%, #f2f8f7 100%);
}

.services.section-pad {
  padding-top: clamp(42px, 5vw, 72px);
  padding-bottom: clamp(68px, 8vw, 112px);
}

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

.service-card {
  display: grid;
  grid-template-rows: 220px auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(8, 47, 76, 0.08);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.museum-card-image {
  object-position: 68% 28%;
}

.services-shell {
  max-width: 1280px;
  margin: 0 auto;
}

.services .section-heading.compact {
  max-width: 780px;
  margin: 0 auto clamp(24px, 3vw, 30px);
  gap: 14px;
}

.services .section-heading.compact h2 {
  text-wrap: balance;
}

.services .section-heading.compact p:last-child {
  max-width: 720px;
}

.service-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1220px;
  margin: 0 auto 22px;
}

.service-filter-chip {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(9, 45, 68, 0.12);
  border-radius: 999px;
  color: rgba(9, 45, 68, 0.82);
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.service-filter-chip:hover,
.service-filter-chip:focus-visible {
  border-color: rgba(12, 143, 163, 0.34);
  color: var(--navy);
  background: rgba(227, 244, 243, 0.96);
  box-shadow: 0 10px 24px rgba(8, 47, 76, 0.08);
  outline: none;
  transform: translateY(-1px);
}

.service-filter-chip.is-active {
  border-color: transparent;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #0a5b78);
  box-shadow: 0 14px 28px rgba(8, 47, 76, 0.14);
}

.services .service-grid.detailed-grid {
  max-width: 1220px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 26px);
}

.services .service-card {
  grid-template-rows: 244px auto;
  min-height: 100%;
  border-color: rgba(9, 45, 68, 0.14);
  border-radius: 14px;
  box-shadow: 0 22px 54px rgba(8, 47, 76, 0.12);
}

.services .service-card div {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 10px;
  padding: 20px 22px 24px;
}

.services .service-card h3 {
  margin: 0;
  font-size: clamp(1.2rem, 0.75vw + 1.02rem, 1.5rem);
  line-height: 1.24;
  text-wrap: balance;
}

.services .service-card p {
  margin: 0;
}

.services .service-card p:not(.card-kicker) {
  font-size: 0.98rem;
  line-height: 1.62;
}

.services .card-kicker {
  margin-bottom: 0;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
}

.services .service-card a,
.services .service-card button {
  margin-top: 4px;
  font-size: 0.96rem;
}

.services .service-card button {
  border-color: rgba(12, 143, 163, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(227, 244, 243, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.services .service-card button:hover,
.services .service-card button:focus-visible {
  background: var(--navy);
  border-color: var(--navy);
}

.services .service-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card-image-airport {
  object-position: center 56%;
}

.card-image-driver {
  object-position: center 50%;
}

.card-image-guide {
  object-position: center 40%;
}

.card-image-giza {
  object-position: center 54%;
}

.card-image-nile {
  object-position: center 58%;
}

.card-image-old-cairo {
  object-position: center 48%;
}

.card-image-photo {
  object-position: center 24%;
}

.card-image-experience {
  object-position: center 42%;
}

.card-image-plan {
  object-position: center 52%;
}

.card-image-support {
  object-position: center 34%;
}

.card-image-premium {
  object-position: center 56%;
}

.service-card div {
  display: grid;
  align-content: start;
  padding: 22px;
}

.service-card p,
.experience-card p,
.steps p,
.faq-list p {
  color: var(--muted);
}

.card-kicker {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.service-card a,
.service-card button,
.experience-card a {
  align-self: end;
  margin-top: 14px;
  color: var(--gold);
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.service-card button {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(217, 146, 47, 0.38);
  border-radius: 999px;
  color: var(--navy);
  background: var(--sand-2);
  line-height: 1.18;
  white-space: normal;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.service-card button:hover,
.service-card button:focus-visible {
  color: var(--white);
  background: var(--gold);
  border-color: var(--gold);
  outline: none;
  transform: translateY(-1px);
}

.service-card button.is-added {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

.selected-services-field {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(12, 143, 163, 0.22);
  border-radius: 14px;
  background: var(--foam);
}

.selected-services-field > div {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.selected-services-field span {
  color: var(--navy);
  font-weight: 900;
}

.selected-services-field button,
.trip-request-clear,
.trip-request-item button,
.trip-request-close {
  border: 0;
  color: var(--teal);
  background: transparent;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.selected-services-field ul,
.trip-request-list {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trip-request-form-item,
.trip-request-item {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(9, 45, 68, 0.1);
  border-radius: 8px;
  background: var(--white);
}

.trip-request-form-item strong,
.trip-request-item strong {
  display: block;
  color: var(--navy);
  line-height: 1.25;
}

.trip-request-form-item span,
.trip-request-item span {
  display: block;
  margin-top: 3px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trip-request-form-item {
  gap: 10px;
}

.trip-request-form-item label {
  display: grid;
  gap: 7px;
  margin-top: 2px;
  font-size: 0.88rem;
}

.trip-request-form-item textarea {
  min-height: 74px;
}

.trip-request-form-item button {
  width: fit-content;
  min-height: 34px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  color: var(--teal);
  background: rgba(12, 143, 163, 0.1);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.trip-request-bar {
  position: fixed;
  right: clamp(14px, 4vw, 32px);
  bottom: 18px;
  left: clamp(14px, 4vw, 32px);
  z-index: 21;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(12, 143, 163, 0.18);
  border-radius: 16px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 44px rgba(9, 45, 68, 0.18);
  backdrop-filter: blur(14px);
}

.trip-request-bar > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.trip-request-bar[hidden],
.trip-request-modal[hidden] {
  display: none;
}

.trip-request-bar p {
  margin: 0;
}

.trip-request-bar .button {
  min-height: 40px;
  padding: 0 16px;
  white-space: nowrap;
}

.trip-request-bar .button.secondary {
  color: var(--navy);
  background: var(--foam);
  border: 1px solid rgba(12, 143, 163, 0.16);
}

.trip-request-bar .button.primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 10px 22px rgba(12, 143, 163, 0.24);
}

.trip-request-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 18px;
}

.trip-request-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 21, 34, 0.66);
}

.trip-request-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  width: min(100%, 720px);
  max-height: min(720px, calc(100vh - 36px));
  overflow-y: auto;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 22px;
  background: var(--sand-2);
  box-shadow: 0 30px 90px rgba(4, 27, 43, 0.36);
}

.trip-request-dialog:focus {
  outline: none;
}

.trip-request-dialog-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.trip-request-dialog h2 {
  margin-bottom: 8px;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
}

.trip-request-dialog-header p:not(.eyebrow) {
  margin: 0 0 10px;
  color: var(--muted);
}

.trip-request-dialog-count,
.request-step-count {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(12, 143, 163, 0.1);
  font-size: 0.82rem;
  line-height: 1.2;
}

.trip-request-close {
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
}

.trip-request-empty {
  padding: 18px;
  border: 1px dashed rgba(12, 143, 163, 0.4);
  border-radius: 12px;
  background: var(--foam);
}

.trip-request-empty p {
  margin: 0;
  color: var(--muted);
}

.trip-request-item {
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 12px;
  padding: 14px 16px;
}

.trip-request-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.trip-request-item-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.trip-request-item-note {
  grid-column: 1 / -1;
  display: grid;
  gap: 7px;
}

.trip-request-item-note[hidden] {
  display: none;
}

.trip-request-item-note textarea {
  width: 100%;
  min-height: 68px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 0.94rem;
  resize: vertical;
}

.trip-request-item-note textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(12, 143, 163, 0.14);
}

.trip-request-item button,
.trip-request-clear {
  min-height: 36px;
  padding: 0 10px;
  border-radius: 999px;
}

.trip-request-item button:hover,
.trip-request-item button:focus-visible,
.trip-request-clear:hover,
.trip-request-clear:focus-visible,
.selected-services-field button:hover,
.selected-services-field button:focus-visible {
  color: var(--navy);
  background: rgba(12, 143, 163, 0.12);
  outline: none;
}

.trip-request-dialog-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

body.has-trip-request {
  padding-bottom: 104px;
}

body.trip-request-modal-open {
  overflow: hidden;
}

.experiences {
  background: var(--sand);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.experience-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.experience-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.experience-card div {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  padding: 24px;
}

.experience-card h3,
.experience-card p {
  margin: 0;
}

.experience-card a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  min-height: 36px;
}

.experience-card a[href*="wa.me"]::before,
.transport-card a[href*="wa.me"]::before,
.package-card a[href*="wa.me"]::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: url("../assets/icons/whatsapp.svg") center / contain no-repeat;
}

.planning {
  background:
    radial-gradient(circle at top left, rgba(12, 143, 163, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f9fcfb 100%);
}

.planning.section-pad {
  padding-top: clamp(52px, 6vw, 82px);
  padding-bottom: clamp(52px, 6vw, 82px);
}

.planning-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.planning-copy {
  max-width: 440px;
  padding-top: 0;
}

.planning-copy h2 {
  margin-bottom: 14px;
  max-width: 14ch;
  font-size: clamp(2.1rem, 3.4vw, 3.45rem);
  line-height: 1.04;
}

.planning-copy p:last-child {
  max-width: 42ch;
  font-size: 1rem;
  line-height: 1.6;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.steps::before {
  display: none;
}

.step-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-content: start;
  min-height: 148px;
  padding: 20px 20px 18px;
  border: 1px solid rgba(9, 45, 68, 0.095);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 252, 251, 0.96)),
    var(--white);
  box-shadow: 0 16px 34px rgba(8, 47, 76, 0.06);
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, rgba(12, 143, 163, 0.95), rgba(217, 146, 47, 0.72));
  opacity: 0.72;
}

.step-index {
  position: relative;
  z-index: 1;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  color: var(--white);
  background: radial-gradient(circle at 30% 30%, #2cb2c3 0%, var(--teal) 62%, #0a7385 100%);
  box-shadow: 0 10px 20px rgba(12, 143, 163, 0.2);
  font-size: 0.82rem;
  font-weight: 800;
}

.step-copy {
  display: grid;
  align-content: start;
  gap: 7px;
}

.step-copy h3 {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.18;
}

.step-copy p {
  margin-bottom: 0;
  font-size: 0.93rem;
  line-height: 1.52;
}

.trust {
  background:
    radial-gradient(circle at top right, rgba(12, 143, 163, 0.08), transparent 26%),
    linear-gradient(180deg, #fbf7ee 0%, #f5efe3 100%);
}

.trust-shell {
  max-width: 1220px;
  margin: 0 auto;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

.trust-copy {
  max-width: 470px;
  padding-top: 6px;
}

.trust-copy .eyebrow {
  margin-bottom: 10px;
}

.trust-copy h2 {
  margin-bottom: 18px;
  max-width: 10ch;
}

.trust-copy p:last-child {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.04rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 18px 17px;
  border: 1px solid rgba(9, 45, 68, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(8, 47, 76, 0.07);
  backdrop-filter: blur(6px);
}

.trust-card p {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.55;
}

.trust-icon {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(12, 143, 163, 0.12);
}

.trust-icon::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  width: 6px;
  height: 11px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(40deg);
}

.request {
  background: var(--navy);
  color: var(--white);
}

.request-lite {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(9, 45, 68, 0.96), rgba(12, 143, 163, 0.84)),
    url("../images/Cairo/expansive-view-of-the-nile-river-with-cairo-skylin-2026-03-26-23-58-25-utc.jpg") center / cover;
}

.request-lite-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 5vw, 60px);
  align-items: center;
}

.request-lite h2 {
  max-width: 16ch;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4rem);
}

.request-lite p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.75;
}

.request-shell {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 620px);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.request h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.contact-copy {
  max-width: 520px;
  padding-top: 12px;
}

.contact-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.02rem;
  line-height: 1.8;
}

.contact-copy p + p {
  margin-top: 18px;
}

.contact-copy a {
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.contact-copy li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.65;
}

.contact-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  max-width: 680px;
  justify-self: end;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 22px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 26px 60px rgba(5, 34, 57, 0.24);
}

.form-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(9, 45, 68, 0.1);
  border-radius: 14px;
  background: #fffdfa;
}

.form-section[hidden] {
  display: none;
}

.form-section legend {
  padding: 0 8px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
}

.contact-form label,
.consent-field {
  display: grid;
  gap: 7px;
  font-weight: 800;
  font-size: 0.92rem;
}

.full-field,
.contact-form .button,
.form-note,
.request-confirmation,
.consent-field {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 0.96rem;
  resize: vertical;
}

.contact-form select {
  min-height: 52px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(12, 143, 163, 0.14);
}

.button:disabled,
.button[disabled] {
  cursor: not-allowed;
  color: rgba(20, 36, 52, 0.58);
  background: #e7ecec;
  box-shadow: none;
}

.required-label {
  width: fit-content;
  padding: 2px 8px;
  border-radius: 999px;
  color: var(--teal);
  background: rgba(12, 143, 163, 0.1);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.consent-field {
  grid-template-columns: auto 1fr;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(217, 146, 47, 0.32);
  border-radius: 14px;
  background: #fff8ea;
  font-weight: 700;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.contact-form .button {
  width: 100%;
}

.form-note {
  min-height: 1.4em;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.request-confirmation {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(12, 143, 163, 0.24);
  border-radius: 14px;
  background: var(--foam);
}

.request-confirmation[hidden] {
  display: none;
}

.request-confirmation h3,
.request-confirmation p {
  margin: 0;
}

.request-confirmation ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 20px;
}

.trip-request-page {
  background: #f6faf9;
}

.request-header {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 34px rgba(8, 47, 76, 0.1);
  backdrop-filter: blur(14px);
}

.request-page-hero {
  padding: 140px clamp(18px, 5vw, 72px) 46px;
  background:
    linear-gradient(135deg, rgba(238, 248, 246, 0.96), rgba(251, 247, 238, 0.96)),
    url("../images/Cairo/city-skyline-reflecting-in-the-nile-river-at-sunse-2026-03-26-23-58-29-utc.jpg") center / cover;
}

.request-page-hero-shell {
  max-width: 980px;
}

.request-page-hero h1 {
  max-width: 10ch;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2.4rem, 6vw, 5.2rem);
}

.request-page-hero p {
  max-width: 660px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(1.04rem, 2vw, 1.22rem);
  line-height: 1.7;
}

.request-page-hero span {
  display: inline-flex;
  max-width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(12, 143, 163, 0.22);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  font-weight: 900;
  line-height: 1.35;
}

.request-page-section {
  padding: clamp(36px, 6vw, 76px) clamp(18px, 5vw, 72px);
}

.request-page-form {
  display: grid;
  gap: 18px;
  width: min(100%, 880px);
  margin: 0 auto;
}

.request-step,
.request-submit-panel {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3.2vw, 28px);
  border: 1px solid rgba(9, 45, 68, 0.1);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(8, 47, 76, 0.08);
}

.request-step-heading {
  display: grid;
  gap: 6px;
}

.request-step-heading span {
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--teal);
  background: rgba(12, 143, 163, 0.1);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.request-step-heading h2 {
  color: var(--navy);
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.request-step-heading p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.request-step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 2px;
}

.request-service-grid,
.request-field-grid {
  display: grid;
  gap: 14px;
}

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

.request-service-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(9, 45, 68, 0.1);
  border-radius: 10px;
  background: #fffdfa;
}

.request-service-card h3 {
  margin-bottom: 4px;
  font-size: 1.08rem;
}

.request-service-card span,
.request-service-note span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.request-service-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.request-service-actions button {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(12, 143, 163, 0.2);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.request-service-actions button:hover,
.request-service-actions button:focus-visible {
  color: var(--white);
  background: var(--teal);
  outline: none;
}

.request-service-note {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
}

.request-service-note[hidden] {
  display: none;
}

.request-empty-state {
  display: grid;
  gap: 14px;
  justify-items: start;
  padding: 18px;
  border: 1px dashed rgba(12, 143, 163, 0.4);
  border-radius: 10px;
  background: var(--foam);
}

.request-empty-state[hidden] {
  display: none;
}

.request-empty-state p,
.request-submit-panel p {
  margin: 0;
  color: var(--muted);
}

.request-field-grid label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
  font-size: 0.94rem;
}

.request-field-grid input,
.request-field-grid select,
.request-field-grid textarea,
.request-service-note textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 1rem;
}

.request-field-grid textarea,
.request-service-note textarea {
  resize: vertical;
}

.request-field-grid input:focus,
.request-field-grid select:focus,
.request-field-grid textarea:focus,
.request-service-note textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(12, 143, 163, 0.14);
}

.request-submit-panel {
  align-items: center;
}

.provider-page {
  background: #f7fbfa;
}

.provider-hero {
  padding: 138px clamp(18px, 5vw, 72px) clamp(54px, 7vw, 88px);
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(5, 34, 57, 0.94) 0%, rgba(9, 45, 68, 0.86) 52%, rgba(12, 143, 163, 0.54) 100%),
    url("../images/Cairo/egypt-cairo-aerial-view-of-cityscape-and-nile-ri-2026-03-25-06-31-47-utc.jpg") center / cover;
}

.provider-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 370px);
  gap: clamp(24px, 5vw, 58px);
  align-items: end;
}

.provider-hero-copy {
  max-width: 780px;
}

.provider-hero h1 {
  max-width: 12ch;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(2.65rem, 6vw, 5.7rem);
}

.provider-hero p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.65;
}

.provider-hero .provider-hero-lead {
  margin-bottom: 10px;
  color: #fff5dc;
  font-size: clamp(1.16rem, 2vw, 1.38rem);
  font-weight: 800;
  line-height: 1.4;
}

.provider-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.provider-review-note {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 54px rgba(4, 27, 43, 0.2);
  backdrop-filter: blur(14px);
}

.provider-review-note strong {
  color: var(--white);
  font-size: 1.08rem;
}

.provider-review-note span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.provider-intro {
  background: var(--white);
}

.provider-intro-shell,
.provider-quality-shell {
  display: grid;
  gap: 28px;
}

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

.provider-type-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  min-height: 86px;
  padding: 18px;
  border: 1px solid rgba(9, 45, 68, 0.1);
  border-radius: 8px;
  background: #fffdfa;
  box-shadow: 0 12px 28px rgba(8, 47, 76, 0.05);
}

.provider-type-grid h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.provider-type-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--teal));
  font-size: 0.76rem;
  font-weight: 900;
}

.provider-process-section {
  background: linear-gradient(180deg, var(--foam), #ffffff);
}

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

.provider-process article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(12, 143, 163, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(8, 47, 76, 0.06);
}

.provider-process span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: #ffe8bd;
  font-weight: 900;
}

.provider-process h3,
.provider-process p {
  margin: 0;
}

.provider-process p {
  color: var(--muted);
  line-height: 1.55;
}

.provider-application-section {
  padding: clamp(44px, 7vw, 84px) clamp(18px, 5vw, 72px);
  background: #fbf7ee;
}

.provider-form-shell {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.provider-form-intro {
  position: sticky;
  top: 104px;
}

.provider-form-intro h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
}

.provider-form-intro p:last-child {
  color: var(--muted);
  font-size: 1.03rem;
}

.provider-form {
  display: grid;
  gap: 16px;
  width: 100%;
}

.provider-form .request-step {
  border-radius: 8px;
}

.provider-form .request-step-heading h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.32rem, 2.2vw, 1.75rem);
}

.provider-form small {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.45;
}

.nightlife-page {
  --night-black: #05080f;
  --night-navy: #071d31;
  --night-ink: #eaf5f7;
  --night-muted: rgba(234, 245, 247, 0.72);
  --night-line: rgba(255, 255, 255, 0.14);
  color: var(--night-ink);
  background: var(--night-black);
}

.nightlife-page .site-header.is-scrolled,
.nightlife-page .site-header.is-open {
  color: var(--night-ink);
  background: rgba(5, 8, 15, 0.9);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
}

.nightlife-page .site-header.is-scrolled .site-nav a:hover,
.nightlife-page .site-header.is-scrolled .site-nav a:focus-visible,
.nightlife-page .site-header.is-open .site-nav a:hover,
.nightlife-page .site-header.is-open .site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.nightlife-hero {
  position: relative;
  min-height: max(760px, 92vh);
  display: grid;
  align-items: end;
  padding: 118px clamp(18px, 5vw, 72px) clamp(28px, 5vw, 54px);
  overflow: hidden;
  color: var(--white);
  background: var(--night-black);
}

.nightlife-hero picture,
.nightlife-hero-media,
.nightlife-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.nightlife-hero-media {
  object-fit: cover;
  object-position: center;
}

.nightlife-hero-shade {
  background:
    radial-gradient(circle at 82% 24%, rgba(0, 201, 210, 0.28), transparent 28%),
    radial-gradient(circle at 16% 74%, rgba(217, 146, 47, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(5, 8, 15, 0.9) 0%, rgba(7, 29, 49, 0.74) 48%, rgba(5, 8, 15, 0.42) 100%),
    linear-gradient(0deg, rgba(5, 8, 15, 0.84), rgba(5, 8, 15, 0.12) 54%);
}

.nightlife-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  width: 100%;
}

.nightlife-hero-copy {
  max-width: 820px;
}

.nightlife-hero h1 {
  max-width: 12ch;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.75rem, 7vw, 6.4rem);
  line-height: 0.96;
}

.nightlife-hero .hero-copy {
  max-width: 66ch;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.86);
}

.nightlife-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.nightlife-primary.button.primary {
  color: #061220;
  background: linear-gradient(135deg, #f5cf82, #d9922f);
  box-shadow: 0 18px 38px rgba(217, 146, 47, 0.28);
}

.nightlife-secondary.button.secondary,
.nightlife-card-button.button.secondary {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.nightlife-hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.nightlife-hero-notes span,
.nightlife-style-grid span,
.nightlife-safety-list span {
  border: 1px solid var(--night-line);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
  line-height: 1.3;
}

.nightlife-hero-notes span {
  padding: 8px 12px;
  font-size: 0.82rem;
}

.nightlife-city-stack {
  display: grid;
  gap: 14px;
}

.nightlife-city-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 16px;
  min-height: 214px;
  padding: 14px;
  border: 1px solid var(--night-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.nightlife-city-card img {
  width: 100%;
  height: 100%;
  min-height: 186px;
  border-radius: 6px;
  object-fit: cover;
}

.nightlife-city-card div {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 10px;
}

.nightlife-city-card .card-kicker,
.nightlife-city-card h2,
.nightlife-city-card p {
  margin: 0;
}

.nightlife-city-card h2 {
  color: var(--white);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.08;
}

.nightlife-city-card p:not(.card-kicker) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
  line-height: 1.55;
}

.nightlife-city-card.cairo-card {
  background:
    linear-gradient(135deg, rgba(217, 146, 47, 0.18), rgba(7, 29, 49, 0.76)),
    rgba(255, 255, 255, 0.08);
}

.nightlife-city-card.sharm-card {
  background:
    linear-gradient(135deg, rgba(0, 201, 210, 0.2), rgba(5, 8, 15, 0.78)),
    rgba(255, 255, 255, 0.08);
}

.nightlife-card-button {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.nightlife-styles,
.nightlife-request {
  background:
    linear-gradient(180deg, #05080f 0%, #071d31 100%);
}

.nightlife-how {
  background:
    linear-gradient(180deg, #071d31 0%, #0b273d 100%);
}

.nightlife-safety {
  background:
    linear-gradient(135deg, rgba(217, 146, 47, 0.13), transparent 42%),
    linear-gradient(180deg, #0b273d 0%, #05080f 100%);
}

.nightlife-section-shell {
  display: grid;
  gap: clamp(22px, 4vw, 34px);
}

.nightlife-heading h2,
.nightlife-safety h2,
.nightlife-request h2 {
  color: var(--white);
}

.nightlife-heading p:not(.eyebrow),
.nightlife-safety p,
.nightlife-request-copy p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--night-muted);
}

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

.nightlife-style-grid span {
  min-height: 70px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
}

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

.nightlife-steps article {
  display: grid;
  gap: 14px;
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--night-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.nightlife-steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #061220;
  background: linear-gradient(135deg, #f5cf82, #19c6d2);
  font-weight: 900;
}

.nightlife-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  line-height: 1.55;
}

.nightlife-safety-shell,
.nightlife-request-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.nightlife-safety-copy {
  position: sticky;
  top: 108px;
}

.nightlife-safety-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.nightlife-safety-list span {
  min-height: 92px;
  display: grid;
  align-items: center;
  padding: 18px;
  border-radius: 8px;
}

.nightlife-request-copy {
  position: sticky;
  top: 108px;
}

.nightlife-form {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.nightlife-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.nightlife-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
}

.nightlife-form input,
.nightlife-form select,
.nightlife-form textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(9, 45, 68, 0.16);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 1rem;
}

.nightlife-form textarea {
  resize: vertical;
}

.nightlife-form input:focus,
.nightlife-form select:focus,
.nightlife-form textarea:focus {
  border-color: #0c8fa3;
  outline: 3px solid rgba(12, 143, 163, 0.16);
}

.nightlife-disclaimer {
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(217, 146, 47, 0.24);
  border-radius: 8px;
  color: #475866;
  background: #fff8ea;
  font-size: 0.88rem;
  line-height: 1.6;
}

.nightlife-submit.button.primary {
  width: 100%;
  min-height: 56px;
  color: var(--white);
  background: #128c7e;
  box-shadow: 0 14px 34px rgba(18, 140, 126, 0.26);
}

.nightlife-submit.button.primary:hover,
.nightlife-submit.button.primary:focus-visible {
  background: #0f7b70;
  outline: none;
}

.nightlife-sticky-cta {
  display: none;
}

.provider-vehicle-fields {
  margin-top: -4px;
  padding: 16px;
  border: 1px dashed rgba(12, 143, 163, 0.34);
  border-radius: 8px;
  background: var(--foam);
}

.provider-vehicle-fields[hidden] {
  display: none;
}

.provider-submit-panel {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3.2vw, 28px);
  border: 1px solid rgba(9, 45, 68, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(8, 47, 76, 0.08);
}

.provider-submit-panel .button {
  width: 100%;
  min-height: 56px;
}

.provider-verification-note {
  margin: 0;
  padding: 13px 14px;
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  color: var(--navy);
  background: #fff8ea;
  font-weight: 800;
  line-height: 1.55;
}

.form-note.is-success {
  color: var(--teal);
  font-weight: 900;
}

.provider-quality {
  background: var(--white);
}

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

.provider-quality-grid span {
  display: grid;
  align-items: center;
  min-height: 72px;
  padding: 16px 18px;
  border: 1px solid rgba(9, 45, 68, 0.1);
  border-radius: 8px;
  color: var(--navy);
  background: linear-gradient(180deg, #ffffff, #f4fbfa);
  font-weight: 900;
  line-height: 1.35;
}

.provider-contact-strip {
  padding: 24px clamp(18px, 5vw, 72px);
  background: var(--navy);
}

.provider-contact-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.provider-contact-shell p {
  margin: 0;
  color: var(--white);
  font-weight: 800;
}

.provider-contact-shell div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq {
  background: linear-gradient(180deg, #ffffff 0%, #fbf7ee 100%);
}

.faq-shell {
  width: min(100%, 840px);
}

.faq-heading {
  width: 100%;
  margin: 0 0 24px;
}

.faq-heading h2 {
  max-width: 14ch;
}

.faq-list {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: none;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(8, 47, 76, 0.07);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.5;
}

.faq-list p {
  padding: 0 24px 22px;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.72;
}

.final-cta {
  background: linear-gradient(180deg, #fbf7ee 0%, #eef8f6 100%);
}

.cta-card {
  display: grid;
  justify-items: center;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(28px, 4.6vw, 44px);
  border: 1px solid rgba(9, 45, 68, 0.08);
  border-radius: 28px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 250, 0.98));
  box-shadow: 0 20px 52px rgba(8, 47, 76, 0.08);
}

.cta-copy {
  max-width: 720px;
}

.final-cta h2 {
  max-width: 18ch;
  font-size: clamp(1.9rem, 3.4vw, 3.6rem);
}

.final-actions {
  justify-content: center;
}

.site-footer {
  padding: 34px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #052239;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(300px, 1.2fr) minmax(220px, 0.8fr) auto;
  gap: 34px;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 560px;
}

.site-footer img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--white);
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.site-footer span,
.copyright {
  display: block;
  max-width: 560px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.65;
}

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

.footer-contact a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--gold);
  outline: none;
}

.copyright {
  max-width: 240px;
  justify-self: end;
  text-align: right;
}

.sticky-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 19;
  display: none;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 16px 42px rgba(4, 37, 31, 0.28);
  font-weight: 800;
}

body.nav-open {
  overflow: hidden;
}

.airport-link {
  padding-top: clamp(46px, 7vw, 84px);
  padding-bottom: clamp(46px, 7vw, 84px);
  background: #f5f8fc;
}

.airport-flow {
  background: var(--white);
}

.airport-link-card {
  display: grid;
  grid-template-columns: minmax(320px, 1.18fr) auto;
  gap: 26px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(26px, 3.5vw, 40px);
  border: 1px solid #d7e4f3;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(234, 244, 255, 0.92), rgba(255, 255, 255, 0.96)),
    var(--white);
  box-shadow: 0 18px 50px rgba(11, 31, 58, 0.08);
}

.airport-link.section-pad {
  padding-top: clamp(20px, 3vw, 34px);
  padding-bottom: clamp(52px, 6vw, 82px);
}

.airport-flow.airport-link.section-pad {
  padding-top: clamp(24px, 3vw, 42px);
  padding-bottom: clamp(28px, 4vw, 48px);
}

.airport-link-shell {
  max-width: 1240px;
  margin: 0 auto;
}

.airport-link-card .eyebrow {
  margin-bottom: 10px;
}

.airport-link-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  text-wrap: balance;
}

.airport-link-card p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
}

.destination-hub {
  background:
    radial-gradient(circle at 12% 10%, rgba(217, 146, 47, 0.08), transparent 26%),
    radial-gradient(circle at 88% 22%, rgba(12, 143, 163, 0.08), transparent 30%),
    linear-gradient(180deg, #f7fbfa 0%, #ffffff 100%);
}

.destination-hub-shell {
  display: grid;
  gap: 30px;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.destination-card {
  --destination-accent: var(--teal);
  --destination-accent-rgb: 12, 143, 163;
  --destination-soft: rgba(12, 143, 163, 0.08);
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1fr);
  min-height: 340px;
  overflow: hidden;
  border: 1px solid rgba(var(--destination-accent-rgb), 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(var(--destination-accent-rgb), 0.035), rgba(255, 255, 255, 0) 46%),
    var(--white);
  box-shadow: 0 16px 38px rgba(8, 47, 76, 0.075);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-card div {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(24px, 4vw, 38px);
}

.destination-card span {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--destination-accent);
  background: var(--destination-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.destination-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  line-height: 1.1;
}

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

.destination-card .button {
  justify-self: start;
}

.destination-button {
  color: var(--white);
  background: var(--destination-accent);
  box-shadow: 0 12px 26px rgba(var(--destination-accent-rgb), 0.22);
}

.destination-card-cairo {
  --destination-accent: var(--brand-sun);
  --destination-accent-rgb: 217, 146, 47;
  --destination-soft: rgba(217, 146, 47, 0.12);
}

.destination-card-sharm {
  --destination-accent: var(--teal);
  --destination-accent-rgb: 12, 143, 163;
  --destination-soft: rgba(12, 143, 163, 0.1);
}

.airport-page {
  --airport-navy: var(--brand-navy);
  --airport-blue: var(--brand-teal);
  --airport-blue-2: #087486;
  --airport-sky: var(--brand-foam);
  --airport-soft: var(--brand-ivory);
  --airport-gray: var(--brand-muted);
  --airport-gold: var(--brand-sun);
  --airport-teal: var(--brand-teal);
  color: var(--airport-navy);
  background: var(--white);
}

.airport-page .eyebrow {
  color: var(--airport-gold);
}

.airport-page h2,
.airport-page h3 {
  color: var(--airport-navy);
}

.airport-button.button.primary,
.airport-page .button.primary.airport-button {
  background: linear-gradient(135deg, var(--airport-blue), var(--airport-blue-2));
  box-shadow: 0 16px 34px rgba(19, 89, 232, 0.3);
}

.airport-whatsapp-button.button.primary,
.airport-page .button.primary.airport-whatsapp-button {
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #139d55);
  box-shadow: 0 16px 38px rgba(6, 74, 46, 0.28);
}

.airport-whatsapp-button:hover,
.airport-whatsapp-button:focus-visible {
  background: #1ebe5b;
  outline: none;
}

.airport-secondary-button {
  border-color: rgba(255, 255, 255, 0.78);
}

.airport-hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 132px clamp(18px, 5vw, 72px) 54px;
  color: var(--white);
  overflow: hidden;
}

.airport-hero picture,
.airport-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.airport-hero-media {
  object-fit: cover;
  object-position: center;
}

.airport-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 31, 58, 0.88), rgba(11, 31, 58, 0.58) 48%, rgba(11, 31, 58, 0.24)),
    linear-gradient(0deg, rgba(11, 31, 58, 0.62), transparent 48%);
}

.airport-hero-content {
  position: relative;
  z-index: 1;
  max-width: 790px;
  padding-bottom: 116px;
}

.airport-hero h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 6vw, 5.9rem);
}

.airport-hero-panel {
  position: absolute;
  z-index: 1;
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1120px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
}

.airport-hero-panel span {
  min-height: 88px;
  display: grid;
  align-items: center;
  padding: 18px;
  background: rgba(11, 31, 58, 0.62);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.airport-summary,
.airport-soft {
  background:
    radial-gradient(circle at 12% 8%, rgba(7, 140, 143, 0.08), transparent 26%),
    linear-gradient(180deg, #f7fbff 0%, var(--airport-soft) 100%);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.quick-facts article,
.airport-tip-grid article,
.transport-card,
.package-card,
.practical-grid article,
.airport-callout {
  border: 1px solid #c9dbed;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(7, 27, 51, 0.09);
}

.quick-facts article {
  min-height: 142px;
  padding: 20px;
}

.quick-facts span {
  display: block;
  margin-bottom: 10px;
  color: var(--airport-gray);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-facts strong {
  display: block;
  color: var(--airport-navy);
  font-size: 1.08rem;
  line-height: 1.28;
}

.airport-nav-wrap {
  padding-top: clamp(32px, 5vw, 58px);
  padding-bottom: clamp(32px, 5vw, 58px);
  background: var(--white);
}

.airport-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto;
}

.airport-anchor-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid #bdd4ed;
  border-radius: 999px;
  color: var(--airport-navy);
  background: linear-gradient(180deg, #f7fbff, var(--airport-sky));
  font-weight: 800;
}

.airport-anchor-nav a:hover,
.airport-anchor-nav a:focus-visible {
  border-color: var(--airport-blue);
  color: var(--airport-blue);
  outline: none;
}

.airport-section {
  scroll-margin-top: 88px;
}

.airport-two-col,
.airport-split,
.pickup-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.airport-two-col.reverse {
  grid-template-columns: minmax(320px, 1.12fr) minmax(280px, 0.88fr);
}

.airport-two-col > img,
.pickup-layout > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(11, 31, 58, 0.12);
}

.airport-two-col p,
.airport-split p,
.airport-page .section-heading p,
.transport-card p,
.package-card p,
.practical-grid li,
.terminal-card p,
.terminal-card li,
.airport-tip-grid p,
.airport-final p,
.airport-disclaimer p {
  color: var(--airport-gray);
}

.airport-note,
.airport-mini-note {
  padding: 14px 16px;
  border-left: 4px solid var(--airport-blue);
  border-radius: 0 8px 8px 0;
  background: linear-gradient(135deg, #e6f2ff, #f6fbff);
  color: var(--airport-navy) !important;
  font-weight: 700;
}

.airport-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 34px auto 0;
}

.airport-process article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  min-height: 112px;
  padding: 18px;
  border: 1px solid #c9dbed;
  border-radius: 8px;
  background: var(--white);
}

.airport-process span,
.pickup-benefits span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--airport-blue), var(--airport-teal));
  font-weight: 800;
}

.airport-process p,
.pickup-benefits p {
  margin: 0;
}

.airport-tip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 18px auto 0;
}

.airport-tip-grid article {
  min-height: 108px;
  padding: 20px;
}

.airport-tip-grid p {
  margin: 0;
  font-weight: 700;
}

.terminal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.terminal-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.48fr) minmax(220px, 0.78fr);
  overflow: hidden;
  border: 1px solid #dbe7f5;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(11, 31, 58, 0.08);
}

.terminal-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.terminal-card div {
  padding: 24px;
}

.terminal-card ul,
.transport-card ul,
.practical-grid ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  margin-bottom: 0;
}

.airport-callout {
  padding: clamp(24px, 4vw, 36px);
  background:
    linear-gradient(135deg, rgba(234, 244, 255, 0.95), rgba(255, 255, 255, 0.98)),
    var(--white);
}

.airport-pickup {
  background:
    radial-gradient(circle at 18% 18%, rgba(7, 140, 143, 0.32), transparent 28%),
    linear-gradient(135deg, var(--brand-navy) 0%, #0d3a55 52%, #061f30 100%);
}

.airport-pickup h2,
.airport-pickup h3 {
  color: var(--white);
}

.airport-pickup .section-heading p,
.airport-pickup .airport-mini-note {
  color: rgba(255, 255, 255, 0.78) !important;
}

.pickup-layout {
  align-items: stretch;
}

.pickup-layout > img {
  aspect-ratio: auto;
  min-height: 100%;
}

.pickup-benefits {
  display: grid;
  gap: 12px;
}

.pickup-benefits article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(223, 239, 255, 0.24);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.pickup-benefits p {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.airport-mini-note {
  max-width: 1180px;
  margin: 24px auto 0;
  border-left-color: var(--airport-gold);
  background: rgba(255, 255, 255, 0.1);
}

.transport-grid,
.package-grid,
.practical-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.transport-card,
.package-card,
.practical-grid article {
  display: grid;
  align-content: start;
  padding: 24px;
}

.transport-card a,
.package-card a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--airport-blue);
  font-weight: 800;
}

.service-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-chip-grid span {
  padding: 10px 14px;
  border: 1px solid #bdd4ed;
  border-radius: 999px;
  color: var(--airport-navy);
  background: linear-gradient(180deg, #f7fbff, var(--airport-sky));
  font-weight: 800;
}

.airport-request {
  background: var(--airport-navy);
}

.airport-help-form {
  align-self: start;
}

.airport-disclaimer {
  background: linear-gradient(180deg, var(--airport-sky), #f7fbff);
}

.airport-disclaimer div {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid #cde0f6;
  border-radius: 8px;
  background: var(--white);
}

.airport-disclaimer h2 {
  font-size: clamp(1.6rem, 3vw, 2.8rem);
}

.airport-final {
  background: linear-gradient(180deg, var(--airport-soft), #f7fbff);
}

.airport-page .airport-section.section-pad {
  padding-top: clamp(58px, 6vw, 88px);
  padding-bottom: clamp(58px, 6vw, 88px);
}

.airport-page .section-heading.compact {
  max-width: 1180px;
  margin: 0 auto 34px;
}

.airport-page .section-heading.compact > p:last-child {
  max-width: 760px;
}

.airport-sticky {
  background: var(--airport-blue);
  box-shadow: 0 16px 42px rgba(30, 107, 255, 0.28);
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 2px;
  }

  .site-nav a {
    padding: 12px;
  }

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

  .intro-header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .intro-copy {
    max-width: 760px;
  }

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

  .detailed-grid,
  .experience-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .planning-shell,
  .request-shell,
  .request-lite-shell,
  .trust-layout,
  .footer-shell,
  .airport-link-card,
  .airport-two-col,
  .airport-two-col.reverse,
  .airport-split,
  .pickup-layout,
  .destination-card {
    grid-template-columns: 1fr;
  }

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

  .quick-facts,
  .airport-process,
  .provider-process,
  .provider-quality-grid,
  .transport-grid,
  .package-grid,
  .practical-grid,
  .start-options-grid,
  .provider-type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .airport-tip-grid,
  .terminal-grid {
    grid-template-columns: 1fr;
  }

  .destination-grid {
    grid-template-columns: 1fr;
  }

  .copyright {
    justify-self: start;
    text-align: left;
  }

  .contact-form {
    justify-self: start;
    max-width: 100%;
  }

  .services .service-grid.detailed-grid {
    max-width: 920px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services .service-card {
    grid-template-rows: 228px auto;
  }

  .intro-header {
    max-width: 780px;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: center;
    padding: 12px 17px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand {
    gap: 9px;
    font-size: 0.98rem;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    border-color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    border: 1px solid rgba(12, 143, 163, 0.18);
    border-radius: 20px;
    color: var(--navy);
    background:
      linear-gradient(180deg, rgba(251, 247, 238, 0.98), rgba(255, 255, 255, 0.98)),
      var(--white);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: grid;
  }

  .site-nav a {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .hero {
    min-height: auto;
    align-items: start;
    align-content: start;
    gap: 14px;
    padding: 96px 18px 22px;
  }

  .airport-hero {
    min-height: auto;
    align-items: start;
    gap: 22px;
    padding: 102px 18px 28px;
  }

  .hero-media {
    object-position: center 15%;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(9, 45, 68, 0.38) 0%, rgba(9, 45, 68, 0.22) 34%, rgba(9, 45, 68, 0.5) 100%),
      linear-gradient(90deg, rgba(9, 45, 68, 0.64), rgba(9, 45, 68, 0.22) 70%);
  }

  .hero-content {
    padding-bottom: 0;
    max-width: 540px;
  }

  .airport-hero-content {
    padding-bottom: 0;
  }

  .hero .eyebrow,
  .airport-hero .eyebrow {
    margin-bottom: 9px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .city-switcher {
    width: min(100%, 410px);
    margin-bottom: 11px;
    padding: 5px;
    gap: 5px;
    justify-content: space-between;
  }

  .city-switcher-label {
    padding-left: 7px;
    padding-right: 3px;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .city-switcher-options {
    flex: 1;
    min-width: 0;
  }

  .city-switcher a {
    flex: 1;
    min-height: 32px;
    padding: 0 9px;
    font-size: 0.82rem;
  }

  .hero h1 {
    max-width: 11ch;
    margin-bottom: 12px;
    font-size: clamp(2.24rem, 9.6vw, 3rem);
    line-height: 1.02;
    text-wrap: balance;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.7rem);
  }

  h2 {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .hero-copy {
    max-width: 26ch;
    margin-bottom: 14px;
    font-size: 0.95rem;
    line-height: 1.46;
  }

  .hero-panel {
    margin-top: 2px;
    grid-template-columns: 1fr;
    gap: 0;
    width: min(100%, 430px);
    justify-self: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    background: rgba(238, 248, 246, 0.15);
    backdrop-filter: blur(18px);
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(9, 45, 68, 0.16);
  }

  .hero-panel div {
    padding: 10px 13px 11px;
    border-radius: 0;
    background: rgba(9, 45, 68, 0.3);
    box-shadow: none;
  }

  .hero-panel div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .hero-panel div:last-child {
    grid-column: auto;
  }

  .hero-panel strong {
    margin-bottom: 2px;
    font-size: 0.84rem;
    line-height: 1.18;
  }

  .hero-panel span {
    max-width: 42ch;
    font-size: 0.76rem;
    line-height: 1.38;
  }

  .airport-hero-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 4px;
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }

  .airport-hero-panel span {
    min-height: 66px;
    padding: 14px;
  }

  .section-heading,
  .service-grid,
  .solution-grid,
  .detailed-grid,
  .experience-grid,
  .steps,
  .contact-copy ul,
  .contact-form,
  .form-section,
  .request-field-grid,
  .provider-hero-shell,
  .provider-form-shell,
  .provider-process,
  .provider-quality-grid,
  .provider-type-grid,
  .quick-facts,
  .airport-process,
  .airport-tip-grid,
  .terminal-grid,
  .transport-grid,
  .package-grid,
  .practical-grid,
  .destination-grid,
  .destination-card,
  .start-options-grid,
  .terminal-card {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .section-pad {
    padding: 64px 18px;
  }

  .request.section-pad,
  .request-lite.section-pad,
  .faq.section-pad,
  .final-cta.section-pad {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .request-lite .button,
  .request-submit-panel .button,
  .start-options-grid .button {
    width: 100%;
  }

  .start-options.section-pad {
    padding-top: 36px;
    padding-bottom: 30px;
  }

  .destination-card {
    min-height: auto;
  }

  .destination-card div {
    gap: 10px;
    padding: 22px 18px 20px;
  }

  .destination-card img {
    aspect-ratio: 16 / 10;
    min-height: 220px;
  }

  .destination-card h3 {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
  }

  .destination-card p {
    max-width: 34ch;
    font-size: 0.92rem;
    line-height: 1.46;
  }

  .destination-card .button {
    margin-top: 2px;
    min-height: 42px;
    padding-inline: 18px;
  }

  .services.section-pad {
    padding-top: 38px;
    padding-bottom: 54px;
  }

  .start-options .section-heading.compact {
    gap: 8px;
    margin-bottom: 14px;
  }

  .start-options-shell {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .start-options .section-heading.compact h2 {
    margin-bottom: 6px;
    max-width: 11ch;
    font-size: clamp(2rem, 8.6vw, 2.55rem);
    line-height: 1.02;
  }

  .start-options .section-heading.compact p:last-child {
    max-width: 28ch;
    font-size: 0.94rem;
    line-height: 1.44;
  }

  .start-options-grid {
    gap: 10px;
  }

  .start-options-grid article {
    gap: 6px;
    padding: 14px 14px 13px;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(8, 47, 76, 0.055);
  }

  .start-option-icon {
    width: 28px;
    height: 28px;
  }

  .start-option-icon svg {
    width: 16px;
    height: 16px;
  }

  .start-option-topline > span:last-child {
    margin-bottom: 2px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .start-options-grid h3 {
    font-size: 1.14rem;
    line-height: 1.12;
  }

  .start-options-grid p {
    max-width: none;
    font-size: 0.91rem;
    line-height: 1.36;
  }

  .start-options-grid .button {
    margin-top: 4px;
    min-height: 42px;
    padding: 0 14px;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.94rem;
  }

  .request-page-hero {
    padding: 112px 18px 34px;
  }

  .request-page-hero h1 {
    max-width: 11ch;
  }

  .request-page-hero span {
    border-radius: 10px;
  }

  .request-page-section {
    padding: 34px 18px 56px;
  }

  .provider-hero {
    padding: 112px 18px 38px;
  }

  .provider-hero h1 {
    max-width: 10ch;
  }

  .provider-hero-actions {
    display: grid;
    gap: 10px;
  }

  .provider-hero-actions .button {
    width: 100%;
  }

  .provider-review-note {
    padding: 16px;
  }

  .provider-application-section {
    padding: 34px 18px 56px;
  }

  .provider-submit-panel .button {
    min-height: 54px;
  }

  .provider-form-intro {
    position: static;
  }

  .provider-type-grid article,
  .provider-process article,
  .provider-quality-grid span {
    min-height: auto;
    padding: 16px;
  }

  .provider-process article {
    gap: 8px;
  }

  .provider-contact-shell,
  .provider-contact-shell div {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .provider-contact-shell .button {
    width: 100%;
  }

  body.provider-page {
    padding-bottom: 0;
  }

  .request-service-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .request-service-card,
  .trip-request-item {
    grid-template-columns: 1fr;
  }

  .request-step-actions,
  .trip-request-item-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .intro.section-pad {
    padding-top: 58px;
    padding-bottom: 52px;
  }

  .intro::before {
    display: none;
  }

  .intro-header {
    gap: 14px;
    margin-bottom: 20px;
  }

  .intro-header h2 {
    font-size: clamp(2.08rem, 9vw, 2.85rem);
    line-height: 1.05;
  }

  .intro-copy {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .intro-trust-note {
    margin-top: 12px;
    padding-left: 14px;
    font-size: 0.94rem;
  }

  .solution-grid {
    gap: 10px;
  }

  .solution-grid article {
    min-height: auto;
    padding: 18px 16px 18px;
    column-gap: 10px;
    box-shadow: 0 10px 26px rgba(8, 47, 76, 0.055);
  }

  .solution-grid span {
    font-size: 0.98rem;
  }

  .solution-grid p {
    margin-top: 6px;
    font-size: 0.9rem;
    line-height: 1.52;
  }

  .airport-link.section-pad {
    padding-top: 8px;
    padding-bottom: 56px;
  }

  .hero-actions,
  .final-actions {
    flex-direction: column;
  }

  .hero-actions {
    justify-items: stretch;
    gap: 7px;
  }

  .hero-subactions {
    display: grid;
    width: 100%;
    gap: 5px;
    justify-items: center;
  }

  .hero-actions .whatsapp-button,
  .final-actions .button,
  .airport-anchor-nav a {
    width: 100%;
  }

  .hero-actions .whatsapp-button {
    width: min(100%, 410px);
    justify-self: center;
    min-height: 46px;
    padding: 0 18px;
    font-size: 0.96rem;
    box-shadow: 0 12px 26px rgba(18, 140, 126, 0.22);
  }

  .hero-actions .whatsapp-button img {
    width: 17px;
    height: 17px;
  }

  .hero-actions .hero-secondary-button {
    width: min(100%, 410px);
    justify-self: center;
    min-height: 40px;
    padding: 0 16px;
    border-color: rgba(255, 255, 255, 0.58);
    background: rgba(255, 255, 255, 0.07);
    font-size: 0.93rem;
  }

  .hero-actions .hero-airport-button {
    width: fit-content;
    min-height: 32px;
    padding: 0 4px;
    border: 0;
    color: rgba(255, 255, 255, 0.9);
    background: transparent;
    font-size: 0.84rem;
    box-shadow: none;
  }

  .hero-actions .hero-airport-button::after {
    content: "\203A";
    margin-left: 7px;
    font-size: 1.12em;
    line-height: 1;
  }

  .trip-request-bar {
    right: 10px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    left: 10px;
    width: calc(100% - 20px);
    align-items: center;
    gap: 8px;
    max-width: none;
    min-height: 56px;
    padding: 7px 7px 7px 12px;
    border-radius: 14px;
    border-color: rgba(12, 143, 163, 0.18);
    box-shadow: 0 10px 26px rgba(9, 45, 68, 0.16);
  }

  .trip-request-bar p {
    flex: 1 1 auto;
    min-width: 74px;
    text-align: left;
  }

  .trip-request-bar p strong {
    font-size: 0.93rem;
    line-height: 1.2;
    white-space: nowrap;
  }

  .trip-request-dialog-actions .button {
    width: 100%;
    min-width: 0;
  }

  .trip-request-bar .button {
    min-width: 0;
    min-height: 38px;
    padding: 0 11px;
    border-radius: 999px;
    font-size: 0.84rem;
    line-height: 1.15;
    white-space: nowrap;
  }

  .trip-request-bar > div {
    flex: 0 1 auto;
    display: flex;
    gap: 7px;
    justify-content: flex-end;
  }

  .trip-request-bar .button.secondary {
    padding-inline: 11px;
  }

  .trip-request-bar .button.primary {
    padding-inline: 14px;
    box-shadow: none;
  }

  .trip-request-dialog {
    max-height: calc(100vh - 24px);
    padding: 22px 18px;
    border-radius: 18px;
  }

  .trip-request-dialog-header,
  .trip-request-dialog-actions,
  .selected-services-field > div {
    flex-direction: column;
    align-items: stretch;
  }

  .trip-request-close,
  .trip-request-clear,
  .selected-services-field button {
    width: fit-content;
  }

  .form-section,
  .selected-services-field {
    padding: 14px;
  }

  .trip-request-item {
    grid-template-columns: 1fr;
  }

  body.has-trip-request {
    padding-bottom: 82px;
  }

  body.has-trip-request .services .service-grid.detailed-grid {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  body.has-trip-request .sticky-whatsapp {
    display: none;
  }

  .contact-copy {
    max-width: none;
    padding-top: 0;
  }

  .contact-copy p {
    font-size: 0.98rem;
  }

  .faq-shell {
    width: 100%;
  }

  .faq-heading {
    margin-bottom: 18px;
  }

  .cta-card {
    border-radius: 22px;
    padding: 26px 20px;
  }

  .footer-shell {
    gap: 22px;
  }

  .service-card {
    grid-template-rows: 200px auto;
  }

  .services .section-heading.compact {
    margin-bottom: 20px;
  }

  .services .service-grid.detailed-grid {
    width: min(100%, 456px);
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .services .service-card {
    grid-template-columns: minmax(108px, 31%) minmax(0, 1fr);
    grid-template-rows: 1fr;
    border-radius: 14px;
    min-height: 0;
    box-shadow: 0 12px 28px rgba(8, 47, 76, 0.08);
  }

  .services .service-card div {
    grid-template-rows: auto;
    align-content: center;
    gap: 6px;
    padding: 12px 12px 12px 14px;
  }

  .services .service-card h3 {
    font-size: 1.04rem;
    line-height: 1.2;
  }

  .services .service-card p:not(.card-kicker) {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.86rem;
    line-height: 1.38;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .services .card-kicker {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  .services .service-card img {
    height: 140px;
    min-height: 0;
  }

  .services .service-card button {
    justify-self: start;
    width: fit-content;
    min-height: 32px;
    margin-top: 1px;
    padding: 0 10px;
    border-color: rgba(12, 143, 163, 0.2);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: none;
    font-size: 0.74rem;
    line-height: 1.08;
  }

  .services .service-card button.is-added {
    color: var(--white);
    border-color: var(--teal);
    background: var(--teal);
  }

  .service-filter-row {
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .service-filter-row::-webkit-scrollbar {
    display: none;
  }

  .service-filter-chip {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .experience-card img {
    height: 220px;
  }

  .solution-grid article,
  .trust-card {
    min-height: auto;
  }

  .planning-copy,
  .trust-copy {
    max-width: none;
    padding-top: 0;
  }

  .planning.section-pad {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .planning-shell {
    gap: 18px;
  }

  .planning-copy h2 {
    margin-bottom: 10px;
    max-width: 15ch;
    font-size: clamp(2rem, 8vw, 2.55rem);
  }

  .planning-copy p:last-child {
    max-width: 32ch;
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .step-card {
    min-height: auto;
    gap: 12px;
    padding: 16px 16px 15px;
    border-radius: 8px;
  }

  .step-card::before {
    border-radius: 8px 8px 0 0;
  }

  .step-index {
    width: 34px;
    height: 34px;
    font-size: 0.78rem;
  }

  .step-copy h3 {
    font-size: 0.98rem;
  }

  .step-copy p {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .intro-header {
    margin-bottom: 20px;
  }

  .intro-header .eyebrow {
    margin-bottom: 8px;
  }

  .intro-copy {
    margin-top: 14px;
    font-size: 1rem;
  }

  .solution-grid article {
    padding: 16px 15px;
    border-radius: 8px;
  }

  .solution-grid span {
    font-size: 1rem;
  }

  .solution-grid p {
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .airport-link-card {
    gap: 18px;
    padding: 22px 20px;
    border-radius: 18px;
  }

  .airport-link-card h2 {
    margin-bottom: 8px;
  }

  .airport-page .airport-section.section-pad {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .airport-page .section-heading.compact {
    margin-bottom: 24px;
  }

  .airport-process article,
  .airport-tip-grid article,
  .transport-card,
  .package-card,
  .practical-grid article {
    min-height: auto;
    padding: 18px;
  }

  body.has-sticky-cta .sticky-whatsapp {
    display: inline-flex;
  }

  .sticky-whatsapp {
    right: 12px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    left: auto;
    width: 46px;
    height: 46px;
    min-height: 46px;
    padding: 0;
    justify-content: center;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.36);
    box-shadow: 0 12px 26px rgba(4, 37, 31, 0.24);
    font-size: 0;
  }

  .sticky-whatsapp img {
    width: 20px;
    height: 20px;
  }

  .sticky-whatsapp span {
    display: none;
  }

  .airport-anchor-nav a {
    flex: 1 1 100%;
    padding: 12px 14px;
  }

  .terminal-card img {
    min-height: 220px;
  }

  body {
    padding-bottom: 100px;
  }
}

@media (max-width: 560px) {
  .city-switcher {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 356px);
    gap: 4px;
    border-radius: 18px;
  }

  .city-switcher-label {
    padding: 6px 8px 0;
    text-align: center;
  }

  .city-switcher-options {
    width: 100%;
  }

  .city-switcher a {
    min-height: 34px;
  }

  .airport-hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-actions .whatsapp-button,
  .hero-actions .hero-secondary-button,
  .hero-panel,
  .airport-hero-panel {
    width: min(100%, 356px);
  }

  .hero-actions,
  .hero-subactions {
    width: min(100%, 356px);
  }

  .hero-actions .whatsapp-button,
  .hero-actions .hero-secondary-button {
    justify-self: stretch;
  }

  .hero-actions .hero-airport-button {
    justify-self: center;
  }
}

@media (max-width: 460px) {
  .site-header {
    padding-left: 12px;
    padding-right: 12px;
  }

  .site-nav {
    left: 12px;
    right: 12px;
  }

  .airport-hero-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 13px;
    padding-right: 17px;
    padding-bottom: 20px;
    padding-left: 17px;
  }

  .hero-subactions {
    gap: 5px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-panel div:last-child {
    grid-column: auto;
  }

  .services.section-pad {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 34px;
  }

  .services .service-grid.detailed-grid {
    width: min(100%, 420px);
  }

  .services .service-card {
    grid-template-columns: 102px minmax(0, 1fr);
  }

  .services .service-card div {
    padding: 11px 11px 11px 12px;
  }

  .services .service-card img {
    height: 132px;
    min-height: 0;
  }

  .services .service-card button {
    min-height: 31px;
    padding: 0 9px;
    font-size: 0.72rem;
  }

  .services .section-heading.compact {
    gap: 10px;
  }

  .services .section-heading.compact p:last-child {
    font-size: 0.97rem;
    line-height: 1.5;
  }

  .hero-panel span {
    font-size: 0.74rem;
    line-height: 1.34;
  }

  .contact-form {
    padding: 20px;
  }

  .trip-request-bar {
    right: 8px;
    left: 8px;
    width: calc(100% - 16px);
    min-height: 54px;
    padding-left: 11px;
    padding-right: 6px;
  }

  .trip-request-bar > div {
    gap: 6px;
  }

  .trip-request-bar .button {
    min-height: 38px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 0.8rem;
  }

  .trip-request-dialog {
    padding: 20px 14px;
  }
}

@media (max-width: 1120px) {
  .nightlife-hero-shell,
  .nightlife-safety-shell,
  .nightlife-request-shell {
    grid-template-columns: 1fr;
  }

  .nightlife-city-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nightlife-city-card {
    grid-template-columns: 1fr;
  }

  .nightlife-city-card img {
    height: 220px;
    min-height: 0;
  }

  .nightlife-style-grid,
  .nightlife-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nightlife-safety-copy,
  .nightlife-request-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .nightlife-page {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .nightlife-hero {
    min-height: auto;
    align-items: start;
    padding: 96px 18px 22px;
  }

  .nightlife-hero-media {
    object-position: center top;
  }

  .nightlife-hero-shade {
    background:
      radial-gradient(circle at 74% 18%, rgba(0, 201, 210, 0.26), transparent 30%),
      linear-gradient(180deg, rgba(5, 8, 15, 0.66), rgba(5, 8, 15, 0.9) 76%),
      linear-gradient(90deg, rgba(5, 8, 15, 0.72), rgba(7, 29, 49, 0.32));
  }

  .nightlife-hero-shell {
    gap: 18px;
  }

  .nightlife-hero h1 {
    max-width: 11ch;
    margin-bottom: 12px;
    font-size: clamp(2.34rem, 11vw, 3.35rem);
    line-height: 1;
  }

  .nightlife-hero .hero-copy {
    max-width: 33ch;
    margin-bottom: 16px;
    font-size: 0.96rem;
    line-height: 1.48;
  }

  .nightlife-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .nightlife-hero-actions .button {
    width: 100%;
    min-height: 48px;
  }

  .nightlife-hero-notes {
    display: none;
  }

  .nightlife-city-stack,
  .nightlife-style-grid,
  .nightlife-steps,
  .nightlife-safety-list,
  .nightlife-form-grid {
    grid-template-columns: 1fr;
  }

  .nightlife-city-card {
    min-height: auto;
    padding: 10px;
    gap: 12px;
  }

  .nightlife-city-card img {
    height: 150px;
  }

  .nightlife-city-card div {
    gap: 8px;
    padding: 2px 2px 4px;
  }

  .nightlife-city-card h2 {
    font-size: 1.28rem;
  }

  .nightlife-city-card p:not(.card-kicker) {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .nightlife-card-button {
    width: 100%;
  }

  .nightlife-style-grid span {
    min-height: 54px;
    justify-content: start;
    place-items: center start;
    text-align: left;
  }

  .nightlife-steps article,
  .nightlife-safety-list span {
    min-height: auto;
    padding: 16px;
  }

  .nightlife-request-shell {
    gap: 18px;
  }

  .nightlife-form {
    padding: 16px;
  }

  .nightlife-submit.button.primary {
    min-height: 58px;
  }

  .nightlife-sticky-cta {
    position: fixed;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 12px;
    z-index: 18;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 18px;
    border-radius: 999px;
    color: #061220;
    background: linear-gradient(135deg, #f5cf82, #19c6d2);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
    font-weight: 900;
    line-height: 1.2;
  }
}

@media (max-width: 460px) {
  .nightlife-hero {
    padding-right: 14px;
    padding-left: 14px;
  }

  .nightlife-hero h1 {
    font-size: clamp(2.18rem, 12vw, 2.92rem);
  }

  .nightlife-hero .hero-copy {
    max-width: 31ch;
    font-size: 0.92rem;
  }

  .nightlife-city-card img {
    height: 132px;
  }

  .nightlife-form {
    padding: 14px;
  }
}
