﻿:root {
  --bg: #f7faff;
  --white: #ffffff;
  --ink: #131313;
  --muted: #5f636c;
  --line: #d2d4d8;
  --primary: #2684c6;
  --primary-dark: #2684c6;
  --rect-radius: 20px;
  --max: 1200px;
  --hero-overlay-height: 460px;
  --booking-tab-height: 58px;
  --card-shadow: 0 12px 30px rgba(19, 19, 19, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: clamp(14px, 0.95vw, 16px);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.45;
  font-style: normal;
  font-variation-settings: normal;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

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

.container {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
}

.top-stack {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  isolation: isolate;
}

.inner-page .top-stack,
.partners-page .top-stack,
.history-page .top-stack,
.team-page .top-stack,
.milestones-page .top-stack,
.milestones-archive-page .top-stack {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 2000;
  background: #fff;
  isolation: isolate;
}

.inner-page .announce-bar,
.inner-page .main-header {
  position: relative;
  z-index: 1;
}

/* Announce: desktop strip reference */
.announce-bar {
  background: #000;
  color: #fff;
  font-size: 1rem;
}

.announce-bar .container {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 0;
}

.announce-inner {
  min-height: 48px;
  padding: 0.46rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.announce-main {
  min-width: 0;
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
}

.announce-dot {
  width: 1.65rem;
  height: 1.65rem;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}

.announce-dot-icon {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.announce-copy {
  display: flex;
  align-items: center;
  gap: 0.34rem;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

.announce-text {
  font-size: clamp(0.95rem, 0.55vw, 1.02rem);
  line-height: 1.2;
  white-space: nowrap;
}

.announce-ticker-link {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  color: inherit;
  font-size: clamp(0.95rem, 0.55vw, 1.02rem);
  line-height: 1.2;
  text-decoration: none;
}

.announce-ticker-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
}

.announce-ticker-link:hover .announce-ticker-line,
.announce-ticker-link:focus-visible .announce-ticker-line {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.announce-ticker-window {
  position: relative;
  display: block;
  min-width: 0;
  height: 1.2em;
  overflow: hidden;
}

.announce-ticker-line {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  will-change: transform, opacity;
}

.announce-ticker-line-next {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(115%);
}

.announce-ticker-link.is-animating .announce-ticker-line-current {
  animation: announceTickerCurrent 560ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.announce-ticker-link.is-animating .announce-ticker-line-next {
  animation: announceTickerNext 560ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes announceTickerCurrent {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-115%);
  }
}

@keyframes announceTickerNext {
  from {
    opacity: 0;
    transform: translateY(115%);
  }

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

.announce-important {
  color: #ff3f3f;
  font-weight: 400;
}

.announce-link {
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: clamp(0.95rem, 0.55vw, 1.02rem);
  font-weight: 500;
}

.announce-link:hover {
  opacity: 0.86;
}

.announce-link-mobile {
  display: none;
}

.announce-link-desktop {
  display: inline-block;
}

.announce-actions {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

/* Header */
.main-header {
  background: #fff;
  position: relative;
  border-bottom: 1px solid #d7d9de;
  overflow: visible;
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 46px;
  gap: 1.75rem;
  padding-left: 126px;
}

.brand-float {
  position: absolute;
  left: 0;
  top: 0;
  width: 98px;
  height: 136px;
  background: var(--primary);
  border-radius: 0 0 6px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 0.45rem 0.88rem;
  z-index: 3;
  box-shadow: 0 10px 20px rgba(16, 50, 79, 0.22);
}

.brand-float-img {
  display: block;
  max-width: 80%;
  max-height: 88%;
  width: auto;
  height: auto;
  object-fit: contain;
  transform: translateY(12px);
}

.main-nav {
  display: flex;
  flex: 1;
  justify-content: flex-start;
  gap: clamp(1.15rem, 2vw, 2.15rem);
  font-size: 0.98rem;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.login-link {
  font-size: 0.96rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: auto;
}

.login-icon-img {
  width: 1.8rem;
  height: 1.8rem;
  display: block;
  object-fit: contain;
  filter: brightness(0) saturate(100%);
}

.profile-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  z-index: 5;
}

.profile-page-backdrop {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(0, 0, 0, 0.56);
  border: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.profile-page-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.profile-panel-open .top-stack {
  z-index: 2000;
}

.profile-button {
  position: relative;
  z-index: 6501;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 50%;
  background: transparent;
  padding: 0;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  color: var(--primary);
  font: inherit;
}

.profile-button:focus-visible {
  outline: 2px solid rgba(38, 132, 198, 0.34);
  outline-offset: 3px;
}

.profile-button-img {
  width: 1.9rem;
  height: 1.9rem;
  display: block;
  object-fit: contain;
}

.profile-button-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.profile-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(385px, calc(100vw - 2rem));
  height: 242.8px;
  background: #fff;
  color: #1f242b;
  border: 0;
  border-radius: 0 0 8px 8px;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  overflow: hidden;
  z-index: 6500;
}

.profile-menu.is-open .profile-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.profile-panel-head {
  position: relative;
  height: 124.8px;
  padding: 1.75rem 3.25rem 1.2rem 1.15rem;
  color: #fff;
  background:
    linear-gradient(150deg, rgba(16, 50, 79, 0.96), rgba(38, 132, 198, 0.92));
  overflow: hidden;
}

.profile-panel-head::before {
  content: "";
  position: absolute;
  top: -142px;
  right: -132px;
  width: 365px;
  height: 335px;
  background: url("/assets/icons/account/maqam-pattern.svg") top right / contain no-repeat;
  opacity: 0.34;
  pointer-events: none;
}

.profile-panel-id {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.75rem;
}

.profile-panel-name {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 400;
}

.profile-panel-meta {
  font-size: 12.48px;
  line-height: 1.2;
}

.profile-panel-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  z-index: 2;
}

.profile-panel-close::before,
.profile-panel-close::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 5px;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.profile-panel-close::before {
  transform: rotate(45deg);
}

.profile-panel-close::after {
  transform: rotate(-45deg);
}

.profile-stats {
  height: 56px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  border-bottom: 1px solid #e4e4e8;
}

.profile-stat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 0;
  color: #000;
  font-size: 12px;
}

.profile-stat strong {
  color: #000;
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
}

.profile-stat span,
.profile-action span {
  color: #000;
}

.profile-stat-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
}

.profile-stat-icon--journeys {
  width: 1.42rem;
  height: 1.42rem;
}

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

.profile-action {
  min-height: 0;
  height: 60px;
  border: 0;
  border-right: 1px solid #d8e7f0;
  background: #fff;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.55rem 0.6rem;
  font: inherit;
  font-size: 13px;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
}

.profile-action:last-child {
  border-right: 0;
}

.profile-action:hover,
.profile-action:focus-visible {
  background: #eef7fc;
}

.profile-action-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
}

.profile-action-icon--logout {
  width: 1.08rem;
  height: 1.08rem;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--rect-radius);
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #000;
  margin: 5px auto;
}

.main-nav-close {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  height: var(--hero-overlay-height);
  min-height: var(--hero-overlay-height);
  background: #080d14;
  overflow: visible;
}

.hero-media {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: var(--hero-overlay-height);
  overflow: hidden;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 26%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: var(--hero-overlay-height);
  background: linear-gradient(
    90deg,
    rgba(2, 8, 18, 0.9) 0%,
    rgba(2, 8, 18, 0.62) 30%,
    rgba(2, 8, 18, 0.24) 62%,
    rgba(2, 8, 18, 0.12) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: var(--hero-overlay-height);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.08) 65%,
    rgba(255, 255, 255, 0.14) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 180px;
  min-height: auto;
  padding-bottom: 0;
  color: #fff;
  display: block;
}

.hero-content h1 {
  font-size: 36px;
  line-height: 1.12;
  max-width: 18ch;
  margin-bottom: 1.35rem;
  letter-spacing: 0;
  text-align: left;
  font-style: normal;
  font-variation-settings: normal;
  font-weight: 400;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 40px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  border-radius: 999px;
  padding: 0;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.pill-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Booking */
.booking-shell {
  --booking-tab-rail-height: 42px;
  --booking-tab-overlap: calc(var(--booking-tab-rail-height) / 2);
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--hero-overlay-height) - var(--booking-tab-height));
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  z-index: 5;
}

.booking-tabs {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.2rem;
  width: max-content;
  max-width: calc(100% - 2rem);
  min-height: var(--booking-tab-rail-height);
  margin: 0 0 calc(var(--booking-tab-overlap) * -1) clamp(1rem, 2vw, 1.35rem);
  padding: 0.22rem;
  border: 1px solid #edf1f4;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(17, 31, 42, 0.1);
  position: relative;
  z-index: 2;
}

.booking-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #68717b;
  padding: 0 1rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

.booking-tab.is-active {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr 200px;
  gap: 1.2rem;
  align-items: center;
  background: #fff;
  border: none;
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(19, 19, 19, 0.12);
  padding: calc(1.15rem + var(--booking-tab-overlap)) 1rem 1.05rem;
}

.booking-panel[hidden] {
  display: none;
}

.booking-form--status {
  grid-template-columns: minmax(0, 1fr) 200px;
}

.booking-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto;
  row-gap: 0.38rem;
  align-content: center;
  min-height: 58px;
  margin: 0;
  padding: 0.72rem 0.9rem;
  border: 1px solid #cfd7e2;
  border-radius: 12px;
  background: #fff;
}

.booking-field:focus-within {
  outline: 2px solid rgba(38, 132, 198, 0.4);
  outline-offset: 2px;
}

.booking-field-label {
  grid-column: 1;
  color: #101722;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.1;
}

.booking-field select,
.booking-field input {
  grid-column: 1;
  width: 100%;
  min-height: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1.25;
  background: transparent;
}

.booking-field select:focus,
.booking-field input:focus {
  outline: none;
}

.booking-field input::placeholder {
  color: #6f7784;
}

.booking-field select:required:invalid {
  color: #6f7784;
}

.continue-btn {
  border: none;
  border-radius: 999px;
  min-height: 50px;
  background: var(--primary);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.continue-btn:hover {
  background: var(--primary-dark);
}

.booking-tab:focus-visible,
.continue-btn:focus-visible {
  outline: 2px solid rgba(38, 132, 198, 0.4);
  outline-offset: 2px;
}

.booking-feedback {
  grid-column: 1 / -1;
  color: #1d5d90;
  font-size: 0.88rem;
  line-height: 1.35;
}

.booking-feedback:empty {
  display: none;
}

main {
  padding-top: 120px;
}

/* Inner pages */
body.inner-page main {
  padding-top: 0;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.inner-hero {
  position: relative;
  min-height: 420px;
  background: #080d14;
  overflow: hidden;
}

.inner-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.inner-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 26%;
  display: block;
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2, 8, 18, 0.88) 0%,
    rgba(2, 8, 18, 0.58) 35%,
    rgba(2, 8, 18, 0.24) 68%,
    rgba(2, 8, 18, 0.12) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.08) 65%,
    rgba(255, 255, 255, 0.14) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.inner-hero-content {
  position: relative;
  z-index: 3;
  padding-top: 180px;
  padding-bottom: 2.8rem;
  color: #fff;
}

.inner-hero-title {
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-weight: 500;
  max-width: 18ch;
}

.inner-hero-title span {
  display: block;
}

.inner-status {
  text-align: center;
  padding: 2.9rem 0 3.7rem;
}

.inner-status-text {
  font-size: 1rem;
  color: #4a5058;
  margin-bottom: 1.25rem;
}

.back-home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 50px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.back-home-btn:hover,
.back-home-btn:focus-visible {
  background: #1771b4;
}

body.inner-page .footer {
  margin-top: 0;
}

.visa-service-page main {
  min-height: calc(100svh - 94px);
  display: grid;
  align-items: center;
}

.visa-service-status {
  display: grid;
  justify-items: center;
  gap: clamp(1.45rem, 3vw, 2.25rem);
  padding: clamp(4.6rem, 8vw, 6.5rem) 0;
}

.visa-service-icon {
  position: relative;
  width: clamp(96px, 13vw, 128px);
  height: clamp(96px, 13vw, 128px);
  border-radius: 50%;
  background: #f0f2f2;
  display: grid;
  place-items: center;
}

.visa-service-icon::before {
  content: "";
  width: 42%;
  height: 42%;
  border: clamp(4px, 0.45vw, 5px) solid #050505;
  border-radius: 50%;
}

.visa-service-icon::after {
  content: "";
  position: absolute;
  width: 14%;
  height: 14%;
  background: #050505;
  clip-path: polygon(50% 0, 64% 36%, 100% 50%, 64% 64%, 50% 100%, 36% 64%, 0 50%, 36% 36%);
}

.visa-service-title {
  color: #050505;
  font-size: clamp(2.45rem, 5vw, 4.35rem);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: 0;
}

.visa-service-message {
  max-width: 38ch;
  color: #2f3033;
  font-size: 18px;
  line-height: 1.52;
  font-weight: 400;
  letter-spacing: 0;
}

.visa-service-home {
  margin-top: clamp(1rem, 2.8vw, 2.4rem);
  width: auto;
  height: auto;
  min-height: 0;
  border-radius: 0;
  background: transparent;
  color: #1f2024;
  font-size: clamp(1.25rem, 2.5vw, 2.1rem);
  font-weight: 400;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 0.08em;
}

.visa-service-home:hover,
.visa-service-home:focus-visible {
  background: transparent;
  color: #000;
}

/* Visa processing page */
.visa-processing-page {
  background: var(--bg);
}

.visa-processing-page .inner-hero-title {
  max-width: 20ch;
  line-height: 1.18;
  letter-spacing: 0;
}

.visa-processing-page .inner-hero-title span + span {
  margin-top: 0.12em;
}

.visa-processing-page .inner-hero-image {
  object-position: center 48%;
}

.visa-processing-main {
  background: var(--bg);
}

.visa-processing-shell {
  padding: 3.5rem 0 6rem;
}

.visa-processing-panel {
  background: #fff;
  border-radius: 22px;
  padding: 3.2rem 3rem 3rem;
}

.visa-processing-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 2.5rem;
  align-items: start;
}

.visa-processing-title-wrap {
  max-width: 910px;
}

.visa-processing-title-wrap h2,
.visa-document-head h2 {
  color: #101722;
  font-size: 30px;
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: 0;
}

.visa-processing-title-wrap p,
.visa-document-head p,
.visa-requirement-card p {
  color: #1f2732;
  font-size: 16px;
  line-height: 1.58;
  letter-spacing: 0;
}

.visa-processing-title-wrap p {
  margin-top: 1.05rem;
}

.visa-price-card {
  min-height: 150px;
  border: 1px solid #cfe2f0;
  border-radius: 16px;
  background: #fff;
  padding: 1.2rem 1rem;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.visa-price-card span,
.visa-price-card small {
  color: #53616f;
  font-size: 14px;
  line-height: 1.2;
}

.visa-price-card strong {
  margin: 0.32rem 0;
  color: var(--primary);
  font-size: 36px;
  line-height: 1;
  font-weight: 600;
}

.visa-document-section {
  margin-top: 3.1rem;
}

.visa-document-head {
  max-width: 870px;
}

.visa-document-head p {
  margin-top: 0.82rem;
}

.visa-requirement-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.7rem;
}

.visa-requirement-card {
  min-height: 216px;
  border: 1px solid #dde2e9;
  border-radius: 16px;
  background: #fff;
  padding: 1.55rem 1.45rem;
  display: grid;
  align-content: start;
}

.visa-requirement-card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  object-position: center;
  display: block;
  margin-bottom: 1.2rem;
  opacity: 1;
  filter: none;
}

.visa-requirement-card img[src$="passport-id.svg"] {
  width: 54px;
  height: 44px;
}

.visa-requirement-card img[src$="flights.svg"] {
  width: 48px;
  height: 48px;
}

.visa-requirement-card img[src$="hotel.svg"],
.visa-requirement-card img[src$="transfer.svg"] {
  width: 54px;
  height: 44px;
}

.visa-requirement-card h3 {
  max-width: 14ch;
  color: #101722;
  font-size: 21px;
  line-height: 1.22;
  font-weight: 400;
  letter-spacing: 0;
}

.visa-requirement-card p {
  margin-top: 0.92rem;
  color: #25303b;
}

.visa-request-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 3.4rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  padding: 0 1.85rem;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
}

.visa-request-btn:hover,
.visa-request-btn:focus-visible {
  background: var(--primary-dark);
}

@media (max-width: 920px) {
  .visa-processing-shell {
    padding: 3rem 0 5rem;
  }

  .visa-processing-panel {
    padding: 2.35rem 1.55rem 2.5rem;
    border-radius: 18px;
  }

  .visa-processing-head {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .visa-price-card {
    width: min(100%, 220px);
    min-height: 128px;
  }

  .visa-requirement-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 620px) {
  .visa-processing-page .inner-hero-image {
    object-position: 54% center;
  }

  .visa-processing-shell {
    width: min(100% - 2rem, var(--max));
    padding: 2.15rem 0 3.7rem;
  }

  .visa-processing-panel {
    padding: 1rem;
    border-radius: 16px;
  }

  .visa-processing-title-wrap h2,
  .visa-document-head h2 {
    font-size: 25px;
    line-height: 1.2;
  }

  .visa-processing-title-wrap p,
  .visa-document-head p,
  .visa-requirement-card p {
    font-size: 15px;
    line-height: 1.52;
  }

  .visa-processing-title-wrap p,
  .visa-document-head p {
    max-width: 31ch;
  }

  .visa-price-card {
    width: 100%;
    min-height: 112px;
    border-radius: 12px;
  }

  .visa-price-card strong {
    font-size: 32px;
  }

  .visa-document-section {
    margin-top: 2.1rem;
  }

  .visa-requirement-grid {
    grid-template-columns: 1fr;
    gap: 0.82rem;
    margin-top: 1.15rem;
  }

  .visa-requirement-card {
    min-height: 0;
    border-radius: 12px;
    padding: 1rem 1.05rem;
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 0.82rem;
    align-items: start;
  }

  .visa-requirement-card img {
    width: 44px;
    height: 44px;
    grid-column: 1;
    grid-row: 1 / span 2;
    justify-self: center;
    margin: 0.05rem 0 0;
  }

  .visa-requirement-card img[src$="passport-id.svg"],
  .visa-requirement-card img[src$="hotel.svg"],
  .visa-requirement-card img[src$="transfer.svg"] {
    width: 46px;
    height: 36px;
  }

  .visa-requirement-card img[src$="flights.svg"] {
    width: 40px;
    height: 40px;
  }

  .visa-requirement-card h3 {
    grid-column: 2;
    max-width: none;
    font-size: 19px;
    line-height: 1.22;
  }

  .visa-requirement-card p {
    grid-column: 2;
    margin-top: 0.58rem;
  }

  .visa-request-btn {
    width: 100%;
    min-height: 48px;
    margin-top: 1.55rem;
    padding: 0 1rem;
  }
}

/* Passport processing page */
.passport-processing-page {
  background: var(--bg);
}

.passport-main {
  background: var(--bg);
}

.passport-processing-shell {
  padding: clamp(3.25rem, 5vw, 4.8rem) 0 5.4rem;
  color: #000;
  font-weight: 400;
}

.passport-processing-shell :where(h2, h3, h4, p, li, th, td) {
  color: #000;
  font-weight: 400;
}

.passport-processing-shell h2 {
  color: #000;
  font-size: 30px;
  font-weight: 400;
}

.passport-processing-shell p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
}

.passport-opening {
  max-width: 1060px;
}

.passport-processing-page .inner-hero-title {
  max-width: 20ch;
  line-height: 1.18;
}

.passport-processing-page .inner-hero-title span + span {
  margin-top: 0.12em;
}

.passport-processing-page .inner-hero-image {
  object-position: center 26%;
}

.passport-kicker {
  color: var(--primary);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.passport-opening h2 {
  max-width: 20ch;
  color: #000;
  font-size: 30px;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 1.15rem;
}

.passport-opening > p,
.passport-step-copy,
.passport-copy-panel p {
  max-width: 105ch;
  color: #000;
  font-size: 16px;
  line-height: 1.62;
  font-weight: 400;
}

.passport-opening strong,
.passport-note-card strong {
  color: #000;
  font-weight: 400;
}

.passport-step-copy a {
  color: #116fae;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.passport-step {
  margin-top: clamp(2.8rem, 5vw, 4rem);
}

.passport-step > h2 {
  color: #000;
  font-size: 30px;
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: 0;
  margin: 0 0 1rem;
}

.passport-panel {
  background: #fff;
  border: 0;
  border-radius: 18px;
  padding: clamp(1.25rem, 2.7vw, 2rem);
  overflow: hidden;
}

.passport-panel-head h3,
.passport-table-head h3 {
  color: #000;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: 0;
}

.passport-panel-head p,
.passport-table-head p {
  max-width: 92ch;
  color: #000;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
}

.passport-panel-head p {
  margin-top: 0;
}

.passport-table-head p {
  margin-top: 0.7rem;
}

.passport-requirement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.55rem;
}

.passport-requirement-card {
  border: 1px solid #dde4ee;
  border-radius: 14px;
  background: #fff;
  padding: 1.15rem 1.2rem;
}

.passport-card-icon {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 0.85rem;
  color: #303846;
}

.passport-card-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.passport-card-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.passport-card-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.passport-requirement-card h4 {
  color: #000;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 0.55rem;
}

.passport-requirement-card p {
  color: #000;
  font-size: 16px;
  line-height: 1.48;
  font-weight: 400;
}

.passport-card-note {
  margin-top: 1rem;
  padding-top: 0.95rem;
  border-top: 1px solid #e2e7ef;
}

.passport-card-note strong {
  font-weight: 700;
}

.passport-action-cta {
  display: flex;
  align-items: center;
  min-height: 275px;
  margin-top: clamp(2.4rem, 4.5vw, 3.6rem);
  padding: clamp(1.65rem, 4.5vw, 3.15rem);
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(11, 18, 33, 0.94) 0%,
      rgba(15, 47, 72, 0.82) 46%,
      rgba(38, 132, 198, 0.18) 100%
    ),
    url("../images/passport-processing-hero.jpg");
  background-size: cover;
  background-position: center 34%;
  box-shadow: 0 18px 40px rgba(15, 31, 49, 0.12);
}

.passport-action-copy {
  max-width: 620px;
}

.passport-action-copy h3 {
  color: #fff;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.16;
  font-weight: 400;
  letter-spacing: 0;
}

.passport-action-copy p {
  max-width: 64ch;
  margin-top: 0.9rem;
  color: #fff;
  font-size: 16px;
  line-height: 1.62;
  font-weight: 400;
}

.passport-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.65rem;
}

.passport-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.5rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(38, 132, 198, 0.28);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.passport-whatsapp-btn--secondary {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: none;
}

.passport-whatsapp-btn:hover,
.passport-whatsapp-btn:focus-visible {
  background: #1771b4;
  box-shadow: 0 14px 32px rgba(23, 113, 180, 0.32);
  transform: translateY(-1px);
}

.passport-whatsapp-btn--secondary:hover,
.passport-whatsapp-btn--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  box-shadow: none;
}

.passport-whatsapp-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.passport-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.passport-note-card {
  min-width: 0;
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  background: #f5f8fc;
  padding: 1rem 1.1rem;
}

.passport-note-card h4 {
  color: #000;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 400;
  margin-bottom: 0.48rem;
}

.passport-note-card p {
  color: #000;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
}

.passport-note-list {
  list-style: none;
  display: grid;
  gap: 0.9rem;
  margin: 1.15rem 0 0;
  padding: 0;
}

.passport-note-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  background: transparent;
  padding: 0;
}

.passport-note-tick {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  flex: 0 0 auto;
  margin-top: 0.08rem;
}

.passport-note-tick::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(42deg);
}

.passport-note-list h4 {
  color: #000;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 400;
  margin-bottom: 0.38rem;
}

.passport-note-list p {
  color: #000;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
}

.passport-table-head {
  margin-top: 1.4rem;
}

.passport-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid #d8dee8;
  border-radius: 10px;
  margin-top: 1rem;
  background: #fff;
}

.passport-fee-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  table-layout: fixed;
  background: #fff;
}

.passport-fee-table th,
.passport-fee-table td {
  padding: 0.9rem 1rem;
  border-right: 0;
  border-bottom: 1px solid #e2e7ef;
  color: #000;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
  text-align: left;
  vertical-align: middle;
}

.passport-fee-table th {
  background: #2684c6;
  color: #fff;
  font-weight: 700;
}

.passport-fee-table th:first-child {
  width: 31%;
}

.passport-fee-table th:nth-child(2) {
  width: 49%;
}

.passport-fee-table th:last-child,
.passport-fee-table td:last-child {
  width: 20%;
  text-align: right;
  white-space: nowrap;
}

.passport-fee-table tr:nth-child(odd) td {
  background: #f4f8fc;
}

.passport-fee-table tbody tr:last-child td {
  border-bottom: 0;
}

.passport-copy-panel {
  display: grid;
  gap: 0.75rem;
  max-width: 1060px;
}

/* Package detail page */
.package-detail-page {
  --package-panel-radius: 20px;
  --package-item-radius: 18px;
  background: #eef0f2;
}

.package-detail-main {
  background: #eef0f2;
}

.package-detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 330px);
  gap: clamp(1.3rem, 3vw, 2rem);
  align-items: start;
  padding: clamp(6.15rem, 8vw, 7.25rem) 0 4.8rem;
}

.package-detail-content {
  min-width: 0;
}

.package-detail-kicker {
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 0.48rem;
}

.package-detail-content > h2 {
  max-width: 10ch;
  color: #020407;
  font-size: 32px;
  line-height: 1.06;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 2.15rem;
}

.package-deposit-panel {
  height: 225.75px;
  min-height: 0;
  display: grid;
  grid-template-columns: 316px minmax(0, 1fr);
  gap: clamp(1.15rem, 2.4vw, 1.7rem);
  align-items: center;
  overflow: hidden;
  border-radius: var(--package-panel-radius);
  padding: clamp(1.2rem, 2.4vw, 1.7rem);
  background: #fff;
  color: #1f242b;
}

.package-deposit-copy {
  display: grid;
  align-content: center;
  justify-items: start;
}

.package-deposit-copy h3 {
  color: #1f242b;
  font-size: 16px;
  line-height: 1.28;
  font-weight: 700;
  margin-bottom: 0.62rem;
}

.package-deposit-copy p {
  max-width: 38ch;
  color: #30353d;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 400;
}

.package-reserve-btn,
.package-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
}

.package-reserve-btn {
  width: min(100%, 215px);
  height: 46px;
  min-height: 46px;
  margin-top: 1.7rem;
  border: 1px solid #1f242b;
  background: transparent;
  color: #1f242b;
  font-size: 15px;
}

.package-reserve-btn:hover,
.package-reserve-btn:focus-visible {
  background: #f4f5f6;
}

.package-deposit-media {
  order: -1;
  width: 316px;
  align-self: center;
  height: 177px;
  min-height: 0;
  border-radius: var(--package-item-radius);
  overflow: hidden;
  background: #dfe7ef;
}

.package-deposit-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.package-included-panel {
  margin-top: 3.05rem;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.package-included-panel h3 {
  color: #07090b;
  font-size: 32px;
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 1.55rem;
}

.package-included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.85rem 1rem;
}

.package-included-card {
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: min-content min-content;
  align-content: center;
  align-items: center;
  justify-items: start;
  column-gap: 0.82rem;
  row-gap: 0.34rem;
  color: #07090b;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: color 0.18s ease;
  justify-self: start;
  width: fit-content;
  max-width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.package-included-card:hover,
.package-included-card:focus-visible,
.package-included-card.is-active {
  color: var(--primary);
}

.package-included-card::after {
  display: none;
  content: none;
}

.package-included-card::before {
  content: "";
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  transition: box-shadow 0.18s ease;
}

.package-included-card:hover::after,
.package-included-card:focus-visible::after,
.package-included-card.is-active::after {
  border-color: var(--primary);
}

.package-included-card:focus-visible {
  outline: none;
}

.package-included-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
  align-self: center;
  justify-self: center;
  margin-bottom: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  transform-origin: center;
  transition: transform 0.18s ease;
  z-index: 1;
}

.package-included-card:hover::before,
.package-included-card:focus-visible::before,
.package-included-card.is-active::before {
  box-shadow: none;
}

.package-included-card:hover .package-included-icon,
.package-included-card:focus-visible .package-included-icon,
.package-included-card.is-active .package-included-icon {
  transform: scale(1.14);
}

.package-included-title {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  color: #07090b;
  font-size: 18px;
  line-height: 1.08;
  font-weight: 400;
  text-transform: none;
}

.package-included-note {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  margin-top: 0;
  color: #07090b;
  font-size: 12px;
  line-height: 1.08;
  font-weight: 400;
}

.package-services-panel {
  margin-top: 3.15rem;
}

.package-services-card {
  position: relative;
  width: 100%;
  min-height: 210px;
  overflow: hidden;
  border: 0;
  border-radius: var(--package-panel-radius);
  background: #151923;
  color: #fff;
  padding: clamp(1.2rem, 2.4vw, 1.7rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  text-align: left;
}

.package-services-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(17, 20, 29, 0.98) 0%,
    rgba(17, 20, 29, 0.86) 38%,
    rgba(17, 20, 29, 0.42) 68%,
    rgba(17, 20, 29, 0.08) 100%
  );
}

.package-services-card-copy {
  position: relative;
  z-index: 2;
}

.package-services-card-copy {
  display: grid;
  justify-items: start;
  max-width: 72%;
  padding-left: 0.45rem;
}

.package-services-card-title {
  display: block;
  max-width: none;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.12;
  font-weight: 400;
  white-space: nowrap;
}

.package-services-card-text {
  display: block;
  max-width: 58ch;
  margin-top: 0.62rem;
  font-size: 14px;
  line-height: 1.42;
  font-weight: 400;
}

.package-services-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 1rem;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #0f1722;
  padding: 0 1.25rem;
  font-family: inherit;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.package-services-card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.package-services-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center right;
}

.package-services-card-action:hover,
.package-services-card-action:focus-visible {
  background: #f1f4f8;
}

.package-services-card-action:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.package-services-drawer-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.package-services-copy {
  min-width: 0;
}

.package-services-copy h3 {
  color: #07090b;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: 0;
}

.package-services-copy p {
  max-width: 56ch;
  margin-top: 0.55rem;
  color: #39424e;
  font-size: 16px;
  line-height: 1.45;
}

.package-services-legend {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.65rem 1rem;
  max-width: none;
  padding: 0;
  margin: 0;
}

.package-services-legend li {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  color: #07090b;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  white-space: nowrap;
}

.package-services-legend img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.package-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.3rem, 3.4vw, 3rem);
  align-items: start;
}

.package-services-column {
  display: grid;
  gap: 1.35rem;
  align-content: start;
}

.package-service-group h4 {
  color: var(--primary);
  font-size: 20px;
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 0.55rem;
}

.package-service-list {
  list-style: none;
  display: grid;
  gap: 0.42rem;
  padding: 0;
  margin: 0;
}

.package-service-item {
  --service-status-icon: url("../icons/package-services/svc-included.svg");
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 0.42rem;
  align-items: start;
  color: #07090b;
  font-size: 15px;
  line-height: 1.28;
}

.package-service-item::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 0.02em;
  background-image: var(--service-status-icon);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.package-service-item--not {
  --service-status-icon: url("../icons/package-services/svc-not.svg");
}

.package-service-item--extra {
  --service-status-icon: url("../icons/package-services/svc-extra.svg");
}

.package-services-drawer {
  position: fixed;
  inset: 0;
  z-index: 3000;
  pointer-events: none;
  visibility: hidden;
}

.package-services-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.package-services-drawer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(11, 15, 22, 0.58);
  opacity: 0;
  transition: opacity 0.24s ease;
  cursor: pointer;
}

.package-services-drawer.is-open .package-services-drawer-backdrop {
  opacity: 1;
}

.package-services-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100%, 624px);
  overflow: hidden;
  background: #fff;
  color: #111418;
  box-shadow: -24px 0 44px rgba(12, 18, 29, 0.16);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.package-services-drawer.is-open .package-services-drawer-panel {
  transform: translateX(0);
}

.package-drawer-header {
  min-height: 88px;
  border-bottom: 1px solid #e2e7ed;
  background: #fff;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 0.8rem;
  padding: 0 2rem;
  flex: 0 0 auto;
}

.package-drawer-header h2 {
  grid-column: 2;
  color: #253041;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  text-align: center;
}

.package-drawer-body {
  overflow-y: auto;
  min-height: 0;
  flex: 1 1 auto;
  padding: clamp(1.45rem, 3vw, 2.15rem);
}

.package-drawer-close {
  grid-column: 3;
  justify-self: end;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #111418;
  font-family: inherit;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.package-drawer-close:hover,
.package-drawer-close:focus-visible {
  background: #f1f4f8;
  outline: none;
}

body.package-services-drawer-open {
  overflow: hidden;
}

.package-summary-card {
  position: sticky;
  top: 108px;
  border-radius: var(--package-panel-radius);
  background: #fff;
  padding: clamp(1.25rem, 2.4vw, 1.55rem);
}

.package-summary-card h3 {
  color: var(--primary);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.package-summary-route {
  border-bottom: 1px solid #aeb4bb;
  padding-bottom: 0.72rem;
  margin-bottom: 0.85rem;
}

.package-summary-route strong,
.package-summary-route span {
  display: block;
}

.package-summary-route strong {
  color: #16191e;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
}

.package-summary-route span {
  margin-top: 0.1rem;
  color: #40454c;
  font-size: 16px;
  line-height: 1.28;
}

.package-price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin: 0.55rem 0 1.25rem;
}

.package-price-row > span {
  color: #16191e;
  font-size: 16px;
  line-height: 1.2;
}

.package-price-row strong {
  color: #000;
  display: grid;
  justify-items: end;
  font-size: 25px;
  line-height: 0.92;
  font-weight: 400;
  white-space: nowrap;
}

.package-price-row small {
  display: block;
  font-size: 9px;
  line-height: 1.05;
  font-weight: 700;
}

.package-summary-card p {
  color: #111418;
  font-size: 14px;
  line-height: 1.14;
}

.package-summary-card p + p {
  margin-top: 1.65rem;
}

.package-payment-note {
  font-weight: 700;
}

.package-book-btn {
  width: 132px;
  min-height: 46px;
  margin-top: 1.35rem;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
}

.package-book-btn:hover,
.package-book-btn:focus-visible {
  background: #1771b4;
}

.package-explore-section {
  margin-top: 3.6rem;
  padding: 0;
}

.package-explore-head {
  display: block;
  text-align: left;
  margin-bottom: 1.65rem;
}

.package-explore-head h2 {
  color: #07090b;
  font-size: 32px;
  line-height: 1.12;
  font-weight: 400;
}

.package-explore-head p {
  max-width: 46ch;
  margin: 0.9rem 0 0;
  color: #39424e;
  font-size: 16px;
  line-height: 1.45;
}

.package-explore-section .package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.package-explore-section .package-card {
  aspect-ratio: 382 / 340;
}

.package-detail-drawer {
  position: fixed;
  inset: 0;
  z-index: 3000;
  pointer-events: none;
  visibility: hidden;
}

.package-detail-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.package-detail-drawer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(11, 15, 22, 0.58);
  opacity: 0;
  transition: opacity 0.24s ease;
  cursor: pointer;
}

.package-detail-drawer.is-open .package-detail-drawer-backdrop {
  opacity: 1;
}

.package-detail-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100%, 624px);
  overflow: hidden;
  background: #fff;
  color: #111418;
  box-shadow: -24px 0 44px rgba(12, 18, 29, 0.16);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.package-detail-drawer.is-open .package-detail-drawer-panel {
  transform: translateX(0);
}

.package-detail-drawer-head {
  display: grid;
  justify-items: start;
  gap: 1.25rem;
  margin-bottom: 1.45rem;
}

.package-detail-drawer-head[hidden],
.package-detail-drawer-copy[hidden],
.package-detail-drawer-list[hidden] {
  display: none;
}

.package-detail-drawer-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 18px;
  background: #dfe7ef;
}

.package-detail-drawer-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.package-detail-drawer-head h3 {
  color: #07090b;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
}

.package-detail-drawer-head p {
  margin-top: 0.4rem;
  color: #4b5360;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
}

.package-detail-drawer-copy {
  color: #1f2630;
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 1.3rem;
}

.package-detail-drawer-copy p + p {
  margin-top: 1rem;
}

.package-detail-drawer-after-copy[hidden] {
  display: none;
}

.package-detail-drawer-after-copy {
  color: #1f2630;
  font-size: 16px;
  line-height: 1.55;
  margin-top: 1.3rem;
}

.package-detail-drawer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.72rem;
}

.package-detail-drawer-list li {
  position: relative;
  padding-left: 1.35rem;
  color: #202833;
  font-size: 16px;
  line-height: 1.45;
}

.package-detail-drawer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
}

.package-detail-drawer-custom[hidden] {
  display: none;
}

.package-detail-drawer-custom {
  display: grid;
  gap: 1rem;
}

.package-hotel-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.95fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: stretch;
  border: 1px solid #cfd6de;
  border-radius: 18px;
  background: #fff;
  padding: 1rem;
}

.package-hotel-media {
  position: relative;
  width: 100%;
  min-height: 184px;
  aspect-ratio: 1.32;
  overflow: hidden;
  border-radius: 12px;
  background: #dfe7ef;
}

.package-hotel-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.package-hotel-badge {
  position: absolute;
  top: 0.86rem;
  left: 0.86rem;
  border-radius: 4px;
  background: #fff;
  color: #111418;
  padding: 0.52rem 0.75rem;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(13, 18, 26, 0.12);
}

.package-hotel-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.25rem 0.25rem 0.25rem 0;
}

.package-hotel-title {
  color: var(--primary);
  font-size: 27px;
  line-height: 1.08;
  font-weight: 700;
  text-transform: uppercase;
}

.package-hotel-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin-top: 0.42rem;
}

.package-hotel-stars {
  color: #ffb800;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.04em;
}

.package-hotel-nights {
  border: 1px solid #d4dae2;
  border-radius: 5px;
  color: #1d2530;
  background: #fff;
  padding: 0.22rem 0.5rem;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
}

.package-hotel-details {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 1.05rem 0 0;
}

.package-hotel-detail {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 0.62rem;
  align-items: start;
  color: #111418;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
}

.package-hotel-detail-icon {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  margin-top: 0.02rem;
}

.package-hotel-detail-icon::before {
  content: "";
  width: 7px;
  height: 12px;
  border-right: 2px solid #0a9b4e;
  border-bottom: 2px solid #0a9b4e;
  transform: rotate(42deg);
}

.package-hotel-note {
  color: #374151;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
  margin: 0.35rem 0 0;
}

.package-flight-detail {
  display: grid;
  gap: 2.15rem;
  color: #000;
  width: min(100%, 520px);
  margin: 0 auto;
  padding-top: 0.35rem;
}

.package-flight-logo {
  width: min(275px, 64%);
  height: auto;
  display: block;
}

.package-flight-routes {
  display: grid;
  gap: 1rem;
}

.package-flight-route {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
}

.package-flight-city {
  display: grid;
  gap: 0.2rem;
}

.package-flight-city:last-child {
  justify-items: end;
  text-align: right;
}

.package-flight-city strong {
  color: var(--primary);
  font-size: 31px;
  line-height: 1;
  font-weight: 400;
}

.package-flight-city span {
  color: #000;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 400;
}

.package-flight-path {
  display: grid;
  grid-template-columns: minmax(34px, 1fr) 31px minmax(34px, 1fr);
  align-items: center;
  gap: 0.5rem;
}

.package-flight-path::before,
.package-flight-path::after {
  content: "";
  height: 1px;
  background: var(--primary);
}

.package-flight-path img {
  width: 31px;
  height: 31px;
  display: block;
  object-fit: contain;
}

.package-flight-path.is-reverse img {
  transform: scaleX(-1);
}

.package-flight-cabin {
  display: grid;
  gap: 1.25rem;
  padding-top: 0.25rem;
}

.package-flight-cabin h3 {
  color: #000;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 400;
}

.package-flight-perks {
  list-style: none;
  display: grid;
  gap: 0.78rem;
  padding: 0;
  margin: 0;
}

.package-flight-perk {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 0.78rem;
  align-items: center;
  color: #000;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 400;
}

.package-flight-perk-icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.package-flight-perk-icon::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 7px;
  height: 13px;
  border-right: 2px solid #0a9b4e;
  border-bottom: 2px solid #0a9b4e;
  transform: rotate(42deg);
}

.package-flight-notes {
  display: grid;
  gap: 0.95rem;
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
}

.package-flight-notes li {
  position: relative;
  color: #000;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
  padding-left: 1.08rem;
}

.package-flight-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--primary);
}

.package-transfer-detail {
  display: grid;
  gap: 1rem;
}

.package-transfer-card {
  display: grid;
  grid-template-columns: minmax(190px, 38%) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  border: 1px solid #d8dee7;
  border-radius: 14px;
  background: #fff;
  padding: 0;
  overflow: hidden;
}

.package-transfer-media {
  width: 100%;
  height: 100%;
  min-height: 184px;
  border-radius: 0;
  overflow: hidden;
  background: #e7edf4;
}

.package-transfer-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.package-transfer-content {
  min-width: 0;
  padding: 1rem 1.1rem;
}

.package-transfer-content h3 {
  color: #000;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 600;
}

.package-transfer-label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-top: 0.42rem;
  border-radius: 8px;
  background: #eef1f7;
  color: #000;
  padding: 0 0.72rem;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.package-transfer-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding: 0;
  margin: 0.85rem 0 0;
}

.package-transfer-meta li {
  position: relative;
  color: #000;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 500;
  padding-left: 1.28rem;
}

.package-transfer-meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.05em;
  width: 8px;
  height: 14px;
  border-right: 2px solid #0a9b4e;
  border-bottom: 2px solid #0a9b4e;
  transform: rotate(42deg);
}

.package-transfer-content p {
  color: #000;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
  margin-top: 0.7rem;
}

body.package-detail-drawer-open {
  overflow: hidden;
}

/* Umrah page */
.umrah-page {
  background: #eef1f8;
}

.umrah-page .inner-hero-image {
  object-position: center 26%;
}

.umrah-page .inner-hero-title {
  max-width: 20ch;
  line-height: 1.18;
}

.umrah-page .inner-hero-title span + span {
  margin-top: 0.12em;
}

.umrah-main {
  background: #eef1f8;
}

.umrah-intro {
  padding: 2.75rem 0 2.2rem;
}

.umrah-intro p {
  max-width: none;
  color: #142036;
  font-size: 16px;
  line-height: 1.58;
}

.umrah-intro p + p {
  margin-top: 1rem;
}

.umrah-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.45rem;
}

.umrah-primary-btn,
.umrah-outline-btn,
.umrah-glass-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.45rem;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.umrah-primary-btn {
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #fff;
}

.umrah-outline-btn {
  border: 1px solid #192131;
  background: transparent;
  color: #192131;
}

.umrah-primary-btn:hover,
.umrah-primary-btn:focus-visible {
  background: #1771b4;
  border-color: #1771b4;
}

.umrah-outline-btn:hover,
.umrah-outline-btn:focus-visible {
  background: #fff;
}

.umrah-section-head {
  margin-bottom: 1.45rem;
}

.umrah-section-head h2 {
  color: #121821;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.13;
  font-weight: 500;
  letter-spacing: 0;
}

.umrah-section-head p {
  max-width: 78ch;
  margin-top: 0.75rem;
  color: #263244;
  font-size: 16px;
  line-height: 1.55;
}

.umrah-travel-way,
.umrah-resources {
  padding: 2.45rem 0;
}

.umrah-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.umrah-service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: stretch;
}

.umrah-service-card {
  min-height: 150px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: #fff;
  color: #101722;
  padding: 1.1rem 1rem;
  display: grid;
  align-content: space-between;
  gap: 1rem;
  transition: border-color 0.24s ease, transform 0.24s ease;
}

.umrah-service-card {
  min-height: 56px;
  height: 56px;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  text-align: center;
}

.umrah-service-card:hover,
.umrah-service-card:focus-visible {
  border-color: #111722;
  outline: none;
  transform: translateY(-4px);
}

.umrah-service-card img {
  width: 1.45rem;
  height: 1.45rem;
  object-fit: contain;
  flex: 0 0 auto;
}

.umrah-service-card span:first-of-type {
  align-self: end;
  color: #101722;
  font-size: 18px;
  line-height: 1.22;
  font-weight: 500;
}

.umrah-service-card span:first-of-type {
  align-self: center;
  min-width: 0;
  font-size: 16px;
  line-height: 1.15;
}

.umrah-card-arrow {
  justify-self: end;
  color: #111722;
  font-size: 1.45rem;
  line-height: 1;
}

.umrah-card-arrow {
  display: none;
}

.umrah-packages {
  margin-top: 1.25rem;
  padding: 0;
}

.umrah-packages .section-title {
  text-align: left;
}

.umrah-packages .section-title p {
  margin-left: 0;
  margin-right: 0;
}

.umrah-special {
  margin-top: clamp(2.75rem, 4vw, 4rem);
  color: #050505;
}

.umrah-special-head {
  margin-bottom: 1.25rem;
}

.umrah-special-head h2 {
  color: #050505;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: 0;
}

.umrah-special-head p {
  margin-top: 0.35rem;
  color: #34273a;
  font-size: 16px;
  line-height: 1.4;
}

.umrah-special-card {
  min-height: 154px;
  border: none;
  border-radius: 14px;
  background: #fff;
  padding: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px;
  gap: 1.5rem;
  align-items: center;
}

.umrah-special-copy {
  min-width: 0;
  display: grid;
  gap: 0.82rem;
  align-content: center;
}

.umrah-special-kicker {
  color: #050505;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 0.5rem;
  text-transform: none;
}

.umrah-special h3 {
  color: #050505;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 400;
}

.umrah-page .umrah-section-head h2,
.umrah-page .umrah-packages .section-title h2,
.umrah-page .umrah-special-head h2,
.umrah-page .umrah-special h3 {
  font-size: 32px;
  font-weight: 400;
}

.umrah-special p:not(.umrah-special-kicker) {
  max-width: none;
  margin-top: 0.35rem;
  color: #050505;
  font-size: 14px;
  line-height: 1.4;
}

.umrah-special-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.umrah-special-actions .umrah-primary-btn {
  min-height: 36px;
  padding: 0 1rem;
  font-size: 14px;
}

.umrah-special-media {
  width: 104px;
  height: 104px;
  border-radius: 4px;
  overflow: hidden;
  background: #dfe7ef;
  justify-self: end;
}

.umrah-special-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 44%;
}

.umrah-resources.about-nav-section {
  margin-top: clamp(2rem, 3.2vw, 3rem);
  padding-bottom: 4.5rem;
}

.umrah-resources .umrah-section-head h2 {
  margin: 0;
}

.umrah-resources .about-nav-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

/* Why Maqam Travels page */
.why-maqam-page {
  background: var(--bg);
}

.why-maqam-page .inner-hero {
  min-height: 400px;
  background: #080d14;
  overflow: hidden;
}

.why-maqam-page .inner-hero::before {
  background: linear-gradient(
    90deg,
    rgba(2, 8, 18, 0.88) 0%,
    rgba(2, 8, 18, 0.58) 35%,
    rgba(2, 8, 18, 0.24) 68%,
    rgba(2, 8, 18, 0.12) 100%
  );
}

.why-maqam-page .inner-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 150px;
  z-index: 3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 150' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath opacity='0.41' d='M-160 90C80 112 300 104 500 76C700 48 880 22 1080 19C1230 18 1360 44 1600 70L1600 150L-160 150Z' fill='%23f7faff'/%3E%3Cpath opacity='0.41' d='M-160 78C70 105 300 101 500 83C710 61 880 36 1080 33C1240 31 1370 47 1600 64L1600 150L-160 150Z' fill='%23f7faff'/%3E%3Cpath d='M-160 86C70 116 305 116 500 98C710 79 880 55 1080 51C1240 49 1370 50 1600 58L1600 150L-160 150Z' fill='%23f7faff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center bottom;
}

.why-maqam-page .inner-hero-overlay {
  background: none;
  height: 0;
  top: auto;
  bottom: 0;
  z-index: 2;
}

.why-maqam-page .inner-hero-image {
  object-position: center 42%;
  filter: saturate(0.86);
}

.why-maqam-page .inner-hero-content {
  padding-top: 180px;
  padding-bottom: 0;
}

.why-maqam-page .inner-hero-title {
  max-width: 22ch;
  text-align: left;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.05;
  white-space: nowrap;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.36);
}

.why-maqam-page .inner-hero-title span + span {
  display: none;
}

.why-maqam-page .inner-hero-title .why-title-mobile-break {
  display: inline;
}

.why-reference-main {
  padding: 0 0 4.6rem;
}

.why-reference-page {
  max-width: var(--max);
}

.why-reference-head {
  padding-top: 2.45rem;
}

.why-reference-menu {
  width: 28px;
  display: grid;
  gap: 5px;
  padding-top: 0.45rem;
}

.why-reference-menu span {
  display: block;
  height: 3px;
  background: #6d0030;
}

.why-reference-copy {
  max-width: 86ch;
}

.why-reference-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.32rem;
  color: #6d0030;
  font-size: 11px;
  line-height: 1.2;
  margin-bottom: 1.05rem;
}

.why-reference-breadcrumb strong {
  font-weight: 700;
}

.why-reference-copy h2 {
  color: #1f2732;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.62rem;
}

.why-reference-copy p {
  color: #31363e;
  font-size: 16px;
  line-height: 1.5;
  max-width: 86ch;
}

.why-reference-tabs {
  position: relative;
  margin: 3.05rem auto 0;
  isolation: isolate;
}

.why-reference-tabs::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  box-shadow: 0 0 58px rgba(35, 35, 35, 0.055);
  pointer-events: none;
}

.why-reference-tablist {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.why-reference-tab {
  position: relative;
  min-height: 92px;
  border: 0;
  background: #eee;
  color: #1f2732;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  font-size: 17px;
  font-family: inherit;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
}

.why-reference-tab.is-left-of-active::after,
.why-reference-tab.is-right-of-active::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 42px;
  pointer-events: none;
  z-index: 1;
}

.why-reference-tab.is-right-of-active::after {
  right: -1px;
  box-shadow: 18px 0 34px rgba(35, 35, 35, 0.06);
  clip-path: inset(-14px -42px 0 0);
}

.why-reference-tab.is-left-of-active::after {
  left: -1px;
  box-shadow: -18px 0 34px rgba(35, 35, 35, 0.06);
  clip-path: inset(-14px 0 0 -42px);
}

.why-reference-tab:hover,
.why-reference-tab:focus-visible {
  background: #f7f7f7;
}

.why-reference-tab:focus-visible {
  outline: 3px solid rgba(109, 0, 48, 0.22);
  outline-offset: -3px;
}

.why-reference-tab.is-active {
  background: #fff;
  border-radius: 7px 7px 0 0;
  cursor: default;
  z-index: 4;
}

.why-reference-tab.is-active::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56px;
  z-index: -1;
  pointer-events: none;
}

.why-reference-tabs[data-active-index="0"] .why-reference-tab.is-active::before,
.why-reference-tabs[data-active-index="1"] .why-reference-tab.is-active::before {
  right: 0;
  box-shadow: 22px 0 42px rgba(35, 35, 35, 0.12);
  clip-path: inset(-18px -58px 0 0);
}

.why-reference-tabs[data-active-index="2"] .why-reference-tab.is-active::before,
.why-reference-tabs[data-active-index="3"] .why-reference-tab.is-active::before {
  left: 0;
  box-shadow: -22px 0 42px rgba(35, 35, 35, 0.12);
  clip-path: inset(-18px 0 0 -58px);
}

.why-reference-tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: #fff;
  pointer-events: none;
}

.why-reference-panels {
  margin-top: -1px;
  background: #fff;
  border-radius: 0 8px 8px 8px;
  box-shadow: 0 28px 58px rgba(35, 35, 35, 0.05);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.why-reference-tabs:not([data-active-index="0"]) .why-reference-panels {
  border-radius: 8px;
}

.why-reference-tab-panel {
  width: 100%;
  min-height: 314px;
  background: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: 1.45rem 1.5rem 2.45rem 2.4rem;
  opacity: 1;
  transform: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.why-reference-tab-panel[hidden] {
  display: none;
}

.why-reference-tab-panel.is-entering {
  opacity: 0;
  transform: translateY(10px);
}

.why-reference-panel-copy {
  max-width: 620px;
}

.why-reference-panel-copy h4 {
  color: #1f2732;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.82rem;
}

.why-reference-panel-copy p {
  color: #31363e;
  font-size: 16px;
  line-height: 1.45;
}

.why-reference-panel-image {
  width: 100%;
  aspect-ratio: 340 / 256;
  overflow: hidden;
  border-radius: 12px;
  background: #ddd;
}

.why-reference-panel-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* About Maqam cross navigation */
.about-nav-section {
  padding: 0 0 5.7rem;
}

.about-nav-section h2 {
  margin: 0 0 2rem;
  color: #1d2430;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.about-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.55rem;
}

.about-nav-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border-radius: var(--rect-radius);
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: none;
  transition: transform 0.24s ease, background-color 0.24s ease;
}

.about-nav-card:hover,
.about-nav-card:focus-visible {
  transform: translateY(-7px);
}

.about-nav-card:focus-visible {
  outline: 3px solid rgba(38, 132, 198, 0.35);
  outline-offset: 4px;
}

.about-nav-image {
  height: 210px;
  overflow: hidden;
  background: #dfe9f4;
}

.about-nav-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.about-nav-card:hover .about-nav-image img,
.about-nav-card:focus-visible .about-nav-image img {
  transform: scale(1.045);
}

.about-nav-body {
  flex: 1;
  padding: 1.1rem 1.2rem 1rem;
}

.about-nav-body h3 {
  margin: 0;
  color: #2a3038;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}

.about-nav-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid #d8dee8;
  padding: 0.92rem 1.2rem 1rem;
  color: #17202b;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}

.about-nav-arrow {
  color: #111;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 0.75;
  transition: transform 0.24s ease;
}

.about-nav-card:hover .about-nav-arrow,
.about-nav-card:focus-visible .about-nav-arrow {
  transform: translateX(4px);
}

/* Login / Sign up page */
body.login-page .inner-hero {
  display: none;
}

.auth-nav-wrap {
  min-height: 54px;
}

body.login-page main.auth-main {
  padding: 5.25rem 0 11rem;
}

.auth-shell {
  max-width: 1060px;
}

.auth-close {
  display: none;
}

.auth-intro {
  text-align: center;
  margin: 0.65rem auto 2.25rem;
  max-width: 760px;
}

.auth-intro h1 {
  font-size: clamp(32px, 3vw, 42px);
  line-height: 1.05;
  margin-bottom: 0.95rem;
  color: #2a2f36;
  font-weight: 600;
}

.auth-brand-script {
  display: inline-block;
  margin-left: 0.2ch;
  font-family: "Great Vibes", cursive;
  font-style: normal;
  font-weight: 400;
  font-size: 1.42em;
  letter-spacing: 0.01em;
  line-height: 1;
}

.auth-intro p {
  font-size: 20px;
  line-height: 1.35;
  color: #353a42;
}

.auth-card {
  background: #fff;
  border: 0;
  border-radius: 12px;
  padding: 1.6rem 1.45rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
}

.auth-login {
  padding: 0.4rem 2.1rem 0.55rem 1.1rem;
}

.auth-join {
  border-left: 1px solid #d4d8de;
  padding: 2.25rem 1.2rem 0.55rem 2.35rem;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.auth-login h2,
.auth-join h2 {
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 1.1rem;
  color: #1f242b;
  font-weight: 600;
}

.auth-join h2 {
  max-width: 12ch;
  line-height: 1.08;
  margin-bottom: 0.9rem;
  margin-inline: auto;
}

.auth-form {
  display: grid;
  gap: 0.78rem;
}

.auth-form-feedback {
  min-height: 1.25rem;
  color: #c72626;
  font-size: 0.9rem;
  line-height: 1.3;
  text-align: center;
}

.auth-field input {
  width: 100%;
  min-height: 54px;
  border: 1px solid #cfd7e2;
  border-radius: 12px;
  background: #fff;
  padding: 0.72rem 0.9rem;
  font-family: inherit;
  font-size: 1rem;
  color: #1d2128;
}

.auth-field input:focus {
  outline: 2px solid rgba(38, 132, 198, 0.4);
  outline-offset: 2px;
}

.auth-field input::placeholder {
  color: #2d323a;
}

.auth-help-link {
  justify-self: end;
  font-size: 0.96rem;
  color: #c72626;
  text-decoration: underline;
  text-underline-offset: 2px;
  line-height: 1.2;
}

.auth-check {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  margin: 0.32rem 0 0.18rem;
  font-size: 0.96rem;
  color: #21262d;
}

.auth-check input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--primary);
}

.auth-login-btn {
  width: 100%;
  min-height: 50px;
  border: none;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.auth-login-btn:hover,
.auth-login-btn:focus-visible {
  background: #1771b4;
}

.auth-join p {
  font-size: 1rem;
  line-height: 1.38;
  color: #30353d;
  max-width: 30ch;
  margin-bottom: 1.2rem;
  margin-inline: auto;
}

.auth-inline-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.auth-join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 320px);
  min-height: 46px;
  border: 1px solid #cfd7e2;
  border-radius: 12px;
  font-size: 1rem;
  color: #1f242b;
  font-weight: 600;
  background: #fff;
  margin-inline: auto;
}

.auth-join-btn:hover,
.auth-join-btn:focus-visible {
  background: #f4f6f9;
}

/* Partners page */
.partners-directory {
  padding: 3rem 0 5.2rem;
}

.partners-head {
  margin-bottom: 2.1rem;
}

.partners-head h2 {
  font-size: 20px;
  line-height: 1.2;
  margin: 0.85rem 0 0;
  color: #21262d;
  font-weight: 500;
  text-transform: none;
}

.partners-head p {
  font-size: 16px;
  line-height: 1.45;
  color: #31363e;
  max-width: 98ch;
}

.partners-panel {
  background: #fff;
  border: none;
  border-radius: 18px;
  padding: 1.35rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.partner-card {
  background: #fff;
  border: 1px solid #d2d7df;
  border-radius: 14px;
  min-height: 215px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1rem;
}

.partner-brand {
  min-height: 72px;
  border-radius: 9px;
  border: none;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.62rem;
}

.partner-logo {
  display: block;
  width: 100%;
  max-width: 148px;
  max-height: 58px;
  object-fit: contain;
  object-position: center;
}

.partner-copy h3 {
  font-size: 1.65rem;
  line-height: 1.08;
  margin-bottom: 0.5rem;
  color: #1f242b;
  font-weight: 500;
}

.partner-copy p {
  font-size: 16px;
  line-height: 1.42;
  color: #343941;
}

.partners-page .partners-hero-title {
  max-width: 30ch;
  line-height: 1.18;
}

.partners-page .partners-hero-title span + span {
  margin-top: 0.12em;
}

/* History page */
.history-page .inner-hero-title {
  max-width: 20ch;
  line-height: 1.18;
}

.history-page .inner-hero-title span + span {
  margin-top: 0.12em;
}

.history-page .inner-hero-image {
  object-position: center 26%;
}

.travel-updates-page .inner-hero-title {
  max-width: 20ch;
  line-height: 1.18;
}

.travel-updates-page .inner-hero-title span + span {
  margin-top: 0.12em;
}

.travel-updates-page .inner-hero-image {
  object-position: center 26%;
}

/* Other services page */
.other-services-page .inner-hero-title {
  max-width: 21ch;
  line-height: 1.18;
  letter-spacing: 0;
}

.other-services-page .inner-hero-title span + span {
  margin-top: 0.12em;
}

.other-services-page .inner-hero-image {
  object-position: center 52%;
}

.other-services-main {
  background: var(--bg);
}

.other-services-directory {
  padding: 3.5rem 0 6rem;
}

.other-services-intro {
  max-width: 100%;
  margin: 0 0 2.2rem;
}

.other-services-intro p {
  max-width: 100%;
  color: #31363e;
  font-size: 16px;
  line-height: 1.62;
}

.other-services-page .other-services-strip {
  margin-top: 0;
  box-shadow: 0 12px 28px rgba(19, 19, 19, 0.04);
}

/* Book now page */
.book-now-page {
  background: #eef2f6;
}

.book-now-main {
  min-height: calc(100svh - 118px);
  background: #eef2f6;
  display: grid;
  align-items: center;
}

.book-service-selector {
  padding: 1.7rem 0 2rem;
}

.book-service-heading {
  max-width: 720px;
  margin: 0 auto;
  color: #12161d;
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  line-height: 1.14;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
}

.book-title-mobile-break {
  display: none;
}

.book-services-grid {
  max-width: 840px;
  margin: 2.75rem auto 0;
  display: grid;
  grid-template-columns: 1.08fr 1fr 1fr;
  grid-auto-rows: 150px;
  gap: 0.85rem;
}

.book-service-card {
  --card-glow: rgba(38, 132, 198, 0.15);
  --card-glow-strong: rgba(38, 132, 198, 0.22);
  --glow-x: 82%;
  --glow-y: 88%;
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), var(--card-glow-strong) 0, var(--card-glow) 18%, rgba(255, 255, 255, 0) 58%),
    #fff;
  color: #12161d;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.32rem 1.45rem;
  text-align: left;
  transition: background 0.2s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.book-service-card:hover,
.book-service-card:focus-visible {
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(38, 132, 198, 0.28) 0, rgba(38, 132, 198, 0.18) 18%, rgba(255, 255, 255, 0) 60%),
    #fff;
  outline: none;
  transform: translateY(-3px);
}

.book-service-card:focus-visible {
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(38, 132, 198, 0.3) 0, rgba(38, 132, 198, 0.2) 20%, rgba(255, 255, 255, 0) 62%),
    #fff;
}

.book-service-icon-wrap {
  position: absolute;
  top: 1.22rem;
  left: 1.45rem;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.book-service-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(45%) sepia(82%) saturate(882%)
    hue-rotate(169deg) brightness(91%) contrast(88%);
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.book-service-card:hover .book-service-icon,
.book-service-card:focus-visible .book-service-icon {
  opacity: 1;
}

.book-service-name {
  position: relative;
  z-index: 1;
  max-width: 10ch;
  color: #12161d;
  font-size: 26px;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: 0;
}

.book-service-note {
  position: absolute;
  top: 0.72rem;
  right: 0.72rem;
  z-index: 2;
  min-width: 58px;
  border-radius: 999px;
  background: rgba(238, 242, 246, 0.95);
  color: #12161d;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  padding: 0.48rem 0.72rem;
}

.book-service-card--pilgrimage {
  grid-row: span 2;
  --glow-x: 44%;
  --glow-y: 92%;
}

.book-service-card--pilgrimage .book-service-icon-wrap {
  top: 50%;
  left: 50%;
  width: 112px;
  height: 142px;
  justify-content: center;
  transform: translate(-50%, -54%);
}

.book-service-card--pilgrimage .book-service-icon {
  width: 108px;
  height: 142px;
}

.book-service-card--pilgrimage .book-service-name {
  max-width: 9ch;
}

.book-service-card--wallet {
  --glow-x: 74%;
  --glow-y: 20%;
}

.book-service-card--visa {
  --glow-x: 86%;
  --glow-y: 88%;
}

.book-service-card--ticket {
  --glow-x: 28%;
  --glow-y: 82%;
}

.book-service-card--hotel {
  --glow-x: 82%;
  --glow-y: 86%;
}

.book-service-card--passport {
  grid-column: 1 / -1;
  min-height: 118px;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem;
  padding-left: 2.8rem;
  --glow-x: 78%;
  --glow-y: 82%;
}

.book-service-card--passport .book-service-icon-wrap {
  position: static;
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
}

.book-service-card--passport .book-service-icon {
  width: 54px;
  height: 54px;
}

.book-service-card--passport .book-service-name {
  max-width: 14ch;
}

@media (max-width: 768px) {
  .book-now-main {
    min-height: 0;
    display: block;
  }

  .book-service-selector {
    padding: 7.35rem 0 1.4rem;
  }

  .book-service-heading {
    max-width: 620px;
    font-size: 28px;
    line-height: 1.16;
  }

  .book-title-mobile-break {
    display: inline;
  }

  .book-services-grid {
    margin-top: 2.1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 116px;
    gap: 0.55rem;
  }

  .book-service-card {
    border-radius: 20px;
    padding: 0.88rem 0.95rem;
  }

  .book-service-icon-wrap {
    top: 0.55rem;
    left: 0.95rem;
    width: 44px;
    height: 44px;
  }

  .book-service-icon {
    width: 34px;
    height: 34px;
  }

  .book-service-name {
    font-size: 19px;
  }

  .book-service-note {
    top: 0.56rem;
    right: 0.56rem;
    min-width: 50px;
    font-size: 12px;
    padding: 0.38rem 0.58rem;
  }

  .book-service-card--pilgrimage {
    grid-row: span 2;
  }

  .book-service-card--pilgrimage .book-service-icon-wrap {
    width: 82px;
    height: 104px;
  }

  .book-service-card--pilgrimage .book-service-icon {
    width: 78px;
    height: 104px;
  }

  .book-service-card--passport {
    grid-column: 1 / -1;
    min-height: 102px;
    gap: 0.7rem;
    padding-left: 1.75rem;
  }

  .book-service-card--passport .book-service-icon-wrap {
    width: 50px;
    height: 50px;
  }

  .book-service-card--passport .book-service-icon {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 420px) {
  .book-service-selector {
    padding: 7.6rem 0 0.9rem;
  }

  .book-service-heading {
    font-size: 28px;
    line-height: 1.14;
  }

  .book-services-grid {
    grid-auto-rows: 108px;
    gap: 0.5rem;
  }

  .book-service-card {
    border-radius: 18px;
    padding: 0.8rem 0.85rem;
  }

  .book-service-icon-wrap {
    top: 0.4rem;
    left: 0.85rem;
  }

  .book-service-name {
    font-size: 18px;
  }

  .book-service-card--passport {
    min-height: 96px;
  }
}

.history-directory {
  padding: 3.5rem 0 6rem;
}

.history-head {
  max-width: 100%;
  margin: 0 auto 4.6rem;
}

.history-head p {
  font-size: 16px;
  line-height: 1.62;
  color: #31363e;
  max-width: 100%;
}

.history-story-list {
  counter-reset: history-step;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  display: grid;
  gap: 4.2rem;
  background: #fff;
  border-radius: 22px;
  padding: 3.4rem 3rem 3.9rem;
}

.history-story-card {
  counter-increment: history-step;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
  gap: clamp(3rem, 5vw, 5.2rem);
  align-items: center;
}

.history-story-card-reverse {
  grid-template-columns: minmax(360px, 500px) minmax(0, 1fr);
}

.history-story-card-reverse .history-story-copy {
  order: 2;
}

.history-story-card-reverse .history-story-media {
  order: 1;
  justify-self: start;
}

.history-story-copy {
  max-width: 66ch;
}

.history-story-copy h2 {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 30px;
  line-height: 1.1;
  margin: 0 0 1.35rem;
  color: #1f2732;
  font-weight: 500;
}

.history-story-copy h2::before {
  content: counter(history-step, decimal-leading-zero);
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  background: #2583c5;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.history-story-copy p,
.history-story-copy blockquote {
  font-size: 16px;
  line-height: 1.55;
  color: #1f2732;
}

.history-story-copy p + p,
.history-story-copy blockquote + p {
  margin-top: 0.86rem;
}

.history-story-copy blockquote {
  margin: 0.9rem 0;
  padding-left: 0.9rem;
  border-left: 3px solid #2684c6;
  font-weight: 600;
}

.history-story-media {
  width: min(100%, 500px);
  justify-self: end;
  min-height: 292px;
  aspect-ratio: 16 / 7.8;
  overflow: hidden;
  border-radius: 14px;
  background: #e6eef8;
}

.history-story-media img {
  width: 100%;
  height: 100%;
  min-height: 292px;
  display: block;
  object-fit: cover;
}

/* Travel updates page */
.travel-updates-page {
  background: var(--bg);
}

.travel-updates-main {
  background: var(--bg);
}

.travel-updates-page .footer {
  margin-top: 0;
}

.travel-updates-shell {
  padding: 3.45rem 0 5.6rem;
}

.travel-update-list {
  display: grid;
  gap: 2.8rem;
}

.travel-update-card {
  background: #fff;
  border: 0;
  border-radius: 14px;
  box-shadow: none;
  overflow: hidden;
}

.travel-update-strip {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0.5rem 1.35rem;
  background: #2684c6;
  border-bottom: 0;
}

.travel-update-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.44rem;
  color: #fff;
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 600;
}

.travel-update-badge::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: url("../icons/announce-icon.svg") center / contain no-repeat;
  border-radius: 0;
  box-shadow: none;
}

.travel-update-body {
  padding: 1.35rem 1.55rem 1.6rem;
}

.travel-update-body h2 {
  max-width: 19ch;
  margin: 0;
  color: #1f2732;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: 0;
}

.travel-update-meta {
  margin-top: 0.85rem;
  color: #6b717b;
  font-size: 0.82rem;
  line-height: 1.35;
  font-style: italic;
}

.travel-update-accent {
  width: 4.25rem;
  height: 2px;
  margin: 0.88rem 0 1.15rem;
  background: #ff3f3f;
}

.travel-update-body p:not(.travel-update-meta) {
  color: #1f2732;
  font-size: 15px;
  line-height: 1.62;
  max-width: none;
  text-wrap: pretty;
}

.travel-update-body p + p {
  margin-top: 0.74rem;
}

.travel-update-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 42px;
  margin-top: 1.15rem;
  padding: 0.72rem 1.15rem;
  border-radius: 8px;
  background: #2684c6;
  color: #fff;
  font-size: 0.92rem;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}

.travel-update-action:hover,
.travel-update-action:focus-visible {
  background: #1f72ad;
}

@media (max-width: 780px) {
  .travel-updates-shell {
    padding: 2.55rem 0 4.35rem;
  }

  .travel-update-list {
    gap: 1.9rem;
  }

  .travel-update-strip {
    min-height: 40px;
    padding: 0.48rem 1rem;
  }

  .travel-update-body {
    padding: 1.1rem 1rem 1.2rem;
  }

  .travel-update-body h2 {
    max-width: 100%;
    font-size: 1.55rem;
    line-height: 1.14;
  }

  .travel-update-body p:not(.travel-update-meta) {
    font-size: 15px;
    line-height: 1.58;
  }
}

@media (max-width: 420px) {
  .travel-updates-shell {
    padding: 2.15rem 0 3.8rem;
  }

  .travel-update-card {
    border-radius: 12px;
  }

  .travel-update-body h2 {
    font-size: 1.38rem;
  }

  .travel-update-meta {
    font-size: 0.78rem;
  }

  .travel-update-action {
    width: 100%;
    min-height: 44px;
  }

}

@media (max-width: 620px) {
  body.travel-updates-page .footer {
    margin-top: 0;
  }
}

/* Hotel booking page */
.hotel-page {
  background: var(--bg);
}

.hotel-page .inner-hero-title {
  max-width: 18ch;
  line-height: 1.18;
}

.hotel-page .inner-hero-title span + span {
  margin-top: 0.12em;
}

.hotel-page .inner-hero-image {
  object-position: center 48%;
}

.hotel-booking-main {
  background: var(--bg);
}

.hotel-booking-shell {
  padding: 3.65rem 0 6rem;
  color: #000;
}

.hotel-booking-shell :where(p, h2, h3, li, span) {
  color: #000;
}

.hotel-intro {
  max-width: 1120px;
  margin-bottom: 4.25rem;
}

.hotel-intro p {
  color: #000;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

.hotel-intro p + p {
  margin-top: 1.2rem;
}

.hotel-offer-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.hotel-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 50px;
  border-bottom: 1px solid #d5d9e1;
}

.hotel-tab {
  position: relative;
  min-height: 50px;
  border: 0;
  background: #fff;
  color: #000;
  font: inherit;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.hotel-tab.is-active {
  color: var(--primary);
}

.hotel-tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: var(--primary);
}

.hotel-tab:focus-visible {
  outline: 2px solid rgba(38, 132, 198, 0.34);
  outline-offset: -2px;
}

.hotel-tab-panel {
  padding: 2.35rem 1.7rem 2.1rem;
}

.hotel-panel-copy {
  max-width: none;
}

.hotel-panel-copy p {
  color: #000;
  font-size: 16px;
  line-height: 1.55;
}

.hotel-panel-copy p + p {
  margin-top: 1.25rem;
}

.hotel-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 2.1rem;
}

.hotel-process-title {
  margin-top: 2.55rem;
  color: #000;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 400;
}

.hotel-step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
  margin-top: 1.35rem;
}

.hotel-step-card {
  min-height: 170px;
  border: 1px solid #dde2e9;
  border-radius: 16px;
  background: #fff;
  padding: 1.45rem 1.35rem;
  display: grid;
  align-content: start;
  gap: 1.05rem;
}

.hotel-step-icon {
  width: 52px;
  height: 52px;
  display: block;
  object-fit: contain;
}

.hotel-step-card h3 {
  max-width: 13ch;
  color: #000;
  font-size: 20px;
  line-height: 1.28;
  font-weight: 400;
}

.hotel-search-btn,
.hotel-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 0 1.9rem;
  font-size: 15px;
  line-height: 1;
  font-weight: 400;
}

.hotel-search-btn {
  background: var(--primary);
  color: #fff;
}

.hotel-booking-shell .hotel-search-btn {
  color: #fff;
}

.hotel-search-btn:hover,
.hotel-search-btn:focus-visible {
  background: var(--primary-dark);
}

.hotel-secondary-btn {
  border: 1px solid #cfd5df;
  background: #fff;
  color: #000;
}

.hotel-secondary-btn:hover,
.hotel-secondary-btn:focus-visible {
  border-color: var(--primary);
  color: var(--primary);
}

@media (max-width: 920px) {
  .hotel-booking-shell {
    padding: 3rem 0 5rem;
  }

  .hotel-intro {
    margin-bottom: 2.6rem;
  }

  .hotel-step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .hotel-step-card {
    min-height: 148px;
  }
}

@media (max-width: 620px) {
  .hotel-page .inner-hero-image {
    object-position: 44% center;
  }

  .hotel-page .inner-hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2rem;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hotel-booking-shell {
    padding: 2.15rem 0 3.7rem;
  }

  .hotel-intro {
    margin-bottom: 2rem;
  }

  .hotel-intro p {
    font-size: 18px;
    line-height: 1.54;
  }

  .hotel-offer-card {
    border-radius: 14px;
  }

  .hotel-tab {
    min-height: 50px;
    padding: 0 0.65rem;
    font-size: 14px;
  }

  .hotel-tab-panel {
    padding: 1.25rem 1rem 1.35rem;
  }

  .hotel-panel-copy p {
    font-size: 16px;
    line-height: 1.55;
  }

  .hotel-panel-copy p + p {
    margin-top: 1rem;
  }

  .hotel-cta-row {
    margin-top: 1.45rem;
    gap: 0.65rem;
  }

  .hotel-process-title {
    margin-top: 2rem;
    font-size: 22px;
  }

  .hotel-step-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-top: 1rem;
  }

  .hotel-step-card {
    min-height: 118px;
    border-radius: 14px;
    padding: 1.05rem 1rem;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-content: center;
    align-items: center;
    gap: 0.95rem;
  }

  .hotel-step-icon {
    width: 50px;
    height: 50px;
  }

  .hotel-step-card h3 {
    max-width: none;
    font-size: 20px;
    line-height: 1.25;
  }

  .hotel-search-btn,
  .hotel-secondary-btn {
    min-height: 48px;
    padding-inline: 1.45rem;
    font-size: 14px;
  }

}

/* Air ticketing page */
.air-ticketing-page {
  background: var(--bg);
}

.air-ticketing-page .inner-hero-title {
  max-width: 16ch;
  line-height: 1.16;
}

.air-ticketing-page .inner-hero-title span + span {
  margin-top: 0.12em;
}

.air-ticketing-page .inner-hero-image {
  object-position: center center;
}

.air-ticketing-main {
  background: var(--bg);
}

.air-ticketing-shell {
  position: relative;
  z-index: 5;
  margin-top: -4.25rem;
  padding: 0 0 5.8rem;
  color: #000;
}

.air-ticketing-shell :where(p, h2, h3, span, label) {
  color: #000;
}

.flight-search-card {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(19, 19, 19, 0.12);
}

.flight-trip-tabs {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.2rem;
  max-width: calc(100% - 2.7rem);
  min-height: 42px;
  margin: 1rem 1.35rem 0.45rem;
  padding: 0.22rem;
  border: 1px solid #edf1f4;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(17, 31, 42, 0.1);
}

.flight-trip-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #68717b;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 0 1rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.flight-trip-tab span {
  color: inherit;
}

.flight-trip-tab.is-active {
  background: var(--primary);
  color: #fff;
}

.flight-trip-tab:focus-visible {
  outline: 2px solid rgba(38, 132, 198, 0.36);
  outline-offset: 2px;
}

.flight-search-panel {
  display: grid;
  gap: 1.15rem;
  padding: 0.75rem 1.35rem 1.45rem;
}

.flight-search-panel[hidden] {
  display: none;
}

.flight-route-grid {
  display: grid;
  grid-template-columns:
    minmax(130px, 1.08fr) 42px minmax(130px, 1.08fr)
    repeat(4, minmax(116px, 0.9fr));
  align-items: stretch;
  gap: 0.85rem;
  padding: 0.2rem 0;
}

.flight-route-grid--one-way {
  grid-template-columns:
    minmax(140px, 1.18fr) 42px minmax(140px, 1.18fr)
    repeat(3, minmax(124px, 0.9fr));
}

.flight-route-pair {
  display: contents;
}

.flight-field {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
}

.flight-field span {
  font-size: 12px;
  line-height: 1.1;
  color: #374151;
}

.flight-field input,
.flight-field select,
.flight-field textarea {
  width: 100%;
  border: 1px solid #d0d7e2;
  border-radius: 7px;
  background: #fff;
  color: #1d2430;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.25;
  -webkit-appearance: none;
  appearance: none;
}

.flight-field input,
.flight-field select {
  min-height: 46px;
  padding: 0.62rem 0.78rem;
}

.flight-field select {
  padding-right: 2rem;
  background-image:
    linear-gradient(45deg, transparent 50%, #79808a 50%),
    linear-gradient(135deg, #79808a 50%, transparent 50%);
  background-position:
    calc(100% - 17px) 52%,
    calc(100% - 12px) 52%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
}

.flight-field textarea {
  min-height: 86px;
  resize: vertical;
  padding: 0.72rem 0.78rem;
}

.flight-field input::placeholder,
.flight-field textarea::placeholder {
  color: #727b86;
}

.flight-field input:focus,
.flight-field select:focus,
.flight-field textarea:focus {
  outline: 2px solid rgba(38, 132, 198, 0.34);
  outline-offset: 1px;
  border-color: var(--primary);
}

.flight-date-control {
  position: relative;
  min-height: 46px;
  display: block;
  cursor: pointer;
}

.flight-date-display {
  min-height: 46px;
  width: 100%;
  display: flex;
  align-items: center;
  border: 1px solid #d0d7e2;
  border-radius: 7px;
  background: #fff;
  color: #727b86;
  font-size: 15px;
  line-height: 1.25;
  padding: 0.62rem 0.78rem;
  cursor: pointer;
}

.flight-field .flight-date-display {
  color: #727b86;
  font-size: 15px;
  line-height: 1.25;
}

.flight-date-field.has-value .flight-date-display {
  color: #1d2430;
}

.flight-date-control:focus-within .flight-date-display {
  outline: 2px solid rgba(38, 132, 198, 0.34);
  outline-offset: 1px;
  border-color: var(--primary);
}

.flight-date-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 46px;
  opacity: 0;
  pointer-events: none;
  color: transparent;
}

.flight-date-range-field {
  position: relative;
  display: grid;
  grid-column: span 2;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  min-width: 0;
}

.flight-date-range-field .flight-date-field {
  gap: 0.25rem;
  min-width: 0;
  cursor: pointer;
}

.flight-date-range-field .flight-date-control {
  min-height: 46px;
  border: 1px solid #d0d7e2;
  background: #fff;
}

.flight-date-range-field .flight-date-field:first-child .flight-date-control {
  border-right: 0;
  border-radius: 7px 0 0 7px;
}

.flight-date-range-field .flight-date-field:last-child .flight-date-control {
  border-left: 0;
  border-radius: 0 7px 7px 0;
}

.flight-date-range-field .flight-date-display {
  min-height: 44px;
  border: 0;
  border-radius: 0;
  padding: 0.62rem 0.78rem;
  background: transparent;
}

.flight-date-range-field .flight-date-control:focus-within .flight-date-display {
  outline: none;
}

.flight-date-range-field .flight-date-control:focus-within {
  outline: none;
}

.flight-date-range-field.is-active .flight-date-control {
  border-color: var(--primary);
}

.flight-date-range-field.is-active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 46px;
  border-radius: 7px;
  outline: 2px solid rgba(38, 132, 198, 0.34);
  outline-offset: 1px;
  pointer-events: none;
}

.flight-airport-dropdown {
  position: fixed;
  z-index: 2600;
  width: min(430px, calc(100vw - 1rem));
  max-height: 340px;
  overflow-y: auto;
  border: 1px solid #e0e4ea;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(17, 31, 42, 0.16);
  scrollbar-color: #9a9a9a #f3f3f3;
  scrollbar-width: thin;
}

.flight-airport-dropdown[hidden] {
  display: none;
}

.flight-airport-option {
  width: 100%;
  min-height: 58px;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) 46px;
  gap: 0.72rem;
  align-items: center;
  border: 0;
  border-bottom: 1px solid #edf1f4;
  background: #fff;
  color: #111827;
  font-family: inherit;
  text-align: left;
  padding: 0.54rem 0.75rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.flight-airport-option:hover,
.flight-airport-option.is-highlighted,
.flight-airport-option:focus-visible {
  background: #f4f8fc;
  outline: none;
}

.flight-airport-icon {
  width: 22px;
  height: 20px;
  display: inline-block;
  flex: 0 0 22px;
  background: url("../icons/package-icons/flights.svg") center / contain no-repeat;
}

.flight-airport-copy {
  min-width: 0;
}

.flight-airport-city {
  display: block;
  overflow: hidden;
  color: #050b13;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.22;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flight-airport-name {
  display: block;
  overflow: hidden;
  margin-top: 0.15rem;
  color: #304a58;
  font-size: 13px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flight-airport-code {
  justify-self: end;
  color: #0d1720;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.flight-airport-empty {
  padding: 0.9rem 1rem;
  color: #65717e;
  font-size: 14px;
}

.flight-calendar-popover {
  position: fixed;
  z-index: 2500;
  width: min(720px, calc(100vw - 1.5rem));
  border: 1px solid #e0e4ea;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 20px 44px rgba(17, 31, 42, 0.18);
  padding: 1.2rem 1.35rem 1.3rem;
}

.flight-calendar-popover[hidden] {
  display: none;
}

.flight-calendar-months {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.7rem;
}

.flight-calendar-month-title {
  color: #1f2732;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 1rem;
}

.flight-calendar-weekdays,
.flight-calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.flight-calendar-weekday {
  color: #2d333b;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  padding-bottom: 0.85rem;
}

.flight-calendar-days {
  border-top: 1px solid #d8dde5;
  padding-top: 0.45rem;
  row-gap: 0.2rem;
}

.flight-calendar-day,
.flight-calendar-empty {
  min-height: 40px;
}

.flight-calendar-day {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #1d2430;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.flight-calendar-day:hover,
.flight-calendar-day:focus-visible {
  background: #edf2f7;
  outline: none;
}

.flight-calendar-day.is-in-range {
  background: #f0f1f8;
  color: #071121;
}

.flight-calendar-day.is-selected {
  background: #4439b8;
  color: #fff;
}

.flight-calendar-day.is-range-start,
.flight-calendar-day.is-range-end {
  background: #4439b8;
  color: #fff;
}

.flight-calendar-day.is-today:not(.is-selected) {
  box-shadow: inset 0 0 0 1px var(--primary);
}

.flight-calendar-day.is-disabled {
  color: #a8b0bc;
  background: transparent;
  cursor: not-allowed;
  font-weight: 400;
}

.flight-calendar-nav {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 48px;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #7b8490;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.flight-calendar-nav:hover,
.flight-calendar-nav:focus-visible {
  color: #1f2732;
  outline: none;
}

.flight-calendar-nav:disabled {
  color: #c3cad3;
  cursor: not-allowed;
}

.flight-calendar-nav--prev {
  left: -0.2rem;
}

.flight-calendar-nav--next {
  right: -0.2rem;
}

.flight-swap-btn {
  width: 42px;
  min-height: 46px;
  align-self: end;
  border: 1px solid #d0d7e2;
  border-radius: 7px;
  background: #f7faff;
  color: #1f2732;
  font-family: inherit;
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
}

.flight-swap-btn:hover,
.flight-swap-btn:focus-visible {
  border-color: var(--primary);
  color: var(--primary);
  outline: none;
}

.flight-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: start;
}

.flight-contact-grid--multi {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.flight-phone-control {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 0.45rem;
}

.flight-country-select-shell {
  position: relative;
  display: block;
  min-width: 0;
}

.flight-field .flight-country-code-select {
  color: transparent;
}

.flight-field .flight-country-code-select option {
  color: #1d2430;
}

.flight-field .flight-country-code-display {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0.78rem;
  max-width: calc(100% - 2.2rem);
  overflow: hidden;
  color: #1d2430;
  font-size: 15px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
  transform: translateY(-50%);
  pointer-events: none;
}

.flight-action-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  min-height: 54px;
  padding-top: 0.15rem;
}

.flight-request-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(38, 132, 198, 0.2);
}

.flight-request-btn:hover,
.flight-request-btn:focus-visible {
  background: #1771b4;
  outline: none;
}

.flight-form-feedback {
  color: #1d5d90;
  font-size: 0.9rem;
  line-height: 1.35;
}

.flight-segment-grid {
  display: grid;
  grid-template-columns: 78px repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  align-items: end;
  padding: 0.2rem 0;
}

.flight-segment-label {
  min-height: 46px;
  display: flex;
  align-items: center;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.15;
}

.air-ticketing-intro {
  max-width: 1040px;
  margin-top: 3.2rem;
}

.air-ticketing-intro p {
  max-width: 90ch;
  margin-top: 0.8rem;
  color: #31363e;
  font-size: 16px;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .flight-route-grid,
  .flight-route-grid--one-way {
    grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr);
  }

  .flight-route-grid > .flight-field,
  .flight-route-grid--one-way > .flight-field,
  .flight-route-grid .flight-field:nth-of-type(n + 3),
  .flight-route-grid--one-way .flight-field:nth-of-type(n + 3) {
    grid-column: 1 / -1;
  }

  .flight-date-range-field {
    grid-column: 1 / -1;
  }

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

}

@media (max-width: 780px) {
  .air-ticketing-shell {
    margin-top: -3.2rem;
    padding-bottom: 4.6rem;
  }

  .flight-search-card {
    border-radius: 14px;
  }

  .flight-trip-tabs {
    display: flex;
    width: calc(100% - 1.56rem);
    max-width: none;
    margin: 0.7rem 0.78rem 0.35rem;
    gap: 0.18rem;
    padding: 0.18rem;
  }

  .flight-trip-tab {
    flex: 1 1 0;
    justify-content: center;
    min-width: 0;
    min-height: 36px;
    font-size: 14px;
    padding-inline: 0.4rem;
  }

  .flight-trip-tab.is-active {
    background: var(--primary);
    color: #fff;
  }

  .flight-search-panel {
    padding: 0.8rem 0.78rem 1.15rem;
  }

  .flight-route-grid,
  .flight-route-grid--one-way,
  .flight-contact-grid,
  .flight-contact-grid--multi,
  .flight-segment-grid {
    grid-template-columns: 1fr;
  }

  .flight-route-pair {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) 40px;
    grid-template-rows: minmax(52px, auto) minmax(52px, auto);
    overflow: hidden;
    border: 1px solid #d0d7e2;
    border-radius: 7px;
    background: #fff;
  }

  .flight-route-pair .flight-field {
    grid-column: 1 / -1;
    min-width: 0;
    gap: 0.15rem;
    padding: 0.48rem 3.1rem 0.44rem 0.78rem;
  }

  .flight-route-pair .flight-field:first-of-type {
    grid-row: 1;
    border-bottom: 1px solid #e1e6ee;
  }

  .flight-route-pair .flight-field:nth-of-type(2) {
    grid-row: 2;
  }

  .flight-route-pair .flight-field input {
    min-height: 20px;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
  }

  .flight-route-pair .flight-field input::placeholder {
    color: transparent;
  }

  .flight-swap-btn {
    grid-column: 2;
    grid-row: 1 / 3;
    width: 32px;
    min-height: 32px;
    justify-self: center;
    align-self: center;
    z-index: 2;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #304a58;
    transform: rotate(90deg);
  }

  .flight-segment-label {
    min-height: 0;
    padding-top: 0.25rem;
  }

  .flight-action-row {
    justify-content: stretch;
  }

  .flight-request-btn {
    width: 100%;
    min-width: 0;
  }

  .flight-form-feedback {
    width: 100%;
    text-align: center;
  }

  .air-ticketing-intro {
    margin-top: 2.4rem;
  }

}

@media (max-width: 620px) {
  .air-ticketing-page .inner-hero-image {
    object-position: center center;
  }

  .air-ticketing-page .inner-hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6.25rem;
    padding-top: 0;
    padding-bottom: 0;
  }

  .air-ticketing-shell {
    width: min(100% - 1.35rem, var(--max));
    margin-top: -4.95rem;
    padding-bottom: 3.8rem;
  }

  .flight-trip-tab {
    flex-basis: 0;
    justify-content: center;
    padding-inline: 0.25rem;
    font-size: 13px;
  }

  .flight-field input,
  .flight-field select,
  .flight-date-display,
  .flight-date-input {
    min-height: 48px;
  }

  .flight-phone-control {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .flight-calendar-popover {
    width: min(100vw - 1rem, 360px);
    padding: 1rem 0.95rem 1.05rem;
  }

  .flight-calendar-months {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .flight-calendar-month + .flight-calendar-month {
    display: none;
  }

  .flight-calendar-nav {
    top: 49%;
    width: 30px;
    font-size: 34px;
  }

  .flight-calendar-nav--prev {
    left: -0.05rem;
  }

  .flight-calendar-nav--next {
    right: -0.05rem;
  }
}

/* Our Team page */
.team-directory {
  padding: 3rem 0 5.2rem;
}

.team-head {
  margin-bottom: 2.1rem;
}

.team-head h2 {
  font-size: 20px;
  line-height: 1.2;
  margin: 0.85rem 0 0;
  color: #21262d;
  font-weight: 500;
  text-transform: none;
}

.team-head p {
  font-size: 16px;
  line-height: 1.45;
  color: #31363e;
  max-width: 90ch;
}

.team-panel {
  background: #fff;
  border: none;
  border-radius: 18px;
  padding: 1.35rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.team-card {
  border: 1px solid #d2d7df;
  border-radius: 14px;
  background: #fff;
  min-height: 190px;
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.team-card:hover,
.team-card:focus-within {
  transform: translateY(-6px);
  border-color: #b7c9dd;
}

.team-avatar {
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: #e7f2fb;
  overflow: hidden;
  border-right: 1px solid #e4e9f1;
  flex-shrink: 0;
}

.team-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.team-copy {
  padding: 0.95rem 1rem 0.95rem 1.05rem;
  display: grid;
  align-content: center;
}

.team-copy h3 {
  font-size: 1.08rem;
  line-height: 1.2;
  color: #1f242b;
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.team-role {
  font-size: 16px;
  line-height: 1.3;
  color: #3f4650;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.team-role-note {
  font-size: 0.92rem;
  line-height: 1.42;
  color: #4b525c;
  margin-top: 0.42rem;
  padding-top: 0.5rem;
  border-top: 1px solid #dce3ec;
}

.team-cta {
  margin-top: 1.2rem;
  border: 1px solid #d2d7df;
  border-radius: 14px;
  background: #fff;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.team-cta p {
  font-size: 16px;
  line-height: 1.4;
  color: #2f343c;
  max-width: 62ch;
}

.team-cta-actions {
  display: inline-flex;
  gap: 0.65rem;
  flex-shrink: 0;
}

.team-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1.1rem;
  border: 1px solid #1f242b;
  border-radius: 999px;
  font-size: 0.94rem;
  line-height: 1;
  font-weight: 600;
  color: #1f242b;
  background: #fff;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.team-cta-link:hover,
.team-cta-link:focus-visible {
  background: #eef3f9;
}

.team-cta-link.primary {
  background: #2684c6;
  border-color: #2684c6;
  color: #fff;
}

.team-cta-link.primary:hover,
.team-cta-link.primary:focus-visible {
  background: #1771b4;
  border-color: #1771b4;
}

/* Help page */
.help-page .inner-hero-image {
  object-position: center 31%;
}

.help-page .inner-hero-title {
  max-width: 18ch;
}

.help-main {
  background: #eef1f8;
}

.help-center {
  padding: 3rem 0 5.4rem;
}

.help-welcome {
  background: #fff;
  border-radius: 18px;
  padding: 1.55rem 1.7rem 1.45rem;
  margin-bottom: 3.05rem;
  color: #111722;
}

.help-welcome h2 {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #121821;
  font-weight: 600;
}

.help-welcome p {
  font-size: 16px;
  line-height: 1.55;
  max-width: 98ch;
  color: #111722;
}

.help-welcome p + p {
  margin-top: 1rem;
}

.help-actions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.help-action-card {
  min-height: 150px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: #fff;
  padding: 1.1rem 1.05rem 1rem;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0.7rem;
  cursor: pointer;
  transition: border-color 0.24s ease;
}

a.help-action-card {
  color: inherit;
  text-decoration: none;
}

.help-action-card:hover,
.help-action-card:focus-within {
  border-color: #111722;
}

.help-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  color: #2684c6;
}

.help-action-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.help-action-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.help-action-copy h3 {
  grid-column: 1 / -1;
  font-size: 18px;
  line-height: 1.22;
  margin-bottom: 0.48rem;
  color: #101722;
  font-weight: 600;
}

.help-action-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  column-gap: 0.95rem;
}

.help-action-copy p {
  font-size: 14px;
  line-height: 1.45;
  color: #263244;
}

.help-action-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  color: #111;
  padding: 0.12rem;
  transition: background-color 0.24s ease, color 0.24s ease,
    box-shadow 0.24s ease;
}

.help-action-card:hover .help-action-arrow,
.help-action-card:focus-within .help-action-arrow {
  background: #4d50bf;
  color: #fff;
  box-shadow: 0 0 0 3px rgba(77, 80, 191, 0.2);
}

/* Cancellation & Refund page */
.refund-page .inner-hero-image {
  object-position: center 31%;
}

.refund-page .inner-hero-title {
  max-width: 20ch;
}

.refund-main {
  background: #eef1f8;
}

.refund-support {
  padding: 3rem 0 1.8rem;
}

.refund-support-head {
  margin-bottom: 1.2rem;
}

.refund-kicker {
  color: #6d0030;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.42rem;
}

.refund-support-head h2,
.refund-policy-heading h2 {
  color: #121821;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 600;
}

.refund-action-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.refund-action-card {
  min-height: 160px;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 1.15rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr;
  gap: 0.75rem 0.8rem;
  color: #101722;
  text-decoration: none;
  transition: border-color 0.24s ease;
}

.refund-action-card:hover,
.refund-action-card:focus-visible {
  border-color: #111722;
  outline: none;
}

.refund-action-icon {
  grid-column: 1 / -1;
  display: inline-flex;
  width: 2.55rem;
  height: 2.55rem;
  color: #6d0030;
}

.refund-action-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.refund-action-title {
  align-self: end;
  font-size: 18px;
  line-height: 1.22;
  font-weight: 600;
}

.refund-action-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  align-self: end;
  justify-self: end;
  font-size: 1.45rem;
  line-height: 1;
  color: #111722;
  padding: 0.12rem;
  transition: background-color 0.24s ease, color 0.24s ease,
    box-shadow 0.24s ease;
}

.refund-action-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.refund-action-card:hover .refund-action-arrow,
.refund-action-card:focus-visible .refund-action-arrow {
  background: #4d50bf;
  color: #fff;
  box-shadow: 0 0 0 3px rgba(77, 80, 191, 0.2);
}

.refund-opening {
  margin-top: 1.35rem;
  padding: 0;
}

.refund-opening p {
  max-width: 82ch;
  color: #17202b;
  font-size: 16px;
  line-height: 1.58;
  text-align: left;
}

.refund-policy-section {
  padding: 0 0 5rem;
}

.refund-policy-panel {
  background: #fff;
  border-radius: 14px;
  border: 0;
  padding: 1.55rem;
  min-width: 0;
}

.refund-policy-heading p:not(.refund-kicker) {
  max-width: 98ch;
  color: #31363e;
  font-size: 16px;
  line-height: 1.55;
  margin-top: 0.85rem;
}

.refund-policy-list {
  margin: 0;
  padding-left: 1.15rem;
}

.refund-policy-list li + li {
  margin-top: 0.52rem;
}

.refund-policy-content {
  display: grid;
  gap: 0;
  margin-top: 1.35rem;
  border-top: 1px solid #dfe4ec;
  min-width: 0;
}

.refund-policy-card {
  padding: 1.25rem 0;
  border-bottom: 1px solid #e2e7ef;
}

.refund-policy-card:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.refund-policy-card h3 {
  color: #121821;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.refund-policy-card p,
.refund-policy-list li {
  color: #303743;
  font-size: 15px;
  line-height: 1.58;
}

.refund-policy-card p + p,
.refund-policy-card p + .refund-policy-list,
.refund-policy-list + p {
  margin-top: 0.75rem;
}

.refund-policy-card a {
  color: #116fae;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.refund-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid #d8dee8;
  border-radius: 10px;
}

.refund-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: #fff;
  table-layout: fixed;
}

.refund-table tr:nth-child(odd) td {
  background: #f4f8fc;
}

.refund-table th,
.refund-table td {
  width: 50%;
  padding: 0.9rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #e2e7ef;
  font-size: 15px;
  line-height: 1.45;
}

.refund-table th {
  background: #2684c6;
  color: #fff;
  font-weight: 700;
}

.refund-table td {
  color: #303743;
}

.refund-table tr:last-child td {
  border-bottom: 0;
}

.refund-table-note {
  margin-top: 0.78rem;
  color: #6d0030;
  font-weight: 600;
}

/* Milestones page */
.milestones-page .inner-hero-title {
  max-width: 20ch;
}

.milestones-directory {
  padding: 3rem 0 5.2rem;
}

.milestones-opening {
  margin-bottom: 1.7rem;
  max-width: 98ch;
}

.milestones-opening p {
  font-size: 16px;
  line-height: 1.56;
  color: #2f3744;
}

.milestones-opening p + p {
  margin-top: 0.95rem;
}

.milestones-page .milestone-carousel-shell {
  position: relative;
  margin-top: 2.7rem;
  padding: 3.4rem 4rem 0;
  border-top: 1px solid #d9dde5;
}

.milestone-news-grid {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  overflow: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.milestone-news-card {
  flex: 0 0 calc((100% - 2rem) / 3);
  scroll-snap-align: start;
  min-width: 0;
}

.milestone-news-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 0.9rem;
}

.milestone-news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.milestone-news-meta {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.34rem;
  margin-bottom: 0.6rem;
  font-size: 14px;
  line-height: 1.2;
  color: #7a8391;
}

.milestone-news-meta .meta-clock {
  font-size: 0.95em;
}

.milestone-news-meta .meta-sep {
  color: #9aa3b0;
}

.milestone-news-meta .meta-cat {
  color: #7c1851;
  font-weight: 500;
}

.milestone-news-title {
  font-size: 20px;
  line-height: 1.22;
  font-weight: 500;
  color: #63103e;
  margin-bottom: 0.62rem;
}

.milestone-news-excerpt {
  font-size: 16px;
  line-height: 1.62;
  color: #1f2732;
}

.milestone-carousel-nav {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  width: 34px;
  height: 34px;
  color: #b4bac3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, color 0.2s ease;
}

.milestone-carousel-nav::before {
  content: "";
  width: 14px;
  height: 14px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
  display: block;
}

.milestone-carousel-prev {
  left: 0.55rem;
}

.milestone-carousel-prev::before {
  transform: rotate(-135deg);
}

.milestone-carousel-next {
  right: 0.55rem;
}

.milestone-carousel-next::before {
  transform: rotate(45deg);
}

.milestone-carousel-nav:hover,
.milestone-carousel-nav:focus-visible {
  color: #7f8792;
  transform: translateY(-50%) scale(1.06);
}

.milestone-carousel-nav:disabled {
  opacity: 0.45;
  pointer-events: none;
}

.milestone-carousel-dots {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.68rem;
}

.milestone-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: none;
  background: #c8cdd5;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.milestone-dot.is-active {
  background: #7c1851;
  transform: scale(1.08);
}

.milestones-view-all-wrap {
  margin-top: 1.65rem;
  display: flex;
  justify-content: center;
}

.milestones-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 195px;
  height: 50px;
  border-radius: 999px;
  border: 1px solid #1f242b;
  background: #fff;
  color: #1f242b;
  font-size: 16px;
  font-weight: 500;
}

.milestones-view-all:hover,
.milestones-view-all:focus-visible {
  background: #eef3f9;
}

/* All milestones list page */
.milestones-archive-page .inner-hero-title {
  max-width: 18ch;
}

.milestones-archive {
  padding: 3rem 0 5.2rem;
}

.milestone-month-title {
  font-size: clamp(2.15rem, 3.3vw, 2.75rem);
  line-height: 1.08;
  font-weight: 500;
  color: #111825;
  margin: 0 0 1.7rem;
}

.milestone-list {
  display: grid;
  gap: 3rem;
}

.milestone-year-separator {
  margin: 0 0 0.95rem;
  padding-top: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: clamp(1.75rem, 2.6vw, 2.15rem);
  line-height: 1.05;
  font-weight: 500;
  color: #111825;
}

.milestone-year-separator::after {
  content: "YEAR";
  font-size: 0.5em;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #6a7486;
}

.milestone-year-separator:not(:first-child) {
  margin-top: 1.55rem;
  padding-top: 2.35rem;
  border-top: 1px solid #d9dde5;
}

.milestone-year-separator + .milestone-list-item {
  border-top: 0;
}

.milestone-list-item {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: start;
  gap: 2rem;
}

.milestone-list-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
}

.milestone-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.milestone-list-copy .milestone-news-meta {
  margin-bottom: 0.55rem;
}

.milestone-list-title {
  font-size: 20px;
  line-height: 1.16;
  font-weight: 500;
  color: #63103e;
  margin-bottom: 0.6rem;
}

.milestone-list-excerpt {
  font-size: 16px;
  line-height: 1.58;
  color: #1d2430;
}

/* Main sections */
.services-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #fff;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 0.7rem;
}

.services-section .section-title {
  text-align: left;
}

.services-section .section-title h2 {
  font-size: 32px;
  line-height: 1.05;
  font-weight: 400;
  color: #21242a;
  margin-bottom: 0.62rem;
  text-transform: none;
}

.service-box {
  position: relative;
  min-height: 154px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.68rem;
  text-align: center;
  padding: 1rem 0.8rem 0.95rem;
  background: #fff;
}

.service-box + .service-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24%;
  bottom: 24%;
  width: 1px;
  background: #d8dde5;
}

.service-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  opacity: 0.42;
  filter: grayscale(1) brightness(0.68);
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.service-link {
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.service-link:visited,
.service-link:active {
  color: inherit;
}

.service-link:hover,
.service-link:focus-visible {
  background: #fff;
  box-shadow: inset 0 -3px 0 var(--primary);
}

.service-link:hover .service-icon,
.service-link:focus-visible .service-icon {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(45%) sepia(82%) saturate(882%)
    hue-rotate(169deg) brightness(91%) contrast(88%);
}

.service-box h3 {
  max-width: 9.5ch;
  font-size: 0.96rem;
  line-height: 1.02;
  font-weight: 600;
}

.why-card {
  margin-top: 2.05rem;
  background: transparent;
  color: var(--ink);
  border-radius: 0;
  padding: clamp(2.35rem, 4vw, 3.25rem) 0;
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.78fr);
  grid-template-rows: auto auto;
  gap: 1.35rem clamp(2rem, 4vw, 3.2rem);
  align-items: center;
  overflow: hidden;
}

.why-copy {
  align-self: center;
}

.why-copy h2 {
  font-size: 32px;
  line-height: 1.05;
  font-style: normal;
  font-variation-settings: normal;
  font-weight: 400;
}

.why-copy h2 span {
  color: var(--primary);
}

.why-copy p {
  margin-top: 0.78rem;
  font-size: 16px;
  line-height: 1.42;
  max-width: 34ch;
  font-weight: 400;
  color: #21242a;
}

.why-card-rail {
  grid-column: 2;
  min-width: 0;
  display: flex;
  gap: 1.45rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.why-card-rail::-webkit-scrollbar {
  display: none;
}

.why-story-card {
  position: relative;
  isolation: isolate;
  flex: 0 0 calc((100% - 1.45rem) / 2);
  min-height: 330px;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  color: #fff;
  scroll-snap-align: start;
  outline-offset: 4px;
}

.why-story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(4, 11, 20, 0.04) 0%,
    rgba(4, 11, 20, 0.22) 46%,
    rgba(4, 11, 20, 0.78) 100%
  );
}

.why-story-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.38s ease;
}

.why-story-card:hover .why-story-image,
.why-story-card:focus-visible .why-story-image {
  transform: scale(1.055);
}

.why-story-content {
  position: absolute;
  left: 1.05rem;
  right: 1.05rem;
  bottom: 1rem;
  z-index: 2;
  display: block;
}

.why-story-content strong {
  display: block;
  max-width: 17ch;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.12;
  font-weight: 700;
}

.why-story-content span {
  position: relative;
  display: inline-block;
  margin-top: 0.48rem;
  padding-bottom: 0.28rem;
  font-size: 15px;
  font-weight: 650;
}

.why-story-content span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 1px;
  background: #f4d39a;
}

.why-card-controls {
  grid-column: 2;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.why-card-nav {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(38, 132, 198, 0.78);
  background: transparent;
  color: var(--primary);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.why-card-nav span {
  font-size: 28px;
  line-height: 1;
  transform: translateY(-1px);
}

.why-card-nav:hover,
.why-card-nav:focus-visible {
  background: var(--primary);
  color: #fff;
}

.why-card-nav:disabled {
  opacity: 0.45;
  cursor: default;
}

.why-card-nav:disabled:hover,
.why-card-nav:disabled:focus-visible {
  background: transparent;
  color: var(--primary);
}

.ghost-btn {
  border: 2px solid #fff;
  border-radius: 999px;
  width: 151px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

.packages {
  margin-top: 3rem;
}

.packages .section-title h2 {
  font-size: 36px;
  margin-bottom: 0.18rem;
  text-transform: none;
  line-height: 1.02;
  font-style: normal;
  font-variation-settings: normal;
  font-weight: 600;
}

.packages .section-title p {
  color: #21242a;
  font-size: 16px;
  max-width: none;
}

#packages .section-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
}

#packages .section-title-copy {
  min-width: 0;
}

#packages .section-title h2 {
  font-size: 32px;
  line-height: 1.05;
  font-weight: 400;
  color: #21242a;
  margin-bottom: 0.62rem;
}

#packages .section-title p {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  color: #21242a;
}

#packages .section-title-link {
  align-self: end;
  flex: 0 0 auto;
  color: #21242a;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}

#packages .section-title-link:hover,
#packages .section-title-link:focus-visible {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

main > #packages {
  margin-top: 0.85rem;
}

#packages + .services-section {
  margin-top: clamp(2.8rem, 4.2vw, 4rem);
}

.services-section + .why-card {
  margin-top: clamp(2.8rem, 4.2vw, 4rem);
  padding-top: 0;
}

.section-title {
  text-align: center;
}

.section-title h2 {
  font-size: clamp(32px, 3vw, 42px);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.section-title p {
  color: var(--muted);
  max-width: 68ch;
  margin: 0 auto;
}

.package-grid {
  margin-top: 1.55rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.package-card {
  border-radius: var(--rect-radius);
  overflow: hidden;
  background: #111;
  color: #fff;
  aspect-ratio: 0.9;
  min-height: 0;
  position: relative;
  box-shadow: var(--card-shadow);
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 32px rgba(8, 14, 24, 0.28);
}

.package-card:focus-visible {
  outline: 3px solid rgba(38, 132, 198, 0.95);
  outline-offset: 3px;
  transform: translateY(-5px);
}

#packages .package-card,
.umrah-packages .package-card,
.package-explore-section .package-card {
  box-shadow: none;
}

#packages .package-card:hover,
#packages .package-card:focus-visible,
.umrah-packages .package-card:hover,
.umrah-packages .package-card:focus-visible,
.package-explore-section .package-card:hover,
.package-explore-section .package-card:focus-visible {
  transform: none;
  box-shadow: none;
}

#packages .package-card:hover .package-image,
#packages .package-card:focus-visible .package-image,
.umrah-packages .package-card:hover .package-image,
.umrah-packages .package-card:focus-visible .package-image,
.package-explore-section .package-card:hover .package-image,
.package-explore-section .package-card:focus-visible .package-image {
  transform: scale(1.055);
}

.package-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.28s ease, transform 0.34s ease;
}

.package-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.06) 0%,
    rgba(0, 0, 0, 0.18) 44%,
    rgba(0, 0, 0, 0.52) 72%,
    rgba(0, 0, 0, 0.8) 100%
  );
  transition: background 0.28s ease;
}

.package-a {
  background-image: url("../images/package-kids.jpg");
}

.package-b {
  background-image: url("../images/package-aug.jpg");
}

.package-c {
  background-image: url("../images/package-black.jpg");
}

.package-d {
  background-image: url("../images/package-oct.jpg");
}

.package-e {
  background-image: url("../images/package-december.jpg");
}

.package-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.18rem 1.32rem 1.22rem;
  z-index: 1;
}

.package-title-logo {
  --package-logo-width: 156px;
  --package-logo-height: 58px;
  width: min(78%, var(--package-logo-width));
  height: 70px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin-bottom: 0.92rem;
  filter: drop-shadow(0 7px 14px rgba(0, 0, 0, 0.36));
}

.package-title-logo img {
  display: block;
  width: auto;
  height: var(--package-logo-height);
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  object-position: left bottom;
}

.package-title-logo--kids {
  --package-logo-width: 144px;
  --package-logo-height: 64px;
}

.package-title-logo--august {
  --package-logo-width: 142px;
  --package-logo-height: 64px;
}

.package-title-logo--black {
  --package-logo-width: 142px;
  --package-logo-height: 64px;
}

.package-title-logo--october,
.package-title-logo--december {
  --package-logo-width: 162px;
  --package-logo-height: 62px;
}

.package-date {
  font-size: 12px;
  opacity: 0.95;
  margin-bottom: 0.16rem;
}

.package-price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.28rem;
  line-height: 1;
}

.package-price-label {
  font-size: 14px;
}

.package-cost {
  font-size: 18px;
  font-weight: 600;
}

.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 50px;
  border: 1.5px solid #55585f;
  border-radius: 6px;
  font-size: 16px;
  line-height: 1;
}

.package-info {
  transition: transform 0.3s ease;
}

.package-actions {
  position: absolute;
  left: 1.32rem;
  right: 1.32rem;
  bottom: 1.22rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  transform: translateY(calc(100% + 1.1rem));
  opacity: 0;
  pointer-events: none;
  transition: transform 0.34s cubic-bezier(0.2, 0.82, 0.2, 1), opacity 0.22s ease;
}

.package-card.is-open .package-info {
  transform: translateY(-4.1rem);
}

.package-card.is-open .package-image {
  opacity: 0.78;
  transform: scale(1.02);
}

.package-card.is-open .package-image::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.22) 0%,
    rgba(0, 0, 0, 0.42) 46%,
    rgba(0, 0, 0, 0.72) 76%,
    rgba(0, 0, 0, 0.88) 100%
  );
}

.package-card.is-open .package-actions {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.package-action-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(122px, 50%, 162px);
  min-height: 40px;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: capitalize;
  white-space: nowrap;
}

.package-action-book:hover {
  background: var(--primary-dark);
}

.package-action-details {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.05;
  text-decoration: none;
  white-space: nowrap;
}

.package-action-details:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Packages list page */
.packages-page {
  --package-list-bg: #f0f1f1;
  --package-list-card-radius: 12px;
  background: var(--package-list-bg);
}

.packages-page .packages-list-main {
  min-height: calc(100vh - 94px);
  background: var(--package-list-bg);
  padding: clamp(3.2rem, 3.7vw, 3.9rem) 0 clamp(3rem, 5vw, 5.2rem);
}

.packages-list-shell {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
}

.packages-list-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: start;
  column-gap: clamp(2rem, 6vw, 5rem);
  row-gap: clamp(1.1rem, 1.8vw, 1.45rem);
  margin-bottom: clamp(2.1rem, 3vw, 2.8rem);
}

.packages-list-heading-copy {
  grid-column: 1 / -1;
  grid-row: 2;
}

.packages-list-heading {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
  max-width: 780px;
}

.packages-list-heading-line {
  display: block;
}

.packages-list-accent {
  color: inherit;
}

.packages-requirements-link {
  grid-column: 2;
  grid-row: 1;
  justify-self: stretch;
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-height: 3.75rem;
  padding: 0.8rem 1rem;
  border: 0;
  border-radius: 14px;
  background: #fff;
  color: #161927;
  font-size: 1rem;
  line-height: 1.2;
}

.packages-requirements-icon {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.packages-requirements-arrow {
  width: 0.72rem;
  height: 0.72rem;
  flex: 0 0 auto;
  margin-left: auto;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
}

.packages-list {
  display: grid;
  gap: clamp(1.55rem, 2.4vw, 2.05rem);
}

.package-list-card {
  display: block;
  overflow: hidden;
  border-radius: var(--package-list-card-radius);
  background: #fff;
  color: #07090d;
  box-shadow: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.package-list-card:hover,
.package-list-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(10, 18, 28, 0.08);
}

.package-list-card:focus-visible {
  outline: 3px solid rgba(38, 132, 198, 0.55);
  outline-offset: 4px;
}

.package-list-card--black {
  background: #030303;
  color: #f7f7f7;
}

.package-list-card--black .package-list-title,
.package-list-card--black .package-list-date-value,
.package-list-card--black .package-list-price {
  color: #fff;
}

.package-list-card--black .package-list-date-label,
.package-list-card--black .package-list-tier,
.package-list-card--black .package-list-from,
.package-list-card--black .package-list-hotels {
  color: #b9b9b9;
}

.package-list-card--black .package-list-hotels {
  border-top-color: #2a2a2a;
}

.package-list-card--black .package-list-room {
  background: #171717;
  color: #d5d5d5;
}

.package-list-card--hajj {
  --hajj-card-glow: rgba(205, 178, 99, 0.16);
  --hajj-card-glow-strong: rgba(205, 178, 99, 0.26);
  background:
    radial-gradient(circle at 44% 92%, var(--hajj-card-glow-strong) 0, var(--hajj-card-glow) 18%, rgba(255, 255, 255, 0) 58%),
    #fff;
}

.package-list-card--hajj:hover,
.package-list-card--hajj:focus-visible {
  background:
    radial-gradient(circle at 44% 92%, rgba(205, 178, 99, 0.32) 0, rgba(205, 178, 99, 0.2) 20%, rgba(255, 255, 255, 0) 62%),
    #fff;
}

.package-list-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 300px);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  min-height: clamp(150px, 11.6vw, 174px);
  padding: clamp(2rem, 3vw, 2.45rem) clamp(1.5rem, 3vw, 2.5rem) clamp(1.75rem, 2.4vw, 2.15rem);
}

.package-list-copy,
.package-list-pricing,
.package-list-date-copy,
.package-list-price-line,
.package-list-hotels,
.package-list-hotel,
.package-list-room {
  display: flex;
}

.package-list-copy,
.package-list-pricing,
.package-list-date-copy {
  flex-direction: column;
}

.package-list-title {
  display: block;
  font-size: 32px;
  line-height: 1.05;
  color: #05070a;
}

.package-list-dates {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: clamp(1.45rem, 2.7vw, 2.45rem);
  margin-top: clamp(1.25rem, 1.7vw, 1.55rem);
}

.package-list-date {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.55rem;
  min-width: 0;
}

.package-list-date-icon {
  width: 1.55rem;
  height: 1.25rem;
  object-fit: contain;
  flex: 0 0 auto;
  margin-bottom: 0.12rem;
}

.package-list-date-label {
  color: #67676c;
  font-size: 0.78rem;
  line-height: 1.05;
}

.package-list-date-value {
  color: #080a0d;
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.08;
  margin-top: 0.18rem;
  white-space: nowrap;
}

.package-list-pricing {
  --package-list-chevron-align-offset: calc(0.9rem + 0.56rem);
  align-items: flex-end;
  justify-self: end;
  text-align: right;
  min-width: 0;
}

.package-list-tier {
  display: block;
  margin-right: var(--package-list-chevron-align-offset);
  color: #626267;
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.2;
  text-align: right;
}

.package-list-price-line {
  align-items: baseline;
  justify-content: flex-end;
  gap: 0.56rem;
  margin-top: 0.2rem;
  white-space: nowrap;
}

.package-list-from {
  color: #606066;
  font-size: clamp(0.96rem, 1.15vw, 1.08rem);
  line-height: 1;
}

.package-list-price {
  color: #05070a;
  font-size: clamp(1.72rem, 2.15vw, 2rem);
  line-height: 1;
}

.package-list-chevron {
  width: 0.9rem;
  height: 0.9rem;
  flex: 0 0 auto;
  border-right: 0.23rem solid #ef2c2c;
  border-bottom: 0.23rem solid #ef2c2c;
  transform: translateY(-0.18rem) rotate(45deg);
}

.package-list-room {
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 1.85rem;
  margin-top: 1.12rem;
  margin-right: var(--package-list-chevron-align-offset);
  padding: 0.24rem 0.72rem 0.28rem;
  border-radius: 7px;
  background: #f7f7f7;
  color: #66666a;
  font-size: 0.78rem;
  line-height: 1;
  white-space: nowrap;
}

.package-list-bed {
  display: block;
  width: 1.3rem;
  height: 1.3rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.package-list-hotels {
  min-height: 3.75rem;
  align-items: center;
  gap: clamp(1.75rem, 3.4vw, 3.1rem);
  padding: 0.62rem clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid #d3d3d3;
  color: #626267;
  font-size: clamp(0.86rem, 0.95vw, 0.94rem);
  line-height: 1.15;
}

.package-list-hotel {
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.package-list-hotel span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.package-list-hotel-icon {
  display: block;
  flex: 0 0 auto;
  width: 2.05rem;
  height: 2.05rem;
  object-fit: contain;
}

.package-list-hotel-icon--madinah {
  width: 2.35rem;
  height: 2.35rem;
}

.packages-page .packages-list-main :where(h1, p, a, span) {
  font-weight: 400;
}

@media (max-width: 760px) {
  .packages-page .packages-list-main {
    padding: clamp(3.45rem, 14.5vw, 4rem) 0 2.8rem;
  }

  .packages-list-shell {
    width: min(100% - 2rem, var(--max));
  }

  .packages-list-head {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .packages-requirements-link,
  .packages-list-heading-copy {
    grid-column: 1;
  }

  .packages-list-heading {
    font-size: clamp(22px, 6.6vw, 30px);
    line-height: 1.25;
  }

  .packages-requirements-link {
    justify-self: end;
    width: min(100%, 360px);
    max-width: calc(100vw - clamp(9.35rem, 39vw, 10rem));
    min-height: 3.3rem;
    gap: 0.7rem;
    padding: 0.72rem 1rem 0.72rem 0.95rem;
    border-radius: 13px;
    color: #0b0d14;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .packages-requirements-icon {
    width: 1.35rem;
    height: 1.35rem;
  }

  .packages-requirements-arrow {
    width: 0.68rem;
    height: 0.68rem;
    margin-right: 0.12rem;
    border-right-width: 2px;
    border-bottom-width: 2px;
    color: #5f5f5f;
  }

  .package-list-top {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    min-height: 0;
    padding: 1.55rem 1.35rem 1.45rem;
  }

  .package-list-title {
    font-size: 28px;
  }

  .package-list-dates {
    gap: 0.84rem 1.18rem;
    margin-top: 1.05rem;
  }

  .package-list-date {
    flex: 1 1 126px;
    gap: 0.45rem;
  }

  .package-list-date-icon {
    width: 1.34rem;
    height: 1.08rem;
  }

  .package-list-date-label {
    font-size: 0.72rem;
  }

  .package-list-date-value {
    font-size: 0.94rem;
  }

  .package-list-pricing {
    --package-list-chevron-align-offset: 0rem;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    column-gap: 0.75rem;
    justify-self: stretch;
    text-align: right;
  }

  .package-list-tier {
    grid-column: 2;
    justify-self: end;
    padding-right: 0;
  }

  .package-list-price-line {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
    justify-content: flex-end;
  }

  .package-list-chevron {
    display: none;
  }

  .package-list-room {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
    gap: 0.32rem;
    min-height: 1.45rem;
    margin-top: 0.2rem;
    margin-left: 0;
    margin-right: var(--package-list-chevron-align-offset);
    padding: 0.18rem 0.48rem 0.2rem;
    border-radius: 6px;
    font-size: 0.66rem;
  }

  .package-list-bed {
    width: 1rem;
    height: 1rem;
  }

  .package-list-hotels {
    min-height: 0;
    flex-wrap: nowrap;
    gap: 0.8rem;
    padding: 0.9rem 1.1rem 0.98rem;
    font-size: clamp(0.72rem, 2.65vw, 0.86rem);
  }

  .package-list-hotel {
    flex: 1 1 0;
    gap: 0.42rem;
    min-width: 0;
  }

  .package-list-hotel-icon {
    width: 1.38rem;
    height: 1.38rem;
  }

  .package-list-hotel-icon--madinah {
    width: 1.5rem;
    height: 1.5rem;
  }
}

@media (max-width: 520px) {
  .packages-list {
    gap: 0.95rem;
  }

  .packages-requirements-link {
    gap: 0.56rem;
    padding: 0.72rem 0.9rem 0.72rem 0.72rem;
    font-size: 0.84rem;
  }

  .packages-requirements-icon {
    width: 1.22rem;
    height: 1.22rem;
  }

  .packages-requirements-arrow {
    width: 0.6rem;
    height: 0.6rem;
  }

  .package-list-card {
    border-radius: 10px;
  }

  .package-list-top {
    padding: 1.35rem 1.05rem 1.25rem;
  }

  .package-list-date-icon {
    width: 1.24rem;
    height: 1rem;
  }

  .package-list-date-value {
    font-size: 0.92rem;
  }

  .package-list-price-line {
    gap: 0.42rem;
  }

  .package-list-price {
    font-size: clamp(1.52rem, 8vw, 1.76rem);
  }

  .package-list-chevron {
    width: 0.78rem;
    height: 0.78rem;
    border-right-width: 0.2rem;
    border-bottom-width: 0.2rem;
  }

  .package-list-hotels {
    gap: 0.55rem;
    padding-inline: 0.85rem;
  }

  .package-list-hotel {
    gap: 0.34rem;
  }

  .package-list-hotel span {
    white-space: nowrap;
  }
}

@media (max-width: 360px) {
  .package-list-hotels {
    gap: 0.42rem;
    padding-inline: 0.72rem;
    font-size: 0.68rem;
  }

  .package-list-hotel {
    gap: 0.28rem;
  }

  .package-list-hotel-icon {
    width: 1.15rem;
    height: 1.15rem;
  }

  .package-list-hotel-icon--madinah {
    width: 1.25rem;
    height: 1.25rem;
  }
}

@media (max-width: 340px) {
  .packages-requirements-link {
    gap: 0.34rem;
    padding: 0.72rem 0.58rem 0.72rem 0.48rem;
    font-size: 0.78rem;
  }

  .packages-requirements-icon {
    width: 1rem;
    height: 1rem;
  }

  .packages-requirements-arrow {
    width: 0.52rem;
    height: 0.52rem;
    margin-right: 0;
  }
}

.app-section {
  margin-top: 3.8rem;
  background: linear-gradient(160deg, #2684c6 0%, #2684c6 100%);
  overflow: hidden;
}

.why-card + .app-section {
  margin-top: clamp(1.6rem, 2.4vw, 2.35rem);
}

.app-wrap {
  height: 400px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  align-items: center;
  gap: 2rem;
  color: #fff;
  padding: 0;
}

.app-copy {
  align-self: center;
  justify-self: start;
  margin-left: clamp(0.75rem, 2.2vw, 2rem);
  transform: translateY(-78px);
}

.app-headline {
  max-width: 380px;
}

.app-kicker {
  font-family: "Instrument Serif", serif;
  font-size: clamp(1.85rem, 2.15vw, 2.6rem);
  line-height: 1;
  margin: 0 0 0.18rem;
  color: #fff;
}

.app-title {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-variation-settings: normal;
  font-weight: 600;
  font-size: clamp(2rem, 2.7vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: #fff;
}

.app-title span {
  display: block;
}

.store-buttons {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.15rem;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0;
  line-height: 0;
  cursor: pointer;
}

.store-badge img {
  display: block;
  width: 140px;
  height: auto;
}

.store-badge:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.store-badge:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
  border-radius: 4px;
}

.app-visual {
  display: flex;
  justify-content: flex-end;
  justify-self: end;
  align-self: center;
  width: 100%;
  max-width: 360px;
  transform: translate(-118px, 82px);
}

.app-phones-image {
  display: block;
  width: min(100%, 360px);
  height: auto;
  filter: drop-shadow(0 16px 34px rgba(6, 18, 31, 0.28));
}

.about-section {
  margin-top: 4rem;
}

.about-section .section-title {
  text-align: center;
}

.reviews-section {
  margin-top: 6rem;
}

.about-section .section-title h2 {
  font-size: 32px;
  margin-bottom: 0.38rem;
  color: #000;
  text-transform: none;
  letter-spacing: 0.01em;
  font-style: normal;
  font-variation-settings: normal;
  font-weight: 400;
}

.about-section .section-title p {
  color: #101215;
  font-size: 16px;
  font-weight: 400;
  margin-left: auto;
  margin-right: auto;
}

.reviews-section .section-title h2 {
  font-size: 32px;
}

.reviews-section .section-title p {
  font-size: 16px;
}

.reviews-heading {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.02rem;
  line-height: 1;
}

.reviews-line-one {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.45rem;
  white-space: nowrap;
}

.reviews-over,
.reviews-line-two {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.reviews-count-wrap {
  display: inline-flex;
  align-items: flex-end;
  line-height: 0.85;
}

.reviews-count,
.reviews-count-plus {
  font-size: clamp(46px, 5vw, 60px);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #2684c6;
}

.about-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 170px));
  justify-content: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.about-item {
  text-align: center;
}

.about-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
  text-decoration: none;
  transition: transform 0.26s ease;
}

.about-photo {
  width: min(100%, 164px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  margin: 0 auto 0.72rem;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 22px rgba(20, 30, 42, 0.16);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.about-1 {
  background-image: url("../images/about-story.jpg");
  background-position: center 45%;
}

.about-2 {
  background-image: url("../images/about-team.jpg");
  background-position: center 43%;
}

.about-3 {
  background-image: url("../images/about-milestones.jpg");
  background-position: center 47%;
}

.about-4 {
  background-image: url("../images/about-partners.jpg");
  background-position: center 49%;
}

.about-item h3 {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  transition: transform 0.26s ease;
}

.about-link:hover,
.about-link:focus-visible {
  transform: translateY(-8px);
}

.about-link:hover .about-photo,
.about-link:focus-visible .about-photo {
  transform: scale(1.045);
  box-shadow: 0 16px 30px rgba(12, 24, 38, 0.24);
}

.about-link:hover h3,
.about-link:focus-visible h3 {
  transform: translateY(2px);
}

.about-link:focus-visible {
  outline: 2px solid rgba(38, 132, 198, 0.9);
  outline-offset: 4px;
  border-radius: 10px;
}

.reviews-carousel {
  position: relative;
  margin-top: 1.7rem;
  padding: 0 2.45rem 0.25rem;
}

.reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: transparent;
  font-size: 0;
  line-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  z-index: 2;
  box-shadow: none;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.reviews-nav::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-right: 5px solid #aab1bb;
  border-bottom: 5px solid #aab1bb;
  transition: border-color 0.22s ease;
}

.reviews-nav-prev::before {
  transform: rotate(135deg);
}

.reviews-nav-next::before {
  transform: rotate(-45deg);
}

.reviews-nav:hover,
.reviews-nav:focus-visible {
  transform: translateY(calc(-50% - 8px));
  outline: none;
}

.reviews-nav:hover::before,
.reviews-nav:focus-visible::before {
  border-color: #8f97a2;
}

.reviews-nav:disabled {
  opacity: 0.35;
  cursor: default;
  transform: translateY(-50%);
}

.reviews-nav:disabled:hover,
.reviews-nav:disabled:focus-visible {
  transform: translateY(-50%);
}

.reviews-nav:disabled::before {
  border-color: #d2d7df;
}

.reviews-nav-prev {
  left: 0;
}

.reviews-nav-next {
  right: 0;
}

.reviews-grid {
  --reviews-gap: 1rem;
  margin-top: 0;
  display: flex;
  gap: var(--reviews-gap);
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 0.6rem 0 0.75rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  user-select: none;
  scrollbar-width: none;
}

.reviews-grid::-webkit-scrollbar {
  display: none;
}

.reviews-grid .review-card {
  flex: 0 0 calc((100% - (var(--reviews-gap) * 3)) / 4);
  min-width: 250px;
  scroll-snap-align: start;
}

.review-card {
  background: #fff;
  border-radius: var(--rect-radius);
  padding: 1rem;
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  min-height: 208px;
  transition: transform 0.26s ease;
}

.review-card:hover,
.review-card:focus-within {
  transform: translateY(-8px);
  box-shadow: none;
}

.review-card h4 {
  font-size: 1.05rem;
  margin: 0;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 0.58rem;
  margin-bottom: 0.45rem;
}

.review-avatar {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid #d8dde4;
  background: #f0f2f6;
}

.review-avatar-fallback {
  display: inline-grid;
  place-items: center;
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 600;
  color: #314153;
  background: #e6edf5;
  text-transform: uppercase;
}

.review-author {
  font-size: 1.05rem;
  line-height: 1.2;
  margin: 0;
  transition: transform 0.26s ease;
}

.review-card:hover .review-author,
.review-card:focus-within .review-author {
  transform: translateY(2px);
}

.review-card p {
  color: #50545d;
  font-size: 0.93rem;
  white-space: normal;
  overflow-wrap: anywhere;
}

.review-text {
  margin: 0;
  min-height: 4.4em;
  line-height: 1.45;
}

.review-readmore {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  color: #1d2128;
  font: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.review-readmore:hover {
  color: #000;
}

.review-meta {
  margin-top: auto;
  padding-top: 0.68rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  color: #565b63;
  font-size: 0.82rem;
}

.review-stars {
  color: #f4b400;
  letter-spacing: 0.03em;
  font-size: 0.92rem;
  line-height: 1;
}

.reviews-foot {
  margin-top: 0.95rem;
  text-align: right;
  color: #4a5058;
  font-size: 0.9rem;
}

.reviews-foot.is-error {
  color: #b32929;
}

.reviews-source-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #1b1f24;
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.review-popup-open {
  overflow: hidden;
}

.review-popup {
  position: fixed;
  inset: 0;
  z-index: 340;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.review-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.review-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 22, 28, 0.64);
}

.review-popup-dialog {
  position: relative;
  width: min(100%, 560px);
  max-height: min(74vh, 560px);
  background: #fff;
  border-radius: var(--rect-radius);
  border: 1px solid #d4d8de;
  padding: 1.25rem 1.2rem 1.05rem;
  box-shadow: 0 20px 44px rgba(12, 18, 29, 0.28);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.review-popup-close {
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 999px;
  background: #eef2f6;
  color: #20242b;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.review-popup-title {
  margin: 0 2.1rem 0 0;
  font-size: 1.15rem;
  line-height: 1.2;
}

.review-popup-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: 0 0 auto;
  margin: 0 0 0.5rem;
}

.review-popup-avatar {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.review-popup-avatar.has-photo {
  background-color: #dfe5ee;
}

.review-popup-text {
  flex: 1 1 auto;
  min-height: 0;
  margin: 0;
  color: #2b3138;
  font-size: 1rem;
  line-height: 1.55;
  max-height: none;
  overflow-y: auto;
  padding-right: 0.35rem;
}

.review-popup-meta {
  flex: 0 0 auto;
  margin-top: 0.9rem;
}

.footer {
  margin-top: 4.25rem;
  background: #2684c6;
  color: #fff;
  padding-top: 3.45rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 116px 1fr 1fr 1.2fr 0.9fr;
  gap: clamp(1.6rem, 2.2vw, 2.6rem);
  align-items: start;
  padding-bottom: 2.95rem;
}

.footer-brand {
  align-self: center;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.footer-brand-logo {
  display: block;
  width: min(100%, 96px);
  height: auto;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.22rem;
}

.footer-grid h4 {
  margin: 0 0 0.34rem;
  font-size: 1.24rem;
  font-weight: 600;
  line-height: 1.15;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.42;
  opacity: 0.96;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-location {
  display: inline-block;
  margin: 0.24rem 0 0.15rem;
  color: #fff;
  font-size: 0.97rem;
  line-height: 1.42;
  opacity: 0.96;
  max-width: 28ch;
}

.footer-social-title {
  margin: 1.02rem 0 0.5rem;
  font-size: 1.03rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-transform: none;
}

.footer-social-col .footer-social-title {
  margin-top: 0;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.52rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.65);
}

.footer-social img {
  width: 1.22rem;
  height: 1.22rem;
  object-fit: contain;
}

.copyright {
  margin: 0;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
  padding: 1rem 1rem 1.05rem;
  background: #1d7cbc;
}

.whatsapp-help-widget {
  position: fixed;
  right: clamp(1rem, 2.2vw, 1.7rem);
  bottom: clamp(1rem, 2.2vw, 1.7rem);
  z-index: 1600;
  display: inline-flex;
  align-items: center;
  gap: 0.74rem;
  min-height: 56px;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  padding: 0.42rem 1.18rem 0.42rem 0.42rem;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(17, 31, 42, 0.12);
}

.whatsapp-help-widget:hover,
.whatsapp-help-widget:focus-visible {
  background: #fff;
  color: #000;
}

.whatsapp-help-widget:focus-visible {
  outline: 2px solid rgba(38, 132, 198, 0.45);
  outline-offset: 3px;
}

.whatsapp-help-widget-icon {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 0;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  background: transparent;
  color: inherit;
  font-size: 1.05rem;
  font-weight: 700;
}

.whatsapp-help-widget-icon img {
  width: 2.55rem;
  height: 2.55rem;
  display: block;
  object-fit: contain;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
}

.js .reveal.is-visible,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .js .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .why-reference-tab-panel {
    transition: none;
  }

  .announce-ticker-link.is-animating .announce-ticker-line-current,
  .announce-ticker-link.is-animating .announce-ticker-line-next {
    animation: none;
  }
}

@media (max-width: 1200px) {
  .main-nav,
  .login-link {
    font-size: 0.9rem;
  }

  .hero {
    height: var(--hero-overlay-height);
    min-height: var(--hero-overlay-height);
  }

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

}

@media (hover: none), (pointer: coarse) {
  .service-link:hover,
  .service-link:focus-visible {
    background: #fff;
    box-shadow: none;
  }

  .service-link:hover .service-icon,
  .service-link:focus-visible .service-icon,
  .service-link:active .service-icon {
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(45%) sepia(82%) saturate(882%)
      hue-rotate(169deg) brightness(91%) contrast(88%);
  }

  .booking-tab:not(.is-active),
  .booking-tab:not(.is-active):hover,
  .booking-tab:not(.is-active):focus,
  .booking-tab:not(.is-active):active {
    color: #68717b;
  }

  .booking-tab.is-active,
  .booking-tab.is-active:hover,
  .booking-tab.is-active:focus,
  .booking-tab.is-active:active {
    color: #fff;
  }
}

@media (max-width: 920px) {
  .container {
    width: min(100% - 2rem, var(--max));
  }

  .passport-processing-shell {
    padding: 3rem 0 4.6rem;
  }

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

  .passport-note-grid {
    grid-template-columns: 1fr;
  }

  .passport-fees-panel {
    border-radius: 14px;
  }

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

  .about-nav-image {
    height: 190px;
  }

  .main-header {
    background: #fff;
    border-bottom: 1px solid #d7d9de;
    box-shadow: 0 8px 16px rgba(19, 19, 19, 0.1);
  }

  .nav-wrap {
    padding-left: 118px;
    padding-right: 0.2rem;
    min-height: 46px;
    gap: 0.55rem;
  }

  .brand-float {
    position: absolute;
    left: 0;
    top: 0;
    width: 92px;
    height: 128px;
    padding: 0.58rem 0.42rem 0.82rem;
    border-radius: 0 0 6px 6px;
    align-self: auto;
    box-shadow: 0 10px 20px rgba(16, 50, 79, 0.22);
  }

  .brand-float-img {
    max-width: 80%;
    max-height: 88%;
    transform: translateY(10px);
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 38px;
    min-width: 92px;
    border: 2px solid #000;
    border-radius: var(--rect-radius);
    background: #fff;
    padding: 0 0.3rem;
    order: 3;
    margin-left: 0;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
  }

  .menu-toggle::before {
    content: "MENU";
    color: #000;
  }

  .menu-toggle span {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(85vw, 340px);
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.35rem;
    font-size: 1.02rem;
    background: #fff;
    border: 0;
    border-radius: 0;
    padding: calc(env(safe-area-inset-top, 0px) + 5.2rem) 1.2rem 1.4rem;
    box-shadow: -18px 0 38px rgba(18, 28, 40, 0.18);
    text-align: left;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(105%);
    transition: transform 0.24s ease, visibility 0.24s ease;
    z-index: 6100;
  }

  .main-nav a {
    width: 100%;
    text-align: left;
    padding: 0.88rem 0;
    border-bottom: 1px solid #edf1f4;
  }

  .main-nav-close {
    position: absolute;
    top: calc(env(safe-area-inset-top, 0px) + 1.1rem);
    right: 1rem;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 0;
    display: inline-grid;
    place-items: center;
    background: transparent;
    color: #111827;
    font-size: 0;
    line-height: 1;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
  }

  .main-nav-close::before,
  .main-nav-close::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
  }

  .main-nav-close::before {
    transform: rotate(45deg);
  }

  .main-nav-close::after {
    transform: rotate(-45deg);
  }

  .main-nav-close:focus-visible {
    outline: 2px solid rgba(38, 132, 198, 0.45);
    outline-offset: 2px;
  }

  .main-nav.open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  body.mobile-nav-open {
    overflow: hidden;
  }

  body.mobile-nav-open .top-stack {
    z-index: 6200;
  }

  body.mobile-nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 6000;
    background: rgba(13, 20, 30, 0.34);
  }

  .login-link {
    order: 2;
    margin-left: auto;
    margin-right: 0.45rem;
    font-size: 0;
    gap: 0;
    width: 1.9rem;
    height: 1.9rem;
    justify-content: center;
    overflow: hidden;
  }

  .profile-menu {
    order: 2;
    margin-left: auto;
    margin-right: 0.45rem;
  }

  .profile-button {
    width: 1.9rem;
    height: 1.9rem;
  }

  .profile-button-img {
    width: 1.72rem;
    height: 1.72rem;
  }

  .profile-panel {
    top: calc(100% + 10px);
    width: min(340px, calc(100vw - 1.5rem));
  }

  .login-label {
    display: none;
  }

  .login-icon-img {
    width: 1.72rem;
    height: 1.72rem;
  }

  .hero {
    height: calc(var(--hero-overlay-height) + 270px);
    min-height: calc(var(--hero-overlay-height) + 270px);
    background: var(--bg);
  }

  .hero-media {
    height: var(--hero-overlay-height);
  }

  .hero::before,
  .hero-overlay {
    height: var(--hero-overlay-height);
  }

  .hero-content {
    padding-top: 84px;
    padding-bottom: 0;
    min-height: auto;
    display: block;
  }

  .inner-hero {
    min-height: 360px;
  }

  .inner-hero-content {
    padding-top: 118px;
    padding-bottom: 2.2rem;
  }

  .inner-hero-title {
    font-size: 32px;
  }

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

  .booking-shell {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(var(--hero-overlay-height) - var(--booking-tab-height));
    transform: none;
    width: min(100% - 2rem, var(--max));
    margin: 0 auto;
    padding-bottom: 0;
    z-index: 6;
  }

  .booking-form {
    border-top: 1px solid #b8bcc3;
    grid-template-columns: 1fr;
  }

  .packages .section-title h2 {
    font-size: 36px;
  }

  .packages .section-title p {
    font-size: 16px;
  }

  .package-grid {
    gap: 1rem;
  }

  .outline-btn {
    width: 200px;
    height: 50px;
    font-size: 16px;
  }

  main {
    padding-top: 0;
  }

  main > #packages {
    margin-top: 2.1rem;
  }

  .services-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0.75rem;
  }

  .services-section .services-strip {
    width: min(100%, 720px);
    margin-right: auto;
    margin-left: auto;
  }

  .service-box:nth-child(2n + 1)::before {
    display: none;
  }

  .why-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 1.4rem;
    gap: 1.2rem;
  }

  .why-copy p {
    max-width: 48ch;
  }

  .why-card-rail,
  .why-card-controls {
    grid-column: 1;
  }

  .why-story-card {
    flex-basis: min(76vw, 340px);
    min-height: 300px;
  }

  .ghost-btn {
    width: 151px;
    height: 50px;
    font-size: 16px;
    justify-self: start;
  }

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

  .why-reference-tab-panel {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    gap: 1.5rem;
  }

  .help-actions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .help-welcome {
    margin-bottom: 2rem;
  }

  .refund-action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .app-wrap {
    grid-template-columns: 1fr;
    height: auto;
    gap: 0.8rem;
    padding: 2.8rem 0 1.35rem;
  }

  .app-copy {
    justify-self: center;
    margin-left: 0;
    transform: translateX(18px);
  }

  .app-headline {
    max-width: 320px;
    text-align: center;
    margin: 0 auto;
  }

  .app-kicker {
    font-size: clamp(1.7rem, 6vw, 2.25rem);
  }

  .app-title {
    font-size: clamp(1.95rem, 7vw, 2.55rem);
  }

  .store-buttons {
    justify-content: center;
  }

  .app-visual {
    justify-self: center;
    width: min(100%, 320px);
    transform: none;
  }

  .package-detail-shell {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-top: 4.9rem;
  }

  .package-detail-content > h2 {
    max-width: 10ch;
    margin-bottom: 1.55rem;
  }

  .package-detail-content {
    display: contents;
  }

  .package-detail-content > h2 {
    order: 0;
  }

  .package-summary-card {
    position: static;
    order: 1;
  }

  .package-deposit-panel {
    order: 2;
  }

  .package-included-panel {
    order: 3;
  }

  .package-services-panel {
    order: 4;
  }

  .package-explore-section {
    order: 5;
  }

  .package-included-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .package-services-drawer-head {
    display: grid;
    gap: 1rem;
  }

  .package-services-legend {
    justify-content: flex-start;
    max-width: none;
  }

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

  .package-explore-head {
    display: block;
  }

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

  .about-grid {
    grid-template-columns: repeat(2, minmax(140px, 170px));
    justify-content: center;
    gap: 2rem;
  }

  .about-photo {
    width: min(100%, 150px);
  }

  .about-item h3 {
    font-size: 16px;
    font-weight: 400;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.7rem 2rem;
    padding-bottom: 2.25rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand-logo {
    width: 88px;
  }

  .footer-grid h4 {
    font-size: 1.12rem;
  }

  .footer-col a {
    font-size: 0.96rem;
  }

  .footer-location {
    font-size: 0.94rem;
  }

  .footer-social-title {
    font-size: 0.98rem;
  }

  .copyright {
    font-size: 0.88rem;
  }

  .reviews-carousel {
    margin-top: 1.3rem;
    padding: 0;
  }

  .reviews-nav {
    display: none;
  }

  .reviews-grid {
    overflow-x: auto;
    padding: 0.15rem 0.18rem 0.68rem;
    user-select: text;
  }

  body.login-page main.auth-main {
    padding: 4.1rem 0 8.4rem;
  }

  .auth-intro {
    margin-bottom: 1.7rem;
  }

  .auth-intro h1 {
    margin-bottom: 0.72rem;
  }

  .auth-intro p {
    font-size: 20px;
  }

  .auth-card {
    grid-template-columns: 1fr;
    padding: 1.15rem 1rem;
  }

  .auth-login {
    padding: 0.25rem 0.2rem 1.2rem;
  }

  .auth-join {
    border-left: none;
    border-top: 1px solid #d4d8de;
    padding: 1.35rem 0.2rem 0.45rem;
  }

  .auth-login h2,
  .auth-join h2 {
    font-size: 1.55rem;
    margin-bottom: 0.88rem;
  }

  .partners-directory {
    padding: 2.4rem 0 4.1rem;
  }

  .partners-head {
    margin-bottom: 1.55rem;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .partner-card {
    min-height: 188px;
    grid-template-columns: 138px minmax(0, 1fr);
  }

  .history-directory {
    padding: 2.4rem 0 4.1rem;
  }

  .other-services-directory {
    padding: 2.4rem 0 4.1rem;
  }

  .other-services-intro {
    margin-bottom: 1.55rem;
  }

  .history-head {
    margin-bottom: 3.4rem;
  }

  .history-story-list {
    gap: 3.3rem;
    padding: 2.4rem 1.35rem 2.8rem;
  }

  .history-story-card {
    grid-template-columns: minmax(0, 1fr) minmax(215px, 360px);
    gap: 2rem;
  }

  .history-story-card-reverse {
    grid-template-columns: minmax(215px, 360px) minmax(0, 1fr);
    gap: 2rem;
  }

  .history-story-copy h2 {
    font-size: 24px;
    gap: 0.82rem;
  }

  .history-story-copy h2::before {
    width: 2.45rem;
    height: 2.45rem;
    font-size: 0.78rem;
  }

  .history-story-copy p,
  .history-story-copy blockquote {
    font-size: 15px;
  }

  .history-story-media,
  .history-story-media img {
    min-height: 235px;
  }

  .team-directory {
    padding: 2.4rem 0 4.1rem;
  }

  .team-head {
    margin-bottom: 1.55rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .team-card {
    min-height: 176px;
    grid-template-columns: 126px minmax(0, 1fr);
  }

  .team-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-cta-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .milestones-directory {
    padding: 2.4rem 0 4.1rem;
  }

  .milestone-carousel-shell {
    padding: 0 2.6rem;
  }

  .milestone-news-grid {
    overflow: hidden;
  }

  .milestone-news-card {
    flex-basis: calc((100% - 1rem) / 2);
  }

  .milestone-news-title {
    font-size: 20px;
  }

  .milestones-archive {
    padding: 2.4rem 0 4.1rem;
  }

  .milestone-month-title {
    font-size: clamp(1.9rem, 3.8vw, 2.3rem);
    margin-bottom: 1.35rem;
  }

  .milestone-list-item {
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 1rem;
  }

  .milestone-list-title {
    font-size: 20px;
  }

}

@media (max-width: 620px) {
  .passport-processing-shell {
    width: min(100% - 2rem, var(--max));
    padding: 2rem 0 3.2rem;
  }

  .passport-processing-shell h2 {
    font-size: 26px;
  }

  .passport-opening h2 {
    max-width: none;
    font-size: 26px;
  }

  .passport-opening > p,
  .passport-step-copy,
  .passport-copy-panel p {
    font-size: 16px;
    line-height: 1.55;
  }

  .passport-step {
    margin-top: 2.2rem;
  }

  .passport-step > h2 {
    font-size: 26px;
    line-height: 1.22;
  }

  .passport-panel {
    border-radius: 12px;
    padding: 1rem;
  }

  .passport-panel-head h3,
  .passport-table-head h3 {
    font-size: 22px;
  }

  .passport-panel-head p,
  .passport-table-head p {
    font-size: 16px;
  }

  .passport-requirement-grid {
    grid-template-columns: 1fr;
    gap: 0.78rem;
    margin-top: 1.05rem;
  }

  .passport-requirement-card {
    min-height: 0;
    border-radius: 12px;
    padding: 1rem;
  }

  .passport-card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 0.68rem;
  }

  .passport-requirement-card h4 {
    font-size: 18px;
  }

  .passport-action-cta {
    min-height: 0;
    margin-top: 2rem;
    padding: 1.35rem;
    border-radius: 12px;
    background:
      linear-gradient(
        90deg,
        rgba(11, 18, 33, 0.96) 0%,
        rgba(15, 47, 72, 0.9) 62%,
        rgba(38, 132, 198, 0.32) 100%
      ),
      url("../images/passport-processing-hero.jpg");
    background-size: cover;
    background-position: 56% center;
  }

  .passport-action-copy h3 {
    font-size: 24px;
    line-height: 1.18;
  }

  .passport-action-copy p {
    margin-top: 0.75rem;
    font-size: 15px;
    line-height: 1.5;
  }

  .passport-action-buttons {
    gap: 0.68rem;
    margin-top: 1.25rem;
  }

  .passport-whatsapp-btn {
    width: 100%;
    min-height: 44px;
    padding: 0 1rem;
    font-size: 14px;
  }

  .passport-note-grid {
    gap: 0.78rem;
    margin-top: 0.78rem;
  }

  .passport-note-card {
    border-radius: 10px;
    padding: 0.9rem 1rem;
  }

  .passport-table-wrap {
    overflow-x: visible;
    border: 1px solid #d8dee8;
    border-radius: 12px;
  }

  .passport-fee-table {
    display: table;
    width: 100%;
    min-width: 0;
    table-layout: fixed;
  }

  .passport-fee-table th:first-child,
  .passport-fee-table td:first-child {
    width: 35%;
  }

  .passport-fee-table th:nth-child(2),
  .passport-fee-table td:nth-child(2) {
    width: 38%;
  }

  .passport-fee-table th:last-child,
  .passport-fee-table td:last-child {
    width: 27%;
  }

  .passport-fee-table thead {
    display: table-header-group;
  }

  .passport-fee-table tbody {
    display: table-row-group;
  }

  .passport-fee-table tr {
    display: table-row;
  }

  .passport-fee-table th,
  .passport-fee-table td {
    display: table-cell;
    padding: 0.78rem 0.68rem;
    border-bottom: 1px solid #d9e1eb;
    font-size: 14px;
    line-height: 1.38;
    vertical-align: middle;
    overflow-wrap: anywhere;
  }

  .passport-fee-table td:last-child,
  .passport-fee-table th:last-child {
    text-align: right;
    white-space: nowrap;
  }

  .passport-fee-table td::before {
    content: none;
    display: none;
  }

  .about-nav-section {
    padding: 0 0 4.2rem;
  }

  .about-nav-section h2 {
    margin-bottom: 1.35rem;
    font-size: 26px;
  }

  .about-nav-grid {
    --about-nav-rail-inset: clamp(1rem, 5vw, 1.5rem);
    display: flex;
    gap: 1rem;
    margin-inline: calc((100vw - 100%) / -2);
    overflow-x: auto;
    padding: 0 calc(((100vw - 100%) / 2) + var(--about-nav-rail-inset)) 0.35rem;
    scroll-padding-inline: calc(((100vw - 100%) / 2) + var(--about-nav-rail-inset));
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .about-nav-grid::-webkit-scrollbar {
    display: none;
  }

  .about-nav-card {
    flex: 0 0 clamp(220px, 72vw, 240px);
    scroll-snap-align: start;
  }

  .about-nav-image {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .about-nav-body {
    padding: 0.78rem 0.86rem 0.72rem;
  }

  .about-nav-body h3 {
    font-size: 18px;
  }

  .about-nav-action {
    gap: 0.72rem;
    padding: 0.68rem 0.86rem 0.76rem;
    font-size: 13px;
    line-height: 1.15;
  }

  .about-nav-arrow {
    font-size: 1.42rem;
  }

  .hero,
  .booking-shell {
    --hero-overlay-height: 330px;
  }

  .hero-image {
    object-position: center 22%;
  }

  .top-stack {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    z-index: 2000;
    background: #fff;
    box-shadow: 0 8px 18px rgba(19, 19, 19, 0.08);
  }

  .history-page .top-stack {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 5000;
    background: #fff;
  }

  body.history-page {
    padding-top: var(--history-mobile-stack-height, 0px);
  }

  .top-stack .announce-bar,
  .top-stack .main-header {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    z-index: 1;
  }

  .container {
    width: min(100% - 1.5rem, var(--max));
  }

  .visa-processing-page .visa-processing-shell {
    width: min(100% - 2rem, var(--max));
  }

  /* Mobile announce: compact centered black card reference */
  .announce-bar {
    background: #000;
    padding: 0.78rem 0 0.62rem;
  }

  .announce-bar .container {
    width: min(100% - 2.25rem, 355px);
    margin: 0 auto;
    padding: 0;
    display: block;
  }

  .announce-inner {
    width: 100%;
    background: #000;
    border: none;
    min-height: auto;
    padding: 0.82rem 0.92rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.56rem;
  }

  .announce-main {
    gap: 0.56rem;
    align-items: center;
    width: 100%;
    flex: 1 1 auto;
  }

  .announce-dot {
    width: 1.05rem;
    height: 1.05rem;
    margin-top: 0;
  }

  .announce-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.08rem;
    margin: 0;
    width: 100%;
    min-width: 0;
  }

  .announce-important {
    display: block;
    margin-bottom: 0.01rem;
  }

  .announce-text {
    font-size: 0.87rem;
    line-height: 1.2;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .announce-ticker-link {
    width: 100%;
    font-size: 0.87rem;
  }

  .announce-ticker-window {
    height: 2.4em;
  }

  .announce-ticker-line {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .announce-link-mobile {
    display: inline-block;
    font-size: 0.86rem;
  }

  .announce-link-desktop {
    display: none;
  }

  .announce-actions {
    display: none;
  }

  .nav-wrap {
    padding-left: 108px;
    min-height: 46px;
    min-width: 0;
    overflow: visible;
  }

  .brand-float {
    position: absolute;
    left: 0;
    top: 0;
    width: 86px;
    height: 120px;
    z-index: 4;
    padding: 0.54rem 0.4rem 0.76rem;
    border-radius: 0 0 6px 6px;
    align-self: auto;
    box-shadow: 0 10px 20px rgba(16, 50, 79, 0.22);
  }

  .brand-float-img {
    max-width: 80%;
    max-height: 88%;
    transform: translateY(8px);
  }

  .login-link {
    order: 3;
    margin-left: 0;
    margin-right: 0;
    width: 1.75rem;
    height: 1.75rem;
  }

  .profile-menu {
    order: 3;
    margin-left: 0;
    margin-right: 0;
  }

  .profile-button {
    width: 1.75rem;
    height: 1.75rem;
  }

  .profile-button-img {
    width: 1.58rem;
    height: 1.58rem;
  }

  .profile-panel {
    right: 0;
    width: min(332px, calc(100vw - 1rem));
  }

  .menu-toggle {
    order: 2;
    flex: 0 0 84px;
    margin-left: auto;
    min-width: 84px;
    height: 34px;
    border-width: 1.8px;
    border-radius: var(--rect-radius);
    font-size: 0.9rem;
    padding: 0 0.25rem;
  }

  .main-nav {
    z-index: 6100;
  }

  body.mobile-nav-open .main-nav,
  .main-nav.open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .login-icon-img {
    width: 1.58rem;
    height: 1.58rem;
  }

  .hero-content {
    padding-top: 112px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .inner-hero {
    min-height: 320px;
  }

  .inner-hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1.75rem;
    padding-top: 0;
    padding-bottom: 0;
  }

  .inner-hero-title {
    font-size: 26px;
    line-height: 1.18;
    font-weight: 500;
    letter-spacing: 0;
    max-width: 18ch;
  }

  .umrah-intro {
    padding: 2.2rem 0 1.8rem;
  }

  .umrah-intro p,
  .umrah-section-head p {
    font-size: 15px;
    line-height: 1.55;
  }

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

  .umrah-travel-way,
  .umrah-resources {
    padding: 2rem 0;
  }

  .umrah-resources.about-nav-section {
    padding: 0 0 4.2rem;
  }

  .umrah-service-card {
    min-height: 0;
  }

  .umrah-special-head {
    margin-bottom: 1rem;
  }

  .umrah-special-head p {
    font-size: 15px;
  }

  .umrah-special-card {
    min-height: 132px;
    grid-template-columns: minmax(0, 1fr) 84px;
    gap: 1rem;
    padding: 0.85rem;
  }

  .umrah-special-copy {
    gap: 0.7rem;
  }

  .umrah-special p:not(.umrah-special-kicker) {
    font-size: 13px;
  }

  .umrah-special-media {
    width: 84px;
    height: 84px;
  }

  .umrah-packages {
    padding: 0;
  }

  .inner-status {
    padding: 2.35rem 0 2.85rem;
  }

  .inner-status-text {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .back-home-btn {
    width: 180px;
    height: 46px;
    font-size: 15px;
  }

  .visa-service-status {
    gap: 1.45rem;
  }

  .visa-service-icon {
    width: 96px;
    height: 96px;
  }

  .visa-service-title {
    font-size: 2.65rem;
  }

  .visa-service-message {
    max-width: 30ch;
    margin-inline: auto;
    line-height: 1.5;
  }

  .visa-service-home {
    margin-top: 1rem;
    font-size: 1.35rem;
  }

  .package-detail-shell {
    width: min(100% - 2rem, var(--max));
    padding: 6.7rem 0 3.2rem;
  }

  .package-detail-kicker {
    font-size: 12px;
  }

  .package-detail-content > h2 {
    font-size: 28px;
  }

  .package-deposit-panel {
    grid-template-columns: minmax(118px, 42%) minmax(0, 1fr);
    gap: 1rem;
    height: auto;
    min-height: 0;
    padding: 1rem;
  }

  .package-deposit-copy h3 {
    font-size: 16px;
    line-height: 1.22;
    margin-bottom: 0.5rem;
  }

  .package-deposit-copy p {
    font-size: 14px;
    line-height: 1.35;
  }

  .package-reserve-btn {
    width: 100%;
    min-width: 0;
    height: 46px;
    min-height: 46px;
    margin-top: 0.95rem;
    padding: 0 1rem;
    font-size: 13px;
  }

  .package-deposit-media {
    order: -1;
    width: 100%;
    min-height: 0;
    height: 100%;
    aspect-ratio: 3 / 4;
    align-self: stretch;
  }

  .package-included-panel,
  .package-summary-card {
    padding: 1rem;
  }

  .package-included-panel {
    margin-top: 0.65rem;
    padding-top: 0;
  }

  .package-summary-card {
    order: 1;
  }

  .package-included-panel h3 {
    font-size: 28px;
    margin-bottom: 1.4rem;
  }

  .package-included-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .package-included-card {
    min-height: 0;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    justify-items: start;
    justify-self: stretch;
    align-items: center;
    align-content: start;
    column-gap: 0.62rem;
    row-gap: 0.28rem;
    width: 100%;
    padding: 0;
  }

  .package-included-card::before {
    width: 56px;
    height: 56px;
  }

  .package-included-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 24px;
    height: 24px;
    margin-bottom: 0;
    padding: 0;
  }

  .package-included-title {
    grid-column: 2;
    grid-row: 1;
    font-size: 18px;
    line-height: 1.08;
  }

  .package-included-note {
    grid-column: 2;
    grid-row: 2;
    font-size: 11px;
    line-height: 1.08;
  }

  .package-included-card::after {
    content: "";
    display: block;
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: end;
    width: 9px;
    height: 9px;
    border-top: 1.6px solid #111418;
    border-right: 1.6px solid #111418;
    transform: rotate(45deg);
  }

  .package-explore-head h2 {
    font-size: 28px;
  }

  .package-explore-section {
    margin-top: 2rem;
  }

  .package-explore-head {
    margin-bottom: 1.35rem;
  }

  .package-services-panel {
    margin-top: 0.7rem;
    padding: 0;
  }

  .package-services-card {
    min-height: 230px;
    padding: 1rem;
  }

  .package-services-card-copy {
    max-width: none;
    padding-left: 0;
  }

  .package-services-card-title {
    font-size: 22px;
    white-space: normal;
  }

  .package-services-card-text {
    font-size: 14px;
    line-height: 1.45;
  }

  .package-services-card-action {
    width: 100%;
    min-height: 46px;
  }

  .package-services-card::before {
    background: linear-gradient(
      90deg,
      rgba(17, 20, 29, 0.98) 0%,
      rgba(17, 20, 29, 0.88) 58%,
      rgba(17, 20, 29, 0.42) 100%
    );
  }

  .package-services-drawer-head {
    margin-bottom: 1.45rem;
  }

  .package-services-copy h3 {
    font-size: 25px;
  }

  .package-services-copy p {
    font-size: 16px;
  }

  .package-services-legend {
    display: flex;
    gap: 0.52rem 0.85rem;
  }

  .package-services-grid {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .package-services-column {
    gap: 1.3rem;
  }

  .package-service-group h4 {
    font-size: 19px;
  }

  .package-service-item {
    font-size: 14px;
  }

  .package-services-drawer-panel {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100dvh;
    max-height: none;
    border-radius: 0;
    box-shadow: none;
    transform: translateY(100%);
  }

  .package-services-drawer.is-open .package-services-drawer-panel {
    transform: translateY(0);
  }

  .package-drawer-header {
    min-height: 64px;
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    padding: 0 0.8rem;
    border-radius: 0;
  }

  .package-drawer-header h2 {
    font-size: 16px;
  }

  .package-drawer-body {
    padding: 1.15rem 1rem 1.4rem;
  }

  .package-drawer-close {
    width: 34px;
    height: 34px;
    font-size: 24px;
  }

  .package-explore-section {
    width: 100%;
    min-width: 0;
    overflow: visible;
  }

  .package-explore-section .package-grid {
    --package-rail-inset: clamp(1rem, 5vw, 1.5rem);
    display: flex;
    width: auto;
    min-width: 0;
    max-width: none;
    gap: 0.9rem;
    overflow-x: auto;
    overflow-y: visible;
    padding: 0.45rem calc(((100vw - 100%) / 2) + var(--package-rail-inset)) 1rem;
    margin: 1.1rem calc((100vw - 100%) / -2) -1rem;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: calc(((100vw - 100%) / 2) + var(--package-rail-inset));
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .package-explore-section .package-grid::-webkit-scrollbar {
    display: none;
  }

  .package-explore-section .package-card {
    flex: 0 0 min(78vw, 304px);
    scroll-snap-align: start;
  }

  .package-detail-drawer-panel {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100dvh;
    max-height: none;
    border-radius: 0;
    box-shadow: none;
    transform: translateY(100%);
  }

  .package-detail-drawer.is-open .package-detail-drawer-panel {
    transform: translateY(0);
  }

  .package-detail-drawer-head {
    gap: 0.85rem;
  }

  .package-detail-drawer-media {
    border-radius: 16px;
    aspect-ratio: 16 / 9;
  }

  .package-detail-drawer-head h3 {
    font-size: 21px;
  }

  .package-detail-drawer-copy,
  .package-detail-drawer-list li {
    font-size: 16px;
  }

  .package-detail-drawer-custom {
    gap: 0.9rem;
  }

  .package-hotel-card {
    grid-template-columns: 1fr;
    gap: 0.95rem;
    padding: 0.85rem;
    border-radius: 16px;
  }

  .package-hotel-media {
    border-radius: 16px;
    min-height: 0;
    aspect-ratio: 16 / 9.4;
  }

  .package-hotel-badge {
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.54rem 0.78rem;
    font-size: 12px;
  }

  .package-hotel-title {
    font-size: 23px;
  }

  .package-hotel-content {
    padding: 0 0.15rem 0.25rem;
  }

  .package-hotel-details {
    margin-top: 0.85rem;
  }

  .package-hotel-detail {
    font-size: 15px;
  }

  .package-flight-detail {
    width: 100%;
    gap: 1.45rem;
    padding-top: 0;
  }

  .package-flight-logo {
    width: min(205px, 68%);
  }

  .package-flight-routes {
    gap: 1rem;
  }

  .package-flight-route {
    grid-template-columns: minmax(0, 1fr) 62px minmax(0, 1fr);
    gap: 0.48rem;
  }

  .package-flight-city strong {
    font-size: 22px;
  }

  .package-flight-city span {
    font-size: 12px;
  }

  .package-flight-path {
    grid-template-columns: minmax(9px, 1fr) 23px minmax(9px, 1fr);
    gap: 0.28rem;
  }

  .package-flight-path img {
    width: 23px;
    height: 23px;
  }

  .package-flight-cabin {
    gap: 0.95rem;
  }

  .package-flight-cabin h3 {
    font-size: 24px;
  }

  .package-flight-perks {
    gap: 0.9rem;
  }

  .package-flight-perk {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 0.68rem;
    font-size: 14px;
  }

  .package-flight-perk-icon {
    transform: none;
    transform-origin: left center;
  }

  .package-flight-notes {
    gap: 0.78rem;
    margin-top: 0.1rem;
    padding: 0;
  }

  .package-flight-notes li {
    font-size: 13px;
  }

  .package-transfer-detail {
    gap: 0.85rem;
  }

  .package-transfer-card {
    grid-template-columns: minmax(118px, 36%) minmax(0, 1fr);
    gap: 0;
    padding: 0;
    border-radius: 13px;
  }

  .package-transfer-media {
    width: 100%;
    min-height: 156px;
    border-radius: 0;
  }

  .package-transfer-content {
    padding: 0.72rem 0.78rem;
  }

  .package-transfer-content h3 {
    font-size: 20px;
  }

  .package-transfer-label {
    min-height: 23px;
    padding: 0 0.58rem;
    font-size: 11px;
  }

  .package-transfer-meta {
    gap: 0.42rem 0.75rem;
    margin-top: 0.62rem;
  }

  .package-transfer-meta li {
    font-size: 12px;
  }

  .package-transfer-content p {
    font-size: 13px;
    line-height: 1.35;
    margin-top: 0.58rem;
  }

  .package-price-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .package-price-row strong {
    justify-items: start;
    font-size: 24px;
  }

  .package-summary-card p {
    font-size: 14px;
    line-height: 1.25;
  }

  .package-book-btn {
    width: 148px;
    justify-self: start;
  }

  .history-page .inner-hero-image,
  .travel-updates-page .inner-hero-image,
  .umrah-page .inner-hero-image,
  .other-services-page .inner-hero-image,
  .passport-processing-page .inner-hero-image {
    object-position: 58% center;
  }

  .history-directory {
    padding: 2.15rem 0 3.7rem;
  }

  .other-services-directory {
    padding: 2.15rem 0 3.7rem;
  }

  .other-services-intro {
    margin-bottom: 1.3rem;
  }

  .other-services-intro p {
    font-size: 16px;
    line-height: 1.52;
  }

  .history-head {
    margin-bottom: 2.3rem;
  }

  .history-head p {
    font-size: 16px;
    line-height: 1.52;
  }

  .history-story-list {
    gap: 1.9rem;
    padding: 1rem;
    background: #fff;
    border-radius: 16px;
  }

  .history-story-card,
  .history-story-card-reverse {
    grid-template-columns: 1fr;
    gap: 0.95rem;
    padding-bottom: 1.9rem;
    border-bottom: 1px solid #dfe5ef;
  }

  .history-story-card:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .history-story-card-reverse .history-story-copy,
  .history-story-card-reverse .history-story-media {
    order: initial;
  }

  .history-story-media,
  .history-story-card-reverse .history-story-media {
    order: -1;
  }

  .history-story-copy {
    padding: 0;
  }

  .history-story-copy h2 {
    font-size: 20px;
    margin-bottom: 0.78rem;
    gap: 0.7rem;
  }

  .history-story-copy h2::before {
    width: 2.18rem;
    height: 2.18rem;
    font-size: 0.72rem;
  }

  .history-story-copy p,
  .history-story-copy blockquote {
    font-size: 15px;
    line-height: 1.5;
  }

  .history-story-media,
  .history-story-media img {
    min-height: 220px;
  }

  .history-story-media {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 10;
  }

  .history-story-media img {
    object-position: center bottom;
  }

  .services-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.5rem;
  }

  .services-section .services-strip {
    width: calc(100vw - 1.5rem);
    max-width: 390px;
    margin-left: 50%;
    margin-right: 0;
    transform: translateX(-50%);
  }

  .auth-nav-wrap {
    min-height: 56px;
  }

  body.login-page {
    background: #fff;
  }

  body.login-page .top-stack,
  body.login-page .footer {
    display: none;
  }

  body.login-page main.auth-main {
    min-height: 100svh;
    display: block;
    padding: 0;
  }

  .auth-shell {
    position: relative;
    width: 100%;
    max-width: none;
    min-height: 100svh;
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    padding: 1rem clamp(1.45rem, 6vw, 1.7rem) 2rem;
  }

  .js body.login-page .auth-shell.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .auth-close {
    position: absolute;
    top: 1rem;
    right: 0.75rem;
    width: 30px;
    height: 30px;
    display: inline-grid;
    place-items: center;
    color: #1f242b;
    background: transparent;
    border: 0;
    line-height: 1;
  }

  .auth-close::before,
  .auth-close::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background: currentColor;
  }

  .auth-close::before {
    transform: rotate(45deg);
  }

  .auth-close::after {
    transform: rotate(-45deg);
  }

  .auth-close:focus-visible {
    outline: 2px solid rgba(38, 132, 198, 0.45);
    outline-offset: 2px;
  }

  .auth-intro {
    margin: 2.85rem auto 1.35rem;
    max-width: none;
    padding-inline: 2.1rem;
  }

  .auth-intro h1 {
    margin-bottom: 0;
    color: #1f242b;
    font-size: 21px;
    line-height: 1.22;
    text-align: center;
  }

  .auth-brand-script {
    display: block;
    margin-top: 0.16rem;
    margin-left: 0;
    font-family: "Great Vibes", cursive;
    font-size: 1.46em;
    font-weight: 400;
    letter-spacing: 0.01em;
  }

  .auth-intro p {
    display: none;
  }

  .auth-card {
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
  }

  .auth-login {
    padding: 0;
  }

  .auth-login h2 {
    display: none;
  }

  .auth-join {
    border-left: 0;
    border-top: 1px solid #d4d8de;
    margin-top: 0.5rem;
    padding: 2.45rem 0 0;
    align-items: stretch;
    text-align: left;
  }

  .auth-join h2 {
    font-size: 0.9rem;
    line-height: 1.35;
    margin: 0 0 1rem;
    max-width: none;
    font-weight: 400;
  }

  .auth-join p {
    display: none;
  }

  .auth-field input {
    min-height: 58px;
    border-color: #cfd7e2;
    border-radius: 12px;
    padding: 0.72rem 0.9rem;
    font-size: 1rem;
  }

  .auth-field input:focus {
    outline: 2px solid rgba(38, 132, 198, 0.4);
    outline-offset: 2px;
    border-color: #cfd7e2;
  }

  .auth-help-link {
    justify-self: start;
    color: #000;
    font-size: 0.88rem;
    text-decoration-color: currentColor;
    order: 5;
  }

  .auth-check {
    order: 3;
    margin: 0;
    font-size: 0.9rem;
    gap: 0.5rem;
  }

  .auth-check input {
    width: 22px;
    height: 22px;
  }

  .auth-form {
    gap: 1.08rem;
  }

  .auth-field {
    order: 1;
  }

  .auth-field + .auth-help-link + .auth-field {
    order: 2;
  }

  .auth-login-btn {
    order: 4;
    min-height: 48px;
    border-radius: 12px;
    margin-top: 0.1rem;
    font-size: 0.95rem;
  }

  .auth-form-feedback {
    order: 7;
  }

  .auth-join-btn {
    width: 100%;
    min-height: 40px;
    border-color: #cfd7e2;
    border-radius: 12px;
    font-size: 0.95rem;
  }

  .partners-directory {
    padding: 2rem 0 3.2rem;
  }

  .partners-head h2 {
    font-size: 20px;
    margin: 0.75rem 0 0;
  }

  .partners-head p {
    font-size: 16px;
    line-height: 1.45;
  }

  .partners-panel {
    border-radius: 12px;
    padding: 0.85rem;
  }

  .partner-card {
    grid-template-columns: 1fr;
    gap: 0.72rem;
    min-height: auto;
    padding: 0.85rem;
  }

  .partner-brand {
    min-height: 64px;
  }

  .partner-logo {
    max-width: 136px;
    max-height: 50px;
  }

  .partner-copy h3 {
    font-size: 1.3rem;
    margin-bottom: 0.42rem;
  }

  .partner-copy p {
    font-size: 16px;
  }

  .team-directory {
    padding: 2rem 0 3.2rem;
  }

  .team-head h2 {
    font-size: 20px;
    margin: 0.75rem 0 0;
  }

  .team-head p {
    font-size: 16px;
    line-height: 1.45;
  }

  .team-panel {
    border-radius: 12px;
    padding: 0.85rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

  .team-card {
    min-height: auto;
    grid-template-columns: 112px minmax(0, 1fr);
    padding: 0;
    gap: 0;
  }

  .team-copy h3 {
    font-size: 1rem;
    margin-bottom: 0.15rem;
  }

  .team-role {
    font-size: 16px;
  }

  .team-role-note {
    font-size: 0.88rem;
    line-height: 1.4;
  }

  .team-avatar {
    width: 100%;
    height: 100%;
  }

  .team-copy {
    padding: 0.78rem 0.82rem 0.82rem 0.88rem;
  }

  .team-cta {
    margin-top: 0.9rem;
    border-radius: 12px;
    padding: 0.85rem;
  }

  .team-cta p {
    font-size: 16px;
  }

  .team-cta-actions {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.55rem;
  }

  .team-cta-link {
    min-height: 40px;
    font-size: 0.9rem;
    padding: 0 0.95rem;
  }

  .help-center {
    width: min(100% - 2rem, var(--max));
    padding: 2rem 0 3.2rem;
  }

  .help-welcome {
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.4rem;
  }

  .help-welcome h2 {
    font-size: 17px;
    margin-bottom: 0.82rem;
  }

  .help-welcome p {
    font-size: 15px;
    line-height: 1.5;
  }

  .help-actions-grid {
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

  .help-action-card {
    min-height: 0;
    border-radius: 12px;
    padding: 0.9rem;
    gap: 0.62rem;
  }

  .help-action-copy h3 {
    font-size: 17px;
    margin-bottom: 0.35rem;
  }

  .help-action-copy p {
    font-size: 14px;
    line-height: 1.42;
  }

  .refund-support {
    width: min(100% - 2rem, var(--max));
    padding: 2rem 0 1.2rem;
  }

  .refund-support-head h2,
  .refund-policy-heading h2 {
    font-size: 24px;
  }

  .refund-action-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .refund-action-card {
    min-height: 56px;
    border-radius: 10px;
    padding: 0.88rem 1rem;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-rows: 1fr;
    align-items: center;
    gap: 0.78rem;
  }

  .refund-action-icon {
    grid-column: auto;
    width: 1.25rem;
    height: 1.25rem;
  }

  .refund-action-title {
    align-self: center;
    font-size: 15px;
    line-height: 1.2;
  }

  .refund-action-arrow {
    align-self: center;
    width: 1.45rem;
    height: 1.45rem;
    padding: 0.08rem;
  }

  .refund-opening {
    padding: 0;
  }

  .refund-opening p,
  .refund-policy-heading p:not(.refund-kicker),
  .refund-policy-card p,
  .refund-policy-list li {
    font-size: 15px;
    line-height: 1.52;
  }

  .refund-policy-section {
    width: min(100% - 2rem, var(--max));
    padding-bottom: 3.2rem;
  }

  .refund-policy-panel {
    border-radius: 12px;
    padding: 1rem;
  }

  .refund-policy-card {
    padding: 1rem 0;
    min-width: 0;
  }

  .refund-policy-card h3 {
    font-size: 18px;
  }

  .refund-table-wrap {
    overflow-x: visible;
  }

  .refund-table {
    min-width: 0;
    width: 100%;
    table-layout: fixed;
  }

  .refund-table thead {
    display: table-header-group;
  }

  .refund-table tbody {
    display: table-row-group;
  }

  .refund-table tr {
    display: table-row;
  }

  .refund-table tr:nth-child(odd) td {
    background: #f4f8fc;
  }

  .refund-table th,
  .refund-table td {
    display: table-cell;
    width: 50%;
  }

  .refund-table th,
  .refund-table td {
    padding: 0.86rem 0.92rem;
    border-bottom: 1px solid #d9e1eb;
    font-size: 15px;
    line-height: 1.42;
    overflow-wrap: anywhere;
    vertical-align: middle;
  }

  .refund-table th {
    background: #2684c6;
    color: #fff;
    font-weight: 700;
  }

  .refund-table td::before {
    display: none;
    content: none;
  }

  .refund-table-note {
    overflow-wrap: anywhere;
  }

  .milestones-directory {
    padding: 2rem 0 3.2rem;
  }

  .milestones-page .milestones-directory.container {
    width: min(100% - 3rem, var(--max));
  }

  .milestones-opening {
    margin-bottom: 1.3rem;
  }

  .milestones-opening p {
    font-size: 16px;
    line-height: 1.52;
  }

  .milestones-page .milestone-carousel-shell {
    margin-top: 2.1rem;
    padding: 2.6rem 0 0;
    border-top: 1px solid #d9dde5;
  }

  .milestone-carousel-nav {
    display: none;
  }

  .milestone-news-grid {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.2rem 0.2rem 0.38rem;
    scrollbar-width: thin;
  }

  .milestone-news-card {
    flex: 0 0 82%;
    min-width: 82%;
  }

  .milestones-page .milestone-news-grid {
    gap: 1rem;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overscroll-behavior-x: contain;
  }

  .milestones-page .milestone-news-grid::-webkit-scrollbar {
    display: none;
  }

  .milestones-page .milestone-news-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .milestone-news-media {
    margin-bottom: 0.72rem;
  }

  .milestones-page .milestone-news-media {
    margin-bottom: 1.1rem;
  }

  .milestones-page .milestone-news-meta {
    margin-bottom: 0.95rem;
    font-size: 15px;
  }

  .milestone-news-title {
    font-size: 20px;
    margin-bottom: 0.55rem;
  }

  .milestones-page .milestone-news-title {
    margin-bottom: 0.95rem;
    line-height: 1.14;
  }

  .milestone-news-excerpt {
    font-size: 16px;
    line-height: 1.5;
  }

  .milestones-page .milestone-news-excerpt {
    line-height: 1.56;
  }

  .milestone-carousel-dots {
    margin-top: 1.15rem;
    gap: 0.55rem;
  }

  .milestones-page .milestone-carousel-dots {
    margin-top: 2.8rem;
  }

  .milestone-dot {
    width: 9px;
    height: 9px;
  }

  .milestones-view-all-wrap {
    margin-top: 1.25rem;
  }

  .milestones-view-all {
    min-width: 175px;
    height: 46px;
    font-size: 15px;
  }

  .milestones-archive {
    padding: 2rem 0 3.2rem;
  }

  .milestones-archive.container {
    width: min(100% - 3rem, var(--max));
  }

  .milestone-month-title {
    font-size: 1.7rem;
    margin-bottom: 1.05rem;
  }

  .milestone-list {
    gap: 0;
  }

  .milestone-year-separator {
    font-size: 1.55rem;
    padding-top: 0.1rem;
    margin-bottom: 0.8rem;
    gap: 0.36rem;
  }

  .milestone-year-separator::after {
    font-size: 0.52em;
  }

  .milestone-year-separator:not(:first-child) {
    margin-top: 1rem;
    padding-top: 1.75rem;
  }

  .milestone-year-separator + .milestone-list-item {
    padding-top: 1.1rem;
  }

  .milestone-list-item {
    grid-template-columns: 1fr;
    gap: 0.95rem;
    padding: 1.6rem 0;
    border-top: 1px solid #d9dde5;
  }

  .milestone-list-image {
    max-width: 100%;
  }

  .milestone-list-copy .milestone-news-meta {
    margin-bottom: 0.72rem;
  }

  .milestone-list-title {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 0.72rem;
  }

  .milestone-list-excerpt {
    font-size: 16px;
    line-height: 1.55;
  }

  .partners-page .inner-hero-content,
  .history-page .inner-hero-content,
  .travel-updates-page .inner-hero-content,
  .umrah-page .inner-hero-content,
  .other-services-page .inner-hero-content,
  .passport-processing-page .inner-hero-content,
  .team-page .inner-hero-content,
  .help-page .inner-hero-content,
  .refund-page .inner-hero-content,
  .milestones-page .inner-hero-content,
  .milestones-archive-page .inner-hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2rem;
    padding-top: 0;
    padding-bottom: 0;
  }

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

  .packages.container,
  .services-section.container {
    width: min(100% - 4.2rem, var(--max));
  }

  .package-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  #packages .package-grid,
  .umrah-packages .package-grid {
    --package-rail-inset: clamp(1rem, 5vw, 1.5rem);
    display: flex;
    width: auto;
    min-width: 0;
    max-width: none;
    gap: 0.9rem;
    overflow-x: auto;
    overflow-y: visible;
    padding: 0.45rem calc(((100vw - 100%) / 2) + var(--package-rail-inset)) 1rem;
    margin: 1.1rem calc((100vw - 100%) / -2) -1rem;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: calc(((100vw - 100%) / 2) + var(--package-rail-inset));
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  #packages .package-grid::-webkit-scrollbar,
  .umrah-packages .package-grid::-webkit-scrollbar {
    display: none;
  }

  #packages .package-card,
  .umrah-packages .package-card {
    flex: 0 0 min(78vw, 304px);
    scroll-snap-align: start;
  }

  .footer {
    margin-top: 3rem;
    padding-top: 2.85rem;
  }

  .footer-grid {
    gap: 1.45rem;
    padding-bottom: 2.45rem;
    justify-items: start;
    text-align: left;
    width: min(100% - 1rem, 320px);
    margin-inline: auto;
    transform: translateX(8px);
  }

  .footer-brand {
    justify-content: flex-start;
    width: 100%;
  }

  .footer-col,
  .footer-contact,
  .footer-social-col {
    align-items: flex-start;
    width: 100%;
  }

  .footer-grid h4,
  .footer-col a {
    text-align: left;
  }

  .footer-brand-logo {
    width: 80px;
  }

  .footer-grid h4 {
    font-size: 1.04rem;
  }

  .footer-col a {
    font-size: 0.93rem;
  }

  .footer-location {
    font-size: 0.9rem;
    max-width: 32ch;
    text-align: left;
  }

  .footer-social-title {
    font-size: 0.94rem;
  }

  .footer-social a {
    width: 1.84rem;
    height: 1.84rem;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .copyright {
    font-size: 0.82rem;
    padding: 0.9rem 0.8rem 0.98rem;
  }

  .whatsapp-help-widget {
    right: 28px;
    bottom: 28px;
    width: 58px;
    min-width: 58px;
    min-height: 58px;
    justify-content: center;
    gap: 0;
    border-radius: 50%;
    background: #fff;
    padding: 0;
    font-size: 0.86rem;
    box-shadow: 0 8px 22px rgba(17, 31, 42, 0.18);
  }

  .whatsapp-help-widget-text {
    display: none;
  }

  .whatsapp-help-widget-icon {
    width: 46px;
    height: 46px;
    font-size: 0.92rem;
  }

  .whatsapp-help-widget-icon img {
    width: 46px;
    height: 46px;
  }

  .reviews-grid {
    margin-top: 0;
    --reviews-gap: 0.85rem;
    gap: 0.85rem;
  }

  .reviews-grid .review-card {
    flex: 0 0 min(86vw, 360px);
    scroll-snap-align: start;
  }

  .reviews-over,
  .reviews-line-two {
    font-size: 26px;
  }

  .reviews-count,
  .reviews-count-plus {
    font-size: 42px;
  }

  .review-popup {
    padding: 0.75rem;
  }

  .review-popup-dialog {
    border-radius: var(--rect-radius);
    padding: 1rem 0.95rem 0.9rem;
    width: min(100%, 360px);
    max-height: min(62vh, 480px);
  }

  .review-popup-title {
    font-size: 1.05rem;
  }

  .review-popup-text {
    font-size: 0.95rem;
    line-height: 1.48;
    max-height: none;
  }

  .about-grid {
    grid-template-columns: repeat(2, minmax(128px, 1fr));
    justify-content: center;
    gap: 1.4rem;
  }

  .about-photo {
    width: min(100%, 134px);
  }

  .about-item h3 {
    font-size: 16px;
    font-weight: 400;
  }

  .about-section .section-title h2 {
    font-size: 32px;
    color: #000;
    font-weight: 400;
  }

  .about-section .section-title p {
    font-size: 16px;
    font-weight: 400;
  }

  .package-card {
    aspect-ratio: 382 / 340;
  }

  .package-actions {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    gap: 0.72rem;
  }

  .package-card.is-open .package-info {
    transform: translateY(-3.7rem);
  }

  #packages .section-title h2 {
    font-size: 28px;
  }

  .services-section .section-title h2 {
    font-size: 28px;
  }

  .package-action-book {
    width: 148px;
    min-height: 38px;
    font-size: 16px;
  }

  .package-action-details {
    font-size: 16px;
  }

  .outline-btn {
    width: 200px;
    min-width: 200px;
    height: 50px;
    font-size: 16px;
  }

  .service-box {
    min-height: 136px;
    padding: 0.85rem 0.65rem;
  }

  .service-icon {
    width: 42px;
    height: 42px;
  }

  .service-box h3 {
    font-size: 0.9rem;
    line-height: 1.03;
  }

  .service-box + .service-box {
    border-left: none;
    border-top: none;
  }

  .service-box + .service-box::before {
    display: block;
    left: 0;
    top: 24%;
    bottom: 24%;
    width: 1px;
    height: auto;
  }

  .service-box:nth-child(2n + 1)::before {
    display: none;
  }

  .service-box:nth-child(n + 3)::after {
    content: "";
    position: absolute;
    top: 0;
    left: 18%;
    right: 18%;
    height: 1px;
    background: #d8dde5;
  }

  .service-box:last-child {
    grid-column: 1 / -1;
  }

  .booking-tabs {
    display: flex;
    width: calc(100% - 1.56rem);
    max-width: none;
    margin: 0.7rem 0.78rem calc(var(--booking-tab-overlap) * -1);
    gap: 0.18rem;
    padding: 0.18rem;
  }

  .booking-tab {
    flex: 1 1 0;
    justify-content: center;
    min-width: 0;
    min-height: 36px;
    font-size: 14px;
    padding-inline: 0.4rem;
  }

  .booking-tab:not(.is-active),
  .booking-tab:not(.is-active):hover,
  .booking-tab:not(.is-active):focus,
  .booking-tab:not(.is-active):active {
    color: #68717b;
  }

  .booking-tab.is-active,
  .booking-tab.is-active:hover,
  .booking-tab.is-active:focus,
  .booking-tab.is-active:active {
    color: #fff;
  }

  .why-card {
    padding: 1.05rem 0;
    border-radius: 0;
  }

  .why-copy {
    margin-inline: 0.85rem;
  }

  .why-card-rail {
    gap: 0.9rem;
  }

  .why-story-card {
    flex-basis: min(82vw, 292px);
    min-height: 255px;
  }

  .why-story-content {
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.88rem;
  }

  .why-story-content strong {
    font-size: 17px;
  }

  .why-card-controls {
    gap: 0.58rem;
    display: none;
  }

  .why-card-nav {
    width: 32px;
    height: 32px;
  }

  .ghost-btn {
    width: 151px;
    height: 50px;
    font-size: 16px;
    justify-self: center;
  }

  .why-maqam-page .inner-hero {
    min-height: 320px;
  }

  .why-maqam-page .inner-hero::after {
    height: 112px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 390 112' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath opacity='0.41' d='M-50 70C20 88 80 84 135 66C200 42 245 23 310 20C360 18 420 38 500 56L500 112L-50 112Z' fill='%23f7faff'/%3E%3Cpath opacity='0.41' d='M-50 60C20 82 80 82 135 74C200 58 245 34 310 31C360 29 420 40 500 52L500 112L-50 112Z' fill='%23f7faff'/%3E%3Cpath d='M-50 66C20 92 80 94 135 86C200 73 245 49 310 43C360 39 420 42 500 48L500 112L-50 112Z' fill='%23f7faff'/%3E%3C/svg%3E");
  }

  .why-maqam-page .inner-hero-overlay {
    height: 0;
    background: none;
  }

  .why-maqam-page .inner-hero-content {
    bottom: 4.8rem;
    z-index: 4;
    padding-top: 0;
  }

  .why-maqam-page .inner-hero-title {
    font-size: 28px;
    line-height: 1.14;
    white-space: normal;
  }

  .why-maqam-page .inner-hero-title .why-title-mobile-break {
    display: block;
  }

  .why-reference-main {
    padding-bottom: 3rem;
  }

  .why-reference-page {
    width: min(100% - 2rem, var(--max));
  }

  .why-reference-head {
    padding-top: 2rem;
  }

  .why-reference-copy h2 {
    font-size: 28px;
  }

  .why-reference-copy p {
    font-size: 16px;
  }

  .why-reference-tabs {
    margin-top: 2rem;
    overflow: visible;
  }

  .why-reference-tablist {
    --why-tab-mobile-width: 214px;
    display: flex;
    gap: 0;
    margin-inline: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding-inline: max(0px, calc(50% - (var(--why-tab-mobile-width) / 2)));
    scroll-padding-inline: max(0px, calc(50% - (var(--why-tab-mobile-width) / 2)));
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    position: static;
    z-index: auto;
  }

  .why-reference-tablist::-webkit-scrollbar {
    display: none;
  }

  .why-reference-tab {
    flex: 0 0 var(--why-tab-mobile-width);
    min-height: 58px;
    justify-content: center;
    scroll-snap-align: center;
    padding: 0.8rem 0.95rem;
    font-size: 17px;
    background: #eee;
    border-radius: 0;
  }

  .why-reference-tab.is-left-of-active::after,
  .why-reference-tab.is-right-of-active::after,
  .why-reference-tab.is-active::before {
    display: none;
  }

  .why-reference-tab.is-active {
    border-radius: 0;
  }

  .why-reference-tab.is-active::after {
    content: "";
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 0;
    width: 68px;
    height: 3px;
    background: var(--primary);
    border-radius: 999px;
    transform: translateX(-50%);
    display: block;
    pointer-events: none;
  }

  .why-reference-panels {
    margin-top: 0;
    border-radius: 8px;
  }

  .why-reference-tab-panel {
    width: auto;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 1.1rem;
    padding: 1.2rem;
  }

  .why-reference-panel-copy {
    max-width: none;
  }

  .why-reference-panel-image {
    aspect-ratio: 16 / 10;
  }

  .app-wrap {
    gap: 0.7rem;
    padding: 2.5rem 0 1.15rem;
  }

  .app-copy {
    transform: translateX(14px);
  }

  .app-headline {
    max-width: 272px;
  }

  .app-kicker {
    font-size: 1.72rem;
  }

  .app-title {
    font-size: 2rem;
  }

  .store-badge img {
    width: 118px;
  }

  .app-visual {
    width: min(100%, 286px);
    transform: none;
  }

  #packages .section-title h2,
  .services-section .section-title h2,
  .why-copy h2,
  .app-title,
  .about-section .section-title h2,
  .reviews-section .section-title h2 {
    font-size: 28px;
  }
}

@media (max-width: 620px) {
  body.profile-panel-open {
    overflow: hidden;
  }

  .profile-page-backdrop {
    background: rgba(0, 0, 0, 0.58);
  }

  .profile-panel {
    position: fixed;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 253.8px;
    max-height: none;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
    transform: translateY(105%);
  }

  .profile-menu.is-open .profile-panel {
    transform: translateY(0);
  }

  .profile-panel-head {
    height: 135.8px;
    padding: 2rem 3.25rem 1.35rem 1rem;
  }

  .profile-stats {
    height: 57px;
  }

  .profile-action {
    height: 61px;
  }
}

@media (min-width: 621px) {
  .profile-panel {
    position: fixed;
    top: 106px;
    right: max(1.25rem, calc((100vw - var(--max)) / 2));
    width: min(385px, calc(100vw - 2.5rem));
    height: 242.8px;
  }
}


