:root {
  --navy: #141414;
  --blue: #8c6a2f;
  --sky: #fff7eb;
  --red: #c7942f;
  --gold: #f1d57a;
  --text: #1b1b1b;
  --muted: #676767;
  --white: #ffffff;
  --shadow: 0 18px 36px rgba(15, 15, 15, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: #f6f7fa;
  line-height: 1.6;
}

@media (hover: hover) and (pointer: fine) {
  body,
  a,
  button,
  [role="button"],
  .city-option,
  .ride-chip,
  .ride-link,
  .tab-btn,
  .nav-toggle {
    cursor: url("assets/cab-cursor.svg") 20 13, pointer;
  }

  input,
  textarea,
  select,
  option {
    cursor: auto;
  }
}

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

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

figure {
  margin: 0;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.header-inner > *,
.hero-inner > *,
.intro-grid > *,
.page-hero-inner > *,
.split-section > *,
.coverage-grid > *,
.cta-inner > *,
.footer-grid > * {
  min-width: 0;
}

.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: 0.76rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.16rem 0;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.topbar-phone-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(22, 15, 9, 0.08);
  box-shadow: 0 10px 20px rgba(22, 15, 9, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.5rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.logo-text {
  min-width: 0;
}

.logo-mark {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(2, 2, 2, 0.18);
}

.logo-text strong {
  display: block;
  font-size: 1.18rem;
  letter-spacing: 0.6px;
  color: var(--navy);
  line-height: 1.15;
}

.logo-text em {
  font-style: normal;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.15;
}

.site-nav {
  display: flex;
  gap: 1.35rem;
  font-weight: 500;
  font-size: 1.06rem;
}

.site-nav a {
  position: relative;
  padding-bottom: 0.28rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a:focus::after {
  width: 100%;
}

.site-nav a[aria-current="page"]::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  border: none;
  background: var(--navy);
  color: var(--white);
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  font-weight: 600;
}

.hero {
  position: relative;
  color: var(--white);
  min-height: 85vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero > .container {
  width: min(100%, 1440px);
  padding-inline: clamp(1rem, 2vw, 1.75rem);
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8, 8, 8, 0.74), rgba(36, 27, 13, 0.28));
}

.slide {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: var(--bg-position, center);
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.is-active {
  opacity: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: 2.5rem;
  align-items: start;
  padding: 4.5rem 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: var(--gold);
}

.hero-content {
  max-width: 44rem;
  width: 100%;
  min-width: 0;
}

.hero-content h1 {
  font-family: "Cinzel", serif;
  font-size: clamp(2.2rem, 3.7vw, 4rem);
  margin: 0.4rem 0 0.9rem;
  line-height: 1;
  max-width: 11.5em;
  text-wrap: pretty;
}

.hero-content h1 span {
  display: block;
  margin-top: 0;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.04em;
  font-size: 0.88em;
}

.hero-banner-subheading {
  margin: -0.1rem 0 1rem;
  max-width: 40rem;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  font-weight: 600;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

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

.hero-why-choose {
  margin-top: 1.5rem;
  width: min(100%, 36rem);
  padding: 0.85rem;
  border-radius: 6px;
  background: linear-gradient(145deg, rgba(17, 24, 39, 0.34), rgba(96, 74, 25, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 28px rgba(3, 7, 18, 0.16);
}

.hero-highlights-head {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hero-highlights-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-highlights-head p {
  margin: 0;
  max-width: 32rem;
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.hero-highlights {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.hero-highlight-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-height: 7.6rem;
  padding: 0.8rem 0.85rem 0.9rem;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 18px rgba(4, 8, 20, 0.12);
  overflow: hidden;
}

.hero-highlight-card::after {
  content: "";
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(241, 213, 122, 0.18), rgba(241, 213, 122, 0));
  pointer-events: none;
}

.hero-highlight-card > * {
  position: relative;
  z-index: 1;
}

.hero-highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  font-size: 0.82rem;
  background: linear-gradient(145deg, rgba(241, 213, 122, 0.26), rgba(255, 255, 255, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  color: #fff0c3;
}

.highlight-title {
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.2;
}

.highlight-sub {
  display: block;
  max-width: 22ch;
  font-size: 0.78rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
}

.intro-card.why-choose-panel {
  position: relative;
  overflow: hidden;
  padding: 1.15rem;
  border-radius: 18px;
  border: 1px solid rgba(168, 116, 24, 0.18);
  background: linear-gradient(140deg, #111111 0%, #1d1a14 56%, #3f2f14 100%);
  box-shadow: 0 22px 42px rgba(15, 15, 15, 0.16);
  color: var(--white);
  min-width: 0;
}

.intro-card.why-choose-panel::before,
.intro-card.why-choose-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.intro-card.why-choose-panel::before {
  right: -76px;
  bottom: -88px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 217, 125, 0.16), transparent 68%);
}

.intro-card.why-choose-panel::after {
  top: 20px;
  right: 20px;
  width: 82px;
  height: 82px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
}

.intro-card.why-choose-panel > * {
  position: relative;
  z-index: 1;
}

.why-choose-heading {
  margin: 0;
  max-width: 34rem;
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  line-height: 1.35;
  font-weight: 600;
  color: var(--white);
}

.why-choose-panel .hero-highlights {
  margin-top: 0.85rem;
  gap: 1rem;
}

.why-choose-panel .hero-highlight-card {
  min-height: 10.5rem;
  padding: 1rem 1rem 1.05rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.why-choose-panel .hero-highlight-card-wide {
  grid-column: 1 / -1;
}

.why-choose-panel .hero-highlight-icon {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.95rem;
  background: linear-gradient(145deg, rgba(241, 213, 122, 0.24), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  color: #fff0c3;
}

.why-choose-panel .highlight-title {
  font-size: 1.06rem;
  color: var(--white);
}

.why-choose-panel .highlight-sub {
  font-size: 0.9rem;
  max-width: none;
  color: rgba(255, 255, 255, 0.84);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  background: linear-gradient(135deg, #c7942f 0%, #f1d57a 100%);
  color: #111111;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(199, 148, 47, 0.28);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline.is-dark,
.offer-card .btn-outline {
  border-color: var(--red);
  color: var(--red);
}

.btn-outline.is-dark:hover,
.offer-card .btn-outline:hover,
.offer-card .btn-outline:focus {
  background: var(--red);
  color: var(--white);
}

.btn-small {
  padding: 0.35rem 1rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

.booking-card {
  background: var(--white);
  color: var(--text);
  border-radius: 6px;
  box-shadow: var(--shadow);
  padding: 1.5rem 1.45rem;
  width: 100%;
  max-width: 430px;
  justify-self: end;
}

.booking-header h2 {
  margin: 0 0 0.3rem;
  font-family: "Cinzel", serif;
  color: var(--navy);
}

.booking-tabs {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0 0.9rem;
  background: #efe5d5;
  border-radius: 8px;
  padding: 0.3rem;
}

.tab-btn {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  color: var(--muted);
}

.tab-btn.is-active {
  background: var(--navy);
  color: var(--white);
}

.booking-form {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 0.8rem;
}

.booking-form.is-active {
  display: grid;
}

.booking-form > .form-row:last-of-type,
.booking-form > .btn-block {
  grid-column: 1 / -1;
}

.form-row label {
  font-size: 0.85rem;
  color: var(--muted);
  display: block;
  margin-bottom: 0.22rem;
}

.form-row input,
.form-row select {
  width: 100%;
  padding: 0.54rem 0.75rem;
  border-radius: 6px;
  border: 1px solid #d8dde6;
  font-family: "Poppins", sans-serif;
}

.booking-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1rem;
}

.booking-note a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
}

.section {
  padding: clamp(3.2rem, 7vw, 4.5rem) 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(1.8rem, 2.2vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.hero-content h1,
.page-hero h1,
.section-heading h2,
.offer-card h3,
.service-showcase-card h3,
.destination-card h3,
.route-showcase-heading h2,
.coverage-panel h2,
.coverage-card-header h3 {
  overflow-wrap: anywhere;
}

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

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem 2.2rem;
  align-items: start;
}

.intro-copy {
  max-width: 34rem;
  padding-top: 0.5rem;
}

.intro-copy h2 {
  margin-top: 0;
  margin-bottom: 0.9rem;
}

.intro-copy p {
  margin: 0;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.checklist li {
  margin-bottom: 0.8rem;
  padding-left: 1.8rem;
  position: relative;
}

.checklist li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  position: absolute;
  left: 0;
  top: 0.55rem;
}

.intro-card {
  background: var(--sky);
  padding: 2rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.intro-contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.offers {
  background: #f8fafc;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 980px;
  margin: 0 auto;
  align-items: stretch;
}

.offer-card {
  background: transparent;
  border-radius: 24px;
  padding: 1.1rem;
  box-shadow: var(--shadow);
  border: 1px solid #e7eaef;
  display: flex;
  flex-direction: column;
  min-height: 33rem;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.45rem 0.75rem;
  margin-bottom: 0.42rem;
}

.offer-card-head > div {
  min-width: 0;
}

.offer-card-specs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0 0 0.95rem;
}

.offer-type {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.3;
}

.offer-capacity-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: rgba(199, 148, 47, 0.12);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.offer-card-photo-layout {
  --offer-media-height: 15.75rem;
  --offer-image-scale: 1.04;
  --offer-image-position: center 56%;
  padding: 1.1rem;
  min-height: 0;
  gap: 0.9rem;
}

.offer-card-media {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-card-photo-layout .offer-card-media {
  min-height: var(--offer-media-height);
  padding: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.offer-card-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  padding: 0;
}

.offer-card-photo-layout .offer-card-image {
  width: min(100%, 21rem);
  height: calc(var(--offer-media-height) - 1.45rem);
  max-width: none;
  object-fit: contain;
  object-position: var(--offer-image-position);
  transform: scale(var(--offer-image-scale));
  transform-origin: center center;
}

.offer-card-media-sedan {
  --offer-image-scale: 1.08;
}

.offer-card-media-etios {
  --offer-image-scale: 1.22;
}

.offer-card-media-ertiga {
  --offer-image-scale: 1.06;
}

.offer-card-media-kia {
  --offer-image-scale: 1.08;
}

.offer-card-media-innova {
  --offer-image-scale: 1.08;
}

.offer-card-media-innova-crysta {
  --offer-image-scale: 1.09;
}

.offer-card-media-tavera {
  --offer-image-scale: 1.16;
}

.offer-card-media-urbania {
  --offer-image-scale: 1.12;
  --offer-image-position: center 54%;
}

.offer-card-media-placeholder {
  min-height: 16rem;
}

.offer-card-image-placeholder {
  width: min(100%, 26.6rem);
  aspect-ratio: 16 / 10;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(255, 255, 255, 1));
  border: 1.5px dashed rgba(199, 148, 47, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.offer-card-photo-layout .offer-sub,
.offer-card-photo-layout ul {
  margin-bottom: 0;
}

.offer-card-photo-layout .offer-sub,
.offer-card-photo-layout ul,
.offer-card-photo-layout li {
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
}

.offer-card-photo-layout .offer-card-head {
  justify-content: center;
  margin-bottom: 0;
}

.offer-card-photo-layout .offer-card-head > div {
  width: 100%;
  text-align: center;
}

.offer-card-photo-layout .offer-type,
.offer-card-photo-layout h3 {
  text-align: center;
}

.offer-card-photo-layout .offer-type {
  margin-bottom: 0.35rem;
}

.offer-card-photo-layout h3 {
  margin-bottom: 0;
  min-height: 2.8em;
  display: grid;
  align-content: center;
}

.offer-card-photo-layout .offer-card-specs {
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 0;
}

.offer-card-photo-layout .offer-capacity-chip {
  margin-inline: 0;
}

.offer-card-photo-layout .offer-rate {
  margin-left: 0;
  align-items: flex-start;
}

.offer-card-photo-layout ul {
  flex: 1;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
  line-height: 1.45;
  display: grid;
  gap: 0.55rem;
}

.offer-card-photo-layout li + li {
  margin-top: 0;
}

.offer-card-photo-layout .btn,
.offer-card-photo-layout .btn-outline {
  width: 100%;
  min-height: 0;
  margin-inline: auto;
  padding: 0.92rem 1.3rem;
  border-width: 1.5px;
  border-color: rgba(199, 148, 47, 0.9);
  background: linear-gradient(135deg, rgba(241, 213, 122, 0.18), rgba(199, 148, 47, 0.08));
  color: #b47f1c;
  box-shadow: 0 10px 18px rgba(199, 148, 47, 0.12);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.offer-card-photo-layout .btn:hover,
.offer-card-photo-layout .btn:focus,
.offer-card-photo-layout .btn-outline:hover,
.offer-card-photo-layout .btn-outline:focus {
  background: linear-gradient(135deg, #c7942f 0%, #f1d57a 100%);
  border-color: transparent;
  color: #111111;
  box-shadow: 0 14px 24px rgba(199, 148, 47, 0.22);
}

.offer-card h3 {
  margin: 0 0 0.35rem;
  color: var(--navy);
}

.offer-sub {
  margin: 0 0 1rem;
  color: var(--muted);
  text-align: justify;
  text-justify: inter-word;
}

.offer-rate {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  flex-shrink: 0;
  gap: 0;
  margin-left: auto;
}

.offer-rate span {
  display: block;
  margin-bottom: 0.28rem;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.offer-rate strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.2;
  white-space: nowrap;
}

.offer-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1rem;
  margin: 0 0 1rem;
  align-items: start;
}

.offer-meta-item {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.offer-meta-label {
  display: block;
  margin-bottom: 0.28rem;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.offer-meta-item strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.4;
}

.offer-card ul {
  list-style: none;
  padding-left: 0;
  padding-right: 0;
  margin: 0;
  flex: 1;
  color: var(--text);
}

.offer-card li {
  display: grid;
  grid-template-columns: 0.7rem minmax(0, 1fr);
  align-items: start;
  column-gap: 0.55rem;
  padding-left: 0.35rem;
  padding-right: 0.35rem;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
}

.offer-card li::before {
  content: "\2022";
  text-align: center;
  line-height: 1.35;
}

.offer-card .btn,
.offer-card .btn-outline {
  margin-top: auto;
  width: 100%;
  min-height: 58px;
  text-align: center;
  line-height: 1.3;
}

.services {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

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

.ride-options .service-grid.services-grid-six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ride-options .service-grid.services-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.8rem;
  border: 1px solid #e8ebf1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services .service-card {
  display: flex;
  flex-direction: column;
}

.services .service-card p {
  flex: 1;
}

.service-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 126px;
  margin-top: 1rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(168, 116, 24, 0.18);
  background: rgba(168, 116, 24, 0.08);
  color: var(--red);
  font-size: 0.88rem;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.service-cta:hover,
.service-cta:focus {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

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

.services-showcase-heading {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.services-showcase-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(199, 148, 47, 0.1);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.services-showcase-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(199, 148, 47, 0.14);
}

.service-showcase-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.45rem;
}

.service-showcase-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 340px;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  background: #111111;
  box-shadow: 0 22px 48px rgba(15, 15, 15, 0.16);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.service-showcase-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 96px;
  height: 4px;
  background: linear-gradient(90deg, rgba(241, 213, 122, 0.95), rgba(140, 106, 47, 0.92));
  z-index: 2;
}

.service-showcase-card:hover,
.service-showcase-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 28px 56px rgba(15, 15, 15, 0.22);
}

.service-showcase-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03) brightness(0.9);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.airport-transfer-image {
  object-position: center 46%;
}

.service-showcase-card:hover .service-showcase-image,
.service-showcase-card:focus-within .service-showcase-image {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04) brightness(0.96);
}

.service-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.08) 10%, rgba(10, 10, 10, 0.24) 48%, rgba(10, 10, 10, 0.82) 100%);
  z-index: 1;
}

.service-showcase-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 1.4rem;
  color: var(--white);
}

.service-showcase-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.85rem;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-showcase-card h3 {
  margin: 0 0 0.55rem;
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1.2;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.26);
}

.service-showcase-card p {
  margin: 0 0 1.05rem;
  color: rgba(255, 255, 255, 0.84);
  max-width: 26rem;
}

.service-showcase-cta {
  min-width: 132px;
  justify-content: center;
  background: linear-gradient(135deg, #f4d67a, #c7942f);
  color: #111111;
  border: none;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
}

.service-showcase-cta:hover,
.service-showcase-cta:focus {
  background: #ffffff;
  color: var(--navy);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.26);
}

.ride-options {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.ride-options .section-heading {
  max-width: 720px;
  margin: 0 auto 2.7rem;
}

.ride-options .service-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.7rem;
}

.ride-options .service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.7rem;
  border-radius: 24px;
  border: 1px solid #ebe5da;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(15, 15, 15, 0.08);
}

.ride-options .service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--blue));
}

.ride-options .service-card::after {
  content: "";
  position: absolute;
  top: -48px;
  right: -28px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 116, 24, 0.16) 0%, rgba(168, 116, 24, 0) 72%);
  pointer-events: none;
}

.ride-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.ride-options .service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 12px 24px rgba(22, 15, 9, 0.18);
}

.ride-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(168, 116, 24, 0.08);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 600;
}

.ride-options .service-card h3 {
  margin: 0 0 0.7rem;
  color: var(--navy);
  font-size: 1.28rem;
}

.ride-options .service-card p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.ride-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.35rem;
  display: grid;
  gap: 0.55rem;
}

.ride-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #463521;
  line-height: 1.5;
}

.ride-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.48rem;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(168, 116, 24, 0.12);
  flex: 0 0 auto;
}

.ride-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  margin-inline: auto;
  width: fit-content;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.04);
  border: 1px solid #e4e7ec;
  color: var(--navy);
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.ride-link:hover,
.ride-link:focus {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.ride-link-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  margin-top: auto;
}

.ride-link-group-inline {
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.ride-link-group .ride-link {
  margin-top: 0;
}

.ride-link-group-inline .ride-link {
  flex: 1 1 11.25rem;
  width: auto;
  min-width: 11.25rem;
  max-width: 100%;
  white-space: nowrap;
  padding-inline: 0.85rem;
  font-size: 0.9rem;
  line-height: 1.2;
}

.ride-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0 0 1.2rem;
}

.ride-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.04);
  border: 1px solid #e4e7ec;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.ride-chip:hover,
.ride-chip:focus {
  background: var(--white);
  border-color: var(--red);
  transform: translateY(-2px);
}

.destinations {
  background: #f8fafc;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
}

.destination-grid:not(.destination-grid-featured) {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

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

.destination-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transform-origin: center bottom;
  will-change: transform, box-shadow;
  animation: destinationCardEnter 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--destination-card-delay, 0ms);
}

.destination-grid:not(.destination-grid-featured) .destination-card {
  min-height: 18rem;
  padding: 1.7rem;
  justify-content: flex-end;
}

.destination-grid .destination-card:nth-child(4n + 1) {
  --destination-card-delay: 60ms;
}

.destination-grid .destination-card:nth-child(4n + 2) {
  --destination-card-delay: 140ms;
}

.destination-grid .destination-card:nth-child(4n + 3) {
  --destination-card-delay: 220ms;
}

.destination-grid .destination-card:nth-child(4n + 4) {
  --destination-card-delay: 300ms;
}

.destination-card-link {
  color: inherit;
  text-decoration: none;
}

.destination-card > * {
  position: relative;
  z-index: 1;
}

.destination-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(168, 116, 24, 0.92), rgba(10, 33, 79, 0.85));
  background-size: 200% 100%;
  transform: scaleX(0.28);
  transform-origin: left center;
  transition: transform 0.45s ease;
  animation: destinationAccentFlow 6s ease-in-out infinite;
}

.destination-card::after {
  content: "";
  position: absolute;
  top: -3.5rem;
  right: -3rem;
  width: 9rem;
  height: 9rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(168, 116, 24, 0.14), rgba(168, 116, 24, 0));
  opacity: 0;
  transform: translate3d(18px, -10px, 0);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  z-index: 0;
}

.destination-card h3 {
  margin: 0;
  transition: color 0.25s ease, transform 0.25s ease;
}

.destination-card p {
  margin: 0 0 1.2rem;
  transition: color 0.25s ease;
}

.destination-grid:not(.destination-grid-featured) .destination-card p {
  margin-bottom: 0;
}

.destination-card .btn {
  margin-top: auto;
  margin-inline: auto;
  align-self: center;
  min-width: 11rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease,
    background-color 0.25s ease;
}

.destination-card-spotlight {
  color: var(--white);
  border: none;
  min-height: 260px;
  background:
    var(--destination-card-overlay, linear-gradient(180deg, rgba(11, 10, 8, 0.12) 18%, rgba(11, 10, 8, 0.64) 100%)),
    var(--destination-card-image) var(--destination-card-position, center) / var(--destination-card-size, cover) no-repeat;
  background-color: #102236;
}

.destination-grid:not(.destination-grid-featured) .destination-card-spotlight {
  min-height: 20rem;
}

.destination-card-spotlight::after {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 72%);
}

.destination-card-spotlight h3,
.destination-card-spotlight p {
  color: inherit;
  text-shadow: 0 2px 16px rgba(7, 18, 31, 0.45);
}

.destination-card-spotlight .btn {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.destination-card-spotlight .btn:hover,
.destination-card-spotlight .btn:focus-visible {
  border-color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.destination-card:hover::before,
.destination-card:focus-within::before {
  transform: scaleX(1);
}

.destination-card:hover::after,
.destination-card:focus-within::after {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.destination-card:hover h3,
.destination-card:focus-within h3 {
  color: var(--red);
  transform: translate3d(4px, -2px, 0);
}

.destination-card-spotlight:hover h3,
.destination-card-spotlight:focus-within h3 {
  color: var(--white);
  transform: translate3d(4px, -2px, 0);
}

.destination-card:hover .btn,
.destination-card:focus-within .btn {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(168, 116, 24, 0.12);
}

@keyframes destinationCardEnter {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(0.97);
  }

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

@keyframes destinationAccentFlow {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.specialization {
  background: var(--white);
}

.route-showcase {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.route-showcase::before,
.route-showcase::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.route-showcase::before {
  top: -110px;
  left: -90px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(184, 137, 43, 0.12), transparent 70%);
}

.route-showcase::after {
  right: -110px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(2, 2, 2, 0.08), transparent 72%);
}

.route-showcase-shell {
  position: relative;
  z-index: 1;
  padding: 2.2rem;
  border-radius: 30px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  box-shadow: 0 24px 48px rgba(15, 15, 15, 0.08);
}

.route-showcase-shell::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #b8892b, #020202);
  transform: scaleX(0.2);
  transform-origin: left center;
}

.route-showcase-head {
  max-width: 760px;
  margin: 0 auto 1.75rem;
  text-align: center;
}

.route-showcase-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(184, 137, 43, 0.08);
  color: #020202;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-showcase-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b8892b;
  box-shadow: 0 0 0 5px rgba(184, 137, 43, 0.12);
}

.route-showcase-heading {
  margin: 1rem 0 0.85rem;
}

.route-showcase-heading h2 {
  margin-bottom: 0.55rem;
}

.route-showcase-note {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.specialization-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.specialization-list span,
.specialization-list a {
  background: var(--sky);
  color: var(--navy);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-weight: 500;
}

.route-showcase .specialization-list {
  gap: 0.95rem;
}

.route-showcase .specialization-list span,
.route-showcase .specialization-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(20, 20, 20, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color: #1f160d;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 12px 22px rgba(15, 15, 15, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.route-showcase .specialization-list span::before,
.route-showcase .specialization-list a::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b8892b, #020202);
  flex: 0 0 auto;
}

.route-showcase .specialization-list span:hover,
.route-showcase .specialization-list a:hover,
.route-showcase .specialization-list a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(184, 137, 43, 0.22);
  box-shadow: 0 16px 28px rgba(22, 15, 9, 0.11);
}

.route-showcase .specialization-list a:focus-visible {
  outline: 2px solid rgba(184, 137, 43, 0.35);
  outline-offset: 3px;
}

.testimonials {
  background: #f8fafc;
  overflow: hidden;
}

.testimonial-slider {
  display: grid;
  gap: 1.35rem;
}

.testimonial-viewport {
  overflow: hidden;
  padding: 0.2rem;
}

.testimonial-track {
  display: flex;
  gap: 1.5rem;
  will-change: transform;
  transition: transform 0.65s ease;
}

.testimonial-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  background: var(--white);
  padding: 1.6rem;
  border-radius: 16px;
  box-shadow: none;
  border: 1px solid #edf1f5;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.25s ease;
}

.testimonial-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-quote-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  flex-shrink: 0;
  border-radius: 14px;
  color: var(--red);
  background: linear-gradient(135deg, rgba(241, 213, 122, 0.38), rgba(199, 148, 47, 0.12));
  border: 1px solid rgba(199, 148, 47, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.testimonial-quote-badge svg {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}

.testimonial-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  padding: 0.48rem 0.82rem;
  border-radius: 999px;
  background: #fffaf1;
  border: 1px solid rgba(199, 148, 47, 0.16);
  color: #c7942f;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
}

.testimonial-card p {
  margin: 0 0 1.4rem;
  color: var(--navy);
  line-height: 1.7;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
}

.testimonial-author {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #edf1f5;
}

.testimonial-author-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  flex-shrink: 0;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(145deg, #141414, #2d2d2d);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.testimonial-author-icon svg {
  width: 1rem;
  height: 1rem;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.testimonial-author-copy {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
  min-width: 0;
}

.testimonial-author strong {
  color: var(--navy);
  line-height: 1.3;
}

.testimonial-author-tag {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  max-width: 100%;
  min-width: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.testimonial-author-tag svg {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--red);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.testimonial-dot {
  width: 0.75rem;
  height: 0.75rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.16);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.testimonial-dot:hover,
.testimonial-dot:focus {
  background: rgba(199, 148, 47, 0.55);
  transform: translateY(-1px);
}

.testimonial-dot.is-active {
  width: 2rem;
  background: linear-gradient(135deg, #c7942f 0%, #f1d57a 100%);
}

.stats {
  background: linear-gradient(135deg, #111111 0%, #2d220f 100%);
  color: var(--white);
  text-align: center;
  padding: 3rem 0 2.7rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.15rem;
  align-items: start;
}

.stats-grid > div {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.stats-grid h3 {
  font-size: 2rem;
  margin: 0;
}

.stats-grid p {
  margin: 0;
}

.coverage {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.coverage::before,
.coverage::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.coverage::before {
  top: -120px;
  left: -110px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(168, 116, 24, 0.14), transparent 68%);
}

.coverage::after {
  right: -70px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(242, 217, 125, 0.22), transparent 70%);
}

.coverage-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: stretch;
}

.services-coverage-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-coverage-copy > p:not(.section-note) {
  max-width: 36rem;
  margin: 0.35rem 0 0;
  font-size: 1.02rem;
  line-height: 1.7;
}

.services-coverage-copy .section-note {
  margin: 0.95rem 0 0;
}

.services-coverage-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.services-coverage-stat {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(168, 116, 24, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 24px rgba(22, 15, 9, 0.06);
}

.services-coverage-stat strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.1;
}

.services-coverage-stat span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.coverage-panel,
.coverage-map-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.coverage-panel {
  padding: 2.3rem;
  color: var(--white);
  background: linear-gradient(140deg, #111111 0%, #1d1a14 54%, #3f2f14 100%);
  box-shadow: 0 24px 48px rgba(15, 15, 15, 0.16);
}

.coverage-panel::before,
.coverage-panel::after,
.coverage-map-card::before,
.coverage-map-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.coverage-panel::before {
  right: -86px;
  bottom: -94px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 217, 125, 0.18), transparent 68%);
}

.coverage-panel::after {
  top: 22px;
  right: 22px;
  width: 86px;
  height: 86px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
}

.coverage-panel > *,
.coverage-map-card > * {
  position: relative;
  z-index: 1;
}

.coverage-eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
}

.coverage-panel h2 {
  margin: 0;
  color: var(--white);
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 2.8vw, 2.7rem);
}

.coverage-lead {
  margin: 1rem 0 0;
  max-width: 34rem;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.84);
}

.coverage-points {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.6rem;
}

.coverage-point {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.coverage-point strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.coverage-point span {
  display: block;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
}

.coverage-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.coverage-stat {
  padding: 1rem;
  border-radius: 18px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
}

.coverage-stat strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.45rem;
  line-height: 1;
}

.coverage-stat span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
}

.coverage-map-card {
  padding: 1.8rem;
  border: 1px solid rgba(168, 116, 24, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.coverage-map-card::before {
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(168, 116, 24, 0.12), transparent 34%),
    radial-gradient(circle at 86% 12%, rgba(242, 217, 125, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
}

.coverage-map-card::after {
  right: -42px;
  bottom: -60px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 116, 24, 0.08), transparent 70%);
}

.coverage-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.coverage-card-kicker {
  margin: 0 0 0.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--blue);
}

.coverage-card-header h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Cinzel", serif;
  font-size: 1.55rem;
  line-height: 1.2;
}

.coverage-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(168, 116, 24, 0.14);
  background: rgba(168, 116, 24, 0.1);
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

.coverage-card-note {
  margin: 0 0 1.25rem;
  max-width: 30rem;
  color: var(--muted);
}

.coverage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.services-coverage-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  align-content: start;
}

.about-purpose-shell {
  position: relative;
  z-index: 1;
}

.about-purpose-heading {
  max-width: 44rem;
  margin-inline: auto;
  margin-bottom: 1.75rem;
}

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

.about-purpose-card {
  position: relative;
  padding: 1.6rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(168, 116, 24, 0.12);
  box-shadow: 0 18px 34px rgba(22, 15, 9, 0.08);
  overflow: hidden;
}

.about-purpose-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(168, 116, 24, 0.92), rgba(10, 33, 79, 0.85));
  transform: scaleX(0.34);
  transform-origin: left center;
}

.about-purpose-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.95rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-purpose-label::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #c7942f 0%, #f1d57a 100%);
  box-shadow: 0 0 0 6px rgba(242, 217, 125, 0.16);
}

.about-purpose-card h3 {
  margin: 0 0 0.85rem;
  color: var(--navy);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.3;
}

.about-purpose-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.coverage-list span {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(168, 116, 24, 0.08);
  background: rgba(255, 255, 255, 0.98);
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 600;
  box-shadow: 0 10px 18px rgba(22, 15, 9, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.services-coverage-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  text-align: center;
  line-height: 1.3;
}

.coverage-list span:nth-child(3n + 1) {
  background: rgba(168, 116, 24, 0.08);
}

.coverage-list span:nth-child(3n + 2) {
  background: rgba(242, 217, 125, 0.22);
}

.coverage-list span:nth-child(3n + 3) {
  background: rgba(168, 116, 24, 0.08);
}

.coverage-list span:hover {
  transform: translateY(-2px);
  border-color: rgba(168, 116, 24, 0.18);
  box-shadow: 0 14px 24px rgba(22, 15, 9, 0.1);
}

.city-selector-section {
  background: var(--white);
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.2rem;
}

.city-option {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  min-height: 228px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: linear-gradient(135deg, #141414, #3d2d13);
  box-shadow: 0 18px 36px rgba(15, 15, 15, 0.14);
  display: flex;
  align-items: flex-end;
  text-align: left;
  font: inherit;
  color: var(--white);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.city-option:hover,
.city-option:focus-visible,
.city-option.is-active {
  border-color: rgba(241, 213, 122, 0.42);
  box-shadow: 0 24px 45px rgba(22, 15, 9, 0.24);
  transform: translateY(-4px);
  outline: none;
}

.city-icon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: inherit;
  display: inline-block;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  pointer-events: none;
  z-index: 0;
}

.city-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--city-image);
  background-size: var(--city-image-size, cover);
  background-position: var(--city-image-position, center center);
  background-repeat: no-repeat;
  transform: scale(var(--city-image-scale, 1));
  filter: var(--city-image-filter, saturate(1.08) contrast(1.08) brightness(1.05));
  transition: transform 0.25s ease, filter 0.25s ease;
  z-index: 0;
}

.city-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(17, 17, 17, 0.12) 40%, rgba(17, 17, 17, 0.82) 100%);
  z-index: 1;
}

.city-option:hover .city-icon::before,
.city-option:focus-visible .city-icon::before,
.city-option.is-active .city-icon::before {
  transform: scale(var(--city-image-hover-scale, 1.06));
  filter: var(--city-image-hover-filter, saturate(1.12) contrast(1.1) brightness(1.08));
}

.city-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  min-width: 0;
  width: auto;
  max-width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  transition: transform 0.2s ease;
}

.city-option:hover .city-copy,
.city-option:focus-visible .city-copy,
.city-option.is-active .city-copy {
  transform: translateY(-2px);
}

.city-copy strong {
  display: block;
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.1;
  overflow-wrap: anywhere;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.75),
    0 10px 24px rgba(0, 0, 0, 0.36);
}

.city-copy small {
  display: none;
}

.cta {
  background: linear-gradient(120deg, #111111 0%, #2f2410 100%);
  color: var(--white);
  padding: 3rem 0;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-actions .btn,
.cta-actions .btn {
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 28px rgba(10, 8, 4, 0.2);
  animation: aboutButtonPulse 4.8s ease-in-out infinite;
}

.hero-actions .btn:nth-child(2),
.cta-actions .btn:nth-child(2) {
  animation-delay: 0.45s;
}

.hero-actions .btn::after,
.cta-actions .btn::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -32%;
  width: 36%;
  height: 340%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  transform: rotate(24deg);
  pointer-events: none;
  animation: aboutButtonSheen 4.6s ease-in-out infinite;
}

.hero-actions .btn:nth-child(2)::after,
.cta-actions .btn:nth-child(2)::after {
  animation-delay: 0.55s;
}

.hero-actions .btn-outline,
.cta-actions .btn-outline {
  box-shadow: inset 0 0 0 1px rgba(241, 213, 122, 0.08), 0 16px 28px rgba(10, 8, 4, 0.18);
}

.about-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.about-cta::before,
.about-cta::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}

.about-cta::before {
  top: -90px;
  left: -30px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(241, 213, 122, 0.2), rgba(241, 213, 122, 0));
  animation: aboutGoldDrift 8s ease-in-out infinite;
}

.about-cta::after {
  right: -60px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(199, 148, 47, 0.16), rgba(199, 148, 47, 0));
  animation: aboutGoldDrift 10s ease-in-out infinite reverse;
}

.about-cta .cta-inner {
  position: relative;
  z-index: 1;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.about-cta .cta-inner > div:first-child {
  max-width: 56rem;
}

.about-cta .cta-inner > div:first-child h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 0.95rem;
  text-shadow: 0 0 24px rgba(241, 213, 122, 0.08);
  animation: aboutFadeUp 0.9s ease both;
}

.about-cta .cta-inner > div:first-child h2::after {
  content: "";
  display: block;
  width: min(180px, 55%);
  height: 3px;
  margin: 0.9rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(241, 213, 122, 0), rgba(241, 213, 122, 0.95), rgba(241, 213, 122, 0));
  animation: aboutLineGlow 3s ease-in-out infinite;
}

.about-cta .cta-inner > div:first-child p {
  animation: aboutFadeUp 0.9s ease 0.14s both;
}

.about-cta .cta-actions {
  justify-content: center;
  position: relative;
  z-index: 1;
  animation: aboutFadeUp 0.9s ease 0.28s both;
}

.about-cta .cta-actions .btn {
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 28px rgba(10, 8, 4, 0.2);
  animation: aboutButtonPulse 4.8s ease-in-out infinite;
}

.about-cta .cta-actions .btn:nth-child(2) {
  animation-delay: 0.45s;
}

.about-cta .cta-actions .btn::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -32%;
  width: 36%;
  height: 340%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  transform: rotate(24deg);
  animation: aboutButtonSheen 4.6s ease-in-out infinite;
}

.about-cta .cta-actions .btn:nth-child(2)::after {
  animation-delay: 0.55s;
}

.about-cta .cta-actions .btn-outline {
  box-shadow: inset 0 0 0 1px rgba(241, 213, 122, 0.08), 0 16px 28px rgba(10, 8, 4, 0.18);
}

@keyframes aboutGoldDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.88;
  }

  50% {
    transform: translate3d(22px, 18px, 0) scale(1.08);
    opacity: 1;
  }
}

@keyframes aboutFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes aboutLineGlow {
  0%,
  100% {
    opacity: 0.72;
    box-shadow: 0 0 0 rgba(241, 213, 122, 0);
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 20px rgba(241, 213, 122, 0.42);
  }
}

@keyframes aboutButtonPulse {
  0%,
  100% {
    box-shadow: 0 16px 28px rgba(10, 8, 4, 0.18);
  }

  50% {
    box-shadow: 0 20px 34px rgba(199, 148, 47, 0.22);
  }
}

@keyframes aboutButtonSheen {
  0%,
  58%,
  100% {
    opacity: 0;
    transform: translate3d(-110px, 0, 0) rotate(24deg);
  }

  66%,
  82% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(340px, 0, 0) rotate(24deg);
  }
}

.site-footer {
  margin-top: auto;
  background: #0d0d0d;
  color: #e2e2e2;
  font-size: 0.95rem;
}

.site-footer .container {
  width: min(1380px, 94%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.82fr 1.9fr 1.08fr;
  gap: 1.5rem 1.7rem;
  align-items: start;
  padding: 2.2rem 0 1.4rem;
}

.footer-grid > * {
  min-width: 0;
  width: 100%;
}

.site-footer h3,
.site-footer h4 {
  color: var(--white);
  margin: 0 0 0.75rem;
}

.site-footer p {
  margin: 0 0 0.45rem;
}

.site-footer a {
  display: block;
  margin-bottom: 0.35rem;
}

.footer-brand {
  position: relative;
  max-width: none;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  overflow: visible;
}

.footer-brand::after {
  display: none;
}

.footer-brand-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.95rem;
  position: relative;
  z-index: 1;
}

.footer-brand-head h3 {
  margin: 0;
}

.footer-brand-logo {
  width: 82px;
  height: 82px;
  flex: 0 0 auto;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(2, 2, 2, 0.28);
}

.footer-brand-tag {
  display: block;
  margin-top: 0.15rem;
  color: #e0ba63;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand p,
.footer-contact p {
  line-height: 1.65;
}

.footer-links,
.footer-packages,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-self: start;
}

.footer-links {
  gap: 0.35rem;
}

.footer-packages {
  gap: 0.5rem;
}

.footer-main-links {
  display: grid;
  gap: 0.35rem;
}

.footer-links a,
.footer-packages a {
  margin: 0;
  max-width: 100%;
  line-height: 1.45;
  white-space: normal;
}

.footer-main-links a {
  width: max-content;
}

.footer-package-grid {
  display: grid;
  width: 100%;
  grid-template-rows: repeat(5, minmax(0, auto));
  grid-auto-flow: column;
  column-gap: 0.9rem;
  row-gap: 0.45rem;
  align-items: start;
}

.footer-package-grid a {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  font-size: 0.84rem;
  line-height: 1.5;
}

.footer-contact a {
  display: inline;
  margin: 0;
  overflow-wrap: anywhere;
}

.footer-contact p:last-of-type,
.footer-main-links a:last-child,
.footer-package-grid a:last-child {
  margin-bottom: 0;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  color: var(--white);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-social a svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.24);
}

.footer-social a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.32);
  outline-offset: 3px;
}

.footer-social .social-link-whatsapp {
  background: #25d366;
  border-color: #25d366;
  box-shadow: 0 12px 22px rgba(37, 211, 102, 0.26);
}

.footer-social .social-link-whatsapp:hover,
.footer-social .social-link-whatsapp:focus-visible {
  background: #1ebe5d;
  border-color: #1ebe5d;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.3);
}

.footer-social .social-link-email {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 22px rgba(234, 67, 53, 0.18);
}

.footer-social .social-link-email svg {
  width: 22px;
  height: 18px;
}

.footer-social .social-link-email:hover,
.footer-social .social-link-email:focus-visible {
  box-shadow: 0 16px 30px rgba(234, 67, 53, 0.24);
}

.footer-social .social-link-facebook {
  background: #1877f2;
  border-color: #1877f2;
  box-shadow: 0 12px 22px rgba(24, 119, 242, 0.26);
}

.footer-social .social-link-facebook:hover,
.footer-social .social-link-facebook:focus-visible {
  background: #0f6ae5;
  border-color: #0f6ae5;
  box-shadow: 0 16px 30px rgba(24, 119, 242, 0.32);
}

.footer-social .social-link-instagram {
  border-color: transparent;
  background:
    radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 10%, #fd5949 42%, #d6249f 64%, #285aeb 92%);
  box-shadow: 0 12px 22px rgba(214, 36, 159, 0.28);
}

.footer-social .social-link-instagram:hover,
.footer-social .social-link-instagram:focus-visible {
  box-shadow: 0 16px 30px rgba(214, 36, 159, 0.34);
}

.footer-social .social-link-maps {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 22px rgba(66, 133, 244, 0.2);
}

.footer-social .social-link-maps svg {
  width: 22px;
  height: 22px;
}

.footer-social .social-link-maps:hover,
.footer-social .social-link-maps:focus-visible {
  box-shadow: 0 16px 30px rgba(66, 133, 244, 0.26);
}

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

.footer-bottom {
  text-align: center;
  padding: 0.85rem 0 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
}

.mobile-bottom-nav {
  display: none;
}

.mobile-bottom-nav-inner {
  width: min(100%, 560px);
  margin: 0 auto;
  padding: 0 0.65rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.25rem;
}

.mobile-bottom-nav-item {
  position: relative;
  min-width: 0;
}

.mobile-bottom-nav [data-mobile-nav] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0.3rem 0.15rem;
  border: 0;
  background: transparent;
  color: #8d7556;
  font-size: 0.72rem;
  font-weight: 500;
  font-family: inherit;
  line-height: 1.2;
  appearance: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mobile-bottom-nav [data-mobile-nav] span:last-child {
  text-align: center;
  white-space: nowrap;
}

.mobile-bottom-nav-icon {
  width: 40px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-bottom-nav [data-mobile-nav] svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.mobile-bottom-nav-accent {
  color: #1ea755;
}

.mobile-bottom-nav-accent svg {
  fill: currentColor;
  stroke: none;
}

.mobile-bottom-nav-trigger {
  cursor: pointer;
}

.mobile-bottom-nav-enquiry {
  z-index: 1;
}

.mobile-bottom-nav-enquiry.is-open {
  z-index: 2;
}

.mobile-bottom-nav-actions {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.6rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem;
  border-radius: 22px;
  border: 1px solid rgba(22, 15, 9, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 32px rgba(22, 15, 9, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 0.8rem) scale(0.96);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.mobile-bottom-nav-action {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 12px 22px rgba(22, 15, 9, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, background 0.2s ease;
}

.mobile-bottom-nav-action svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.mobile-bottom-nav-action-call {
  background: linear-gradient(135deg, #1f7cff, #0b57d0);
}

.mobile-bottom-nav-action-whatsapp {
  background: #25d366;
}

.mobile-bottom-nav-enquiry.is-open .mobile-bottom-nav-actions {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.mobile-bottom-nav-action:hover,
.mobile-bottom-nav-action:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(22, 15, 9, 0.22);
}

.mobile-bottom-nav-action-call:hover,
.mobile-bottom-nav-action-call:focus-visible {
  filter: brightness(1.08);
}

.mobile-bottom-nav-action-whatsapp:hover,
.mobile-bottom-nav-action-whatsapp:focus-visible {
  background: #1ebe5b;
}

.mobile-bottom-nav-enquiry.is-open > .mobile-bottom-nav-trigger,
.mobile-bottom-nav [data-mobile-nav].is-active,
.mobile-bottom-nav [data-mobile-nav][aria-current="page"] {
  color: var(--navy);
}

.mobile-bottom-nav-enquiry.is-open > .mobile-bottom-nav-trigger .mobile-bottom-nav-icon,
.mobile-bottom-nav [data-mobile-nav].is-active .mobile-bottom-nav-icon,
.mobile-bottom-nav [data-mobile-nav][aria-current="page"] .mobile-bottom-nav-icon {
  background: rgba(168, 116, 24, 0.1);
}

@media (hover: hover) and (pointer: fine) {
  .mobile-bottom-nav-enquiry:hover .mobile-bottom-nav-actions,
  .mobile-bottom-nav-enquiry:focus-within .mobile-bottom-nav-actions {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0) scale(1);
  }
}

.page-hero {
  position: relative;
  color: var(--white);
  padding: 4.5rem 0;
  background: linear-gradient(120deg, rgba(8, 6, 3, 0.92), rgba(74, 52, 18, 0.76)),
    var(--page-bg);
  background-size: cover;
  background-position: center;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.breadcrumbs {
  font-size: 0.9rem;
  color: #f0dfb8;
}

.page-hero h1 {
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0.4rem 0 0.8rem;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.6rem;
  border-radius: 16px;
  backdrop-filter: blur(6px);
}

.hero-panel h3 {
  margin-top: 0;
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
}

.hero-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.hero-panel li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.hero-panel li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex: 0 0 auto;
}

.split-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.highlight-card {
  background: var(--sky);
  padding: 2rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.step-card {
  background: var(--white);
  padding: 1.6rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid #e6d9c7;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.offer-card:hover,
.destination-card:hover,
.route-card:hover,
.info-card:hover,
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 45px rgba(22, 15, 9, 0.18);
}

.destination-card:hover,
.destination-card:focus-within {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 28px 52px rgba(18, 16, 19, 0.2);
}

.destination-card-spotlight:hover,
.destination-card-spotlight:focus-within {
  box-shadow: 0 28px 58px rgba(6, 18, 31, 0.34);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .testimonial-track,
  .testimonial-dot {
    transition: none;
  }

  .service-card,
  .offer-card,
  .destination-card,
  .route-card,
  .info-card,
  .step-card {
    transition: none;
  }

  .destination-card,
  .destination-card::before {
    animation: none;
  }

  .about-cta::before,
  .about-cta::after,
  .about-cta .cta-inner > div:first-child h2,
  .about-cta .cta-inner > div:first-child h2::after,
  .about-cta .cta-inner > div:first-child p,
  .hero-actions .btn,
  .hero-actions .btn::after,
  .cta-actions .btn,
  .cta-actions .btn::after,
  .about-cta .cta-actions,
  .about-cta .cta-actions .btn,
  .about-cta .cta-actions .btn::after {
    animation: none;
  }
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.3rem;
}

.route-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid #e8ebf1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.route-card span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.info-card {
  background: var(--white);
  padding: 1.6rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card h3 {
  margin-top: 0;
  color: var(--navy);
}

.info-card .btn {
  margin-top: auto;
}

.form-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.form-grid label {
  font-size: 0.85rem;
  color: var(--muted);
  display: block;
  margin-bottom: 0.3rem;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  border: 1px solid #d8dde6;
  font-family: "Poppins", sans-serif;
}

.form-grid textarea {
  min-height: 120px;
  resize: vertical;
}

.form-full {
  grid-column: 1 / -1;
}

.form-help {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.map-card {
  background: #f8fafc;
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
  border: 1px dashed #d1c1a8;
}

.section-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.compact-coverage {
  justify-content: center;
  margin-top: 1.25rem;
}

.floating-contact-group {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  display: grid;
  gap: 0.7rem;
  z-index: 30;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

.floating-contact-group.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.75rem);
}

.floating-action {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding: 0;
  border-radius: 50%;
  box-shadow: 0 14px 26px rgba(22, 15, 9, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, filter 0.2s ease;
}

.floating-action-call {
  background: linear-gradient(135deg, #1f7cff, #0b57d0);
}

.floating-action-whatsapp {
  background: #25d366;
}

.floating-action svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.floating-action:hover,
.floating-action:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 32px rgba(22, 15, 9, 0.26);
}

.floating-action-call:hover,
.floating-action-call:focus-visible {
  filter: brightness(1.08);
}

.floating-action-whatsapp:hover,
.floating-action-whatsapp:focus-visible {
  background: #1ebe5b;
}

@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    align-items: stretch;
  }

  .hero-content {
    max-width: 100%;
  }

  .booking-card {
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 980px) {
  .intro-copy p,
  .checklist li {
    text-align: justify;
    text-align-last: left;
    text-justify: inter-word;
    hyphens: auto;
  }

  body {
    padding-bottom: 0;
  }

  body.nav-open {
    overflow-x: clip;
  }

  .topbar-inner {
    flex-wrap: wrap;
    row-gap: 0.45rem;
  }

  .topbar-item:last-child {
    margin-left: auto;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

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

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

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

  .destination-grid:not(.destination-grid-featured) .destination-card {
    min-height: 16.5rem;
  }

  .destination-grid:not(.destination-grid-featured) .destination-card-spotlight {
    min-height: 18rem;
  }

  .hero-inner,
  .intro-grid,
  .coverage-grid,
  .page-hero-inner,
  .split-section {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    max-width: 100%;
    padding-top: 0;
  }

  .coverage-panel,
  .coverage-map-card {
    padding: 1.8rem;
  }

  .about-purpose-grid {
    grid-template-columns: 1fr;
  }

  .coverage-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .route-showcase-shell {
    padding: 1.8rem;
  }

  .hero-inner {
    gap: 1.6rem;
    align-items: stretch;
  }

  .hero-content {
    order: 1;
    max-width: 100%;
  }

  .booking-card {
    order: 2;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.55rem);
    bottom: auto;
    left: 0;
    right: 0;
    z-index: 30;
    display: grid;
    gap: 0.35rem;
    padding: 0.85rem;
    border-radius: 18px;
    border: 1px solid rgba(22, 15, 9, 0.1);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 38px rgba(22, 15, 9, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(0.35rem);
    transform-origin: top center;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    max-height: min(calc(100dvh - 130px), 420px);
    overflow-y: auto;
  }

  .site-header {
    z-index: 80;
  }

  .site-nav a {
    padding: 0.82rem 0.95rem;
    border-radius: 12px;
    background: #f7f8fc;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a:focus,
  .site-nav a[aria-current="page"] {
    background: rgba(199, 148, 47, 0.12);
    color: var(--navy);
  }

  body.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.nav-open .site-header {
    position: sticky;
    top: 0;
    z-index: 90;
  }

  .nav-toggle {
    display: inline-flex !important;
    position: relative;
    z-index: 31;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }

  .header-inner {
    position: relative;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.7rem 0;
  }

  .mobile-bottom-nav {
    display: none;
  }

  .floating-contact-group {
    display: grid;
    right: 0.9rem;
    bottom: calc(0.9rem + env(safe-area-inset-bottom, 0px));
    gap: 0.55rem;
    z-index: 46;
  }

  .floating-action {
    width: 50px;
    height: 50px;
  }

  .floating-action svg {
    width: 22px;
    height: 22px;
  }

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

  .footer-packages {
    grid-column: 1 / -1;
  }

  .page-hero {
    padding: 3.75rem 0;
  }

  .page-hero-inner {
    gap: 1.6rem;
  }

  .hero-panel {
    padding: 1.4rem;
  }

  .footer-brand {
    max-width: none;
  }

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

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

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

  .testimonial-card {
    flex-basis: calc((100% - 1.5rem) / 2);
  }

}

@media (max-width: 640px) {
  .site-header {
    position: sticky;
  }

  .header-inner {
    padding: 0.6rem 0;
  }

  .nav-toggle {
    padding: 0.45rem 0.8rem;
    font-size: 0.9rem;
  }

  .site-nav {
    top: calc(100% + 0.45rem);
    padding: 0.7rem;
    border-radius: 16px;
  }

  .site-nav a {
    font-size: 0.95rem;
    padding: 0.78rem 0.9rem;
  }

  .service-showcase-grid {
    grid-template-columns: 1fr;
  }

  .service-showcase-card {
    min-height: 320px;
  }

  .testimonial-card {
    flex-basis: 100%;
    padding: 1.35rem;
  }

  .testimonial-card-head {
    gap: 0.75rem;
    margin-bottom: 0.9rem;
  }

  .testimonial-quote-badge {
    width: 2.5rem;
    height: 2.5rem;
  }

  .testimonial-rating {
    padding: 0.42rem 0.7rem;
    font-size: 0.78rem;
  }

  .testimonial-card p {
    margin-bottom: 1.15rem;
  }

  .testimonial-author {
    gap: 0.75rem;
    padding-top: 0.9rem;
  }

  .testimonial-author-icon {
    width: 2.45rem;
    height: 2.45rem;
  }

  .testimonial-dots {
    gap: 0.45rem;
  }

  .testimonial-dot.is-active {
    width: 1.6rem;
  }

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

  .destination-grid:not(.destination-grid-featured) {
    grid-template-columns: 1fr;
  }

  .destination-grid:not(.destination-grid-featured) .destination-card {
    min-height: 15rem;
    padding: 1.45rem;
  }

  .destination-grid:not(.destination-grid-featured) .destination-card-spotlight {
    min-height: 16.5rem;
  }

  .hero-content h1 span {
    white-space: normal;
  }

  .hero-content > .eyebrow,
  .hero-content > h1,
  .hero-content > .hero-banner-subheading,
  .hero-content > p:not(.hero-banner-subheading) {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .floating-contact-group {
    right: 0.75rem;
    bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  }

  .floating-action {
    width: 46px;
    height: 46px;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .booking-form > .form-row:last-of-type,
  .booking-form > .btn-block {
    grid-column: auto;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.45rem;
    padding: 0.4rem 0 0.55rem;
  }

  .topbar-item {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }

  .topbar-phone {
    justify-content: center;
  }

  .topbar .btn-small {
    display: none;
  }

  .page-hero {
    padding: 3rem 0;
  }

  .page-hero-inner {
    gap: 1.35rem;
  }

  .page-hero-inner > :first-child {
    text-align: center;
  }

  .page-hero-inner > :first-child .hero-actions {
    justify-content: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 1.5rem 0 2.5rem;
  }

  .hero-why-choose {
    padding: 1rem;
    border-radius: 6px;
  }

  .intro-card.why-choose-panel {
    padding: 1rem;
    border-radius: 12px;
  }

  .hero-highlights-label {
    font-size: 0.84rem;
    letter-spacing: 0.18em;
  }

  .why-choose-heading {
    font-size: 1.2rem;
  }

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

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

  .hero-highlight-card {
    min-height: 0;
  }

  .why-choose-panel .hero-highlight-card {
    min-height: 0;
    gap: 0.45rem;
    align-items: center;
    text-align: center;
  }

  .why-choose-panel .highlight-title {
    font-size: clamp(1.5rem, 5vw, 1.72rem);
    line-height: 1.15;
  }

  .why-choose-panel .highlight-sub {
    font-size: 0.96rem;
    line-height: 1.45;
    margin-inline: auto;
    text-align: center;
  }

  .why-choose-panel .hero-highlights-head {
    align-items: center;
    text-align: center;
  }

  .services-coverage-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .services-coverage-meta {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .coverage-panel,
  .coverage-map-card {
    padding: 1.35rem;
    border-radius: 22px;
  }

  .coverage-panel::after {
    width: 68px;
    height: 68px;
    border-radius: 18px;
  }

  .coverage-panel h2,
  .coverage-card-header h3 {
    line-height: 1.25;
  }

  .coverage-point,
  .coverage-stat,
  .coverage-list span {
    border-radius: 16px;
  }

  .route-showcase-shell {
    padding: 1.35rem;
    border-radius: 22px;
  }

  .route-showcase-head {
    margin-bottom: 1.25rem;
  }

  .route-showcase .specialization-list {
    justify-content: flex-start;
  }

  .destination-card-spotlight {
    min-height: 220px;
  }

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

  .offer-card {
    min-height: 0;
  }

  .offer-card-photo-layout {
    --offer-media-height: 13.25rem;
    padding: 1rem;
    gap: 0.8rem;
  }

  .offer-card-photo-layout .offer-card-media {
    padding: 0;
    margin-bottom: 0;
  }

  .offer-card-photo-layout .offer-card-image,
  .offer-card-image-placeholder {
    width: min(100%, 18rem);
  }

  .offer-card-media-etios {
    --offer-image-scale: 1.16;
  }

  .offer-card-media-tavera {
    --offer-image-scale: 1.12;
  }

  .offer-card-media-placeholder {
    min-height: 12.25rem;
  }

  .offer-card-photo-layout .offer-sub,
  .offer-card-photo-layout ul {
    margin-bottom: 0;
  }

  .offer-card-photo-layout .offer-card-head {
    margin-bottom: 0;
  }

  .offer-card-photo-layout h3 {
    min-height: 0;
  }

  .offer-card-photo-layout ul {
    line-height: 1.38;
    gap: 0.45rem;
  }

  .offer-card-photo-layout li + li {
    margin-top: 0;
  }

  .offer-card-photo-layout .btn,
  .offer-card-photo-layout .btn-outline {
    width: 100%;
    padding: 0.82rem 1rem;
    font-size: 0.95rem;
  }

  .offer-meta {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .offer-sub,
  .offer-rate,
  .offer-meta-item strong {
    min-height: 0;
  }

  .booking-card {
    padding: 1.4rem;
  }

  .ride-options .service-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .ride-options .service-card {
    padding: 1.4rem;
    border-radius: 20px;
  }

  .ride-quick-actions {
    flex-direction: column;
  }

  .ride-chip {
    width: 100%;
  }

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

  .city-option {
    min-height: 196px;
    padding: 0.8rem;
  }

  .city-icon {
    width: 100%;
    height: 100%;
    border-radius: 20px;
  }

  .city-copy {
    width: auto;
    padding: 0;
  }

  .city-copy strong {
    font-size: 1.2rem;
  }

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

  .ride-options .service-grid.services-grid-six {
    grid-template-columns: 1fr;
  }

  .ride-options .service-grid.services-grid-three {
    grid-template-columns: 1fr;
  }

  .ride-card-head {
    gap: 0.75rem;
  }

  .cta-inner {
    align-items: stretch;
  }

  .cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    padding: 1.8rem 0 1.1rem;
  }

  .logo-mark {
    width: 64px;
    height: 64px;
  }

  .logo-text strong {
    font-size: 1rem;
  }

  .logo-text em {
    font-size: 0.84rem;
  }

  .footer-brand-head {
    margin-bottom: 0.7rem;
  }

  .footer-brand-logo {
    width: 68px;
    height: 68px;
  }

  .mobile-bottom-nav-inner {
    padding: 0 0.4rem;
    gap: 0.15rem;
  }

  .mobile-bottom-nav [data-mobile-nav] {
    font-size: 0.67rem;
  }

  .mobile-bottom-nav-icon {
    width: 36px;
    height: 30px;
  }

  .mobile-bottom-nav [data-mobile-nav] svg {
    width: 18px;
    height: 18px;
  }

  .mobile-bottom-nav-actions {
    gap: 0.4rem;
    padding: 0.35rem;
  }

  .mobile-bottom-nav-action {
    width: 40px;
    height: 40px;
  }

  .mobile-bottom-nav-action svg {
    width: 18px;
    height: 18px;
  }

  .footer-package-grid {
    column-gap: 0.8rem;
  }

  .footer-package-grid a {
    font-size: 0.84rem;
  }

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

@media (max-width: 480px) {
  .container {
    width: min(1200px, 94%);
  }

  .topbar {
    font-size: 0.72rem;
  }

  .topbar-item:last-child {
    flex-direction: column;
    gap: 0.35rem;
  }

  .topbar-phone {
    justify-content: center;
  }

  .btn-small {
    width: 100%;
    max-width: 11rem;
  }

  .header-inner {
    gap: 0.7rem;
  }

  .logo {
    gap: 0.65rem;
    flex: 1 1 auto;
  }

  .logo-mark {
    width: 52px;
    height: 52px;
  }

  .logo-text strong {
    font-size: 0.95rem;
    letter-spacing: 0.02em;
  }

  .logo-text em {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .footer-package-grid {
    grid-template-rows: none;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    row-gap: 0.3rem;
  }

  .site-nav {
    max-width: calc(100vw - 1rem);
  }

  .hero-inner {
    gap: 1.2rem;
    padding: 1.25rem 0 2.2rem;
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: clamp(1.9rem, 10vw, 2.35rem);
    line-height: 1.05;
  }

  .hero-content h1 {
    max-width: 9.75em;
  }

  .hero-banner-subheading {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .hero-content > p:not(.hero-banner-subheading),
  .page-hero p {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .booking-card {
    padding: 1.15rem;
  }

  .booking-tabs {
    flex-direction: column;
  }

  .tab-btn {
    width: 100%;
  }

  .service-showcase-card {
    min-height: 300px;
  }
}

@media (max-width: 360px) {
  .logo-text strong {
    font-size: 0.9rem;
  }

  .logo-text em {
    font-size: 0.68rem;
  }

  .nav-toggle {
    padding: 0.42rem 0.72rem;
    font-size: 0.84rem;
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: clamp(1.75rem, 9.5vw, 2.1rem);
  }

  .hero-actions,
  .cta-actions {
    gap: 0.75rem;
  }

  .booking-card {
    padding: 1rem;
  }

  .mobile-bottom-nav [data-mobile-nav] span:last-child {
    white-space: normal;
  }
}

.packages-hero {
  --page-bg-position: center 58%;
}

.package-detail-section {
  padding-top: 0;
}

.package-note-card,
.package-faq-card {
  padding: 1.2rem 1.25rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 244, 232, 0.98));
  border: 1px solid rgba(140, 106, 47, 0.12);
  box-shadow: 0 16px 32px rgba(22, 15, 9, 0.08);
}

.package-chip-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0 1.5rem;
}

.package-chip-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(140, 106, 47, 0.18);
  background: rgba(255, 247, 235, 0.96);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.package-chip-nav a:hover,
.package-chip-nav a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(140, 106, 47, 0.36);
  box-shadow: 0 12px 22px rgba(22, 15, 9, 0.08);
}

.package-chip-nav a.is-active,
.package-chip-nav a[aria-current="page"] {
  border-color: rgba(140, 106, 47, 0.42);
  background: linear-gradient(135deg, rgba(40, 28, 11, 0.95), rgba(151, 110, 38, 0.86));
  color: var(--white);
  box-shadow: 0 18px 30px rgba(82, 59, 19, 0.2);
}

.package-chip-close {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  border: 1px solid rgba(140, 106, 47, 0.22);
  border-radius: 999px;
  background: rgba(255, 247, 235, 0.96);
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.package-chip-close:hover,
.package-chip-close:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(140, 106, 47, 0.4);
  background: rgba(255, 251, 245, 1);
  box-shadow: 0 12px 22px rgba(22, 15, 9, 0.08);
}

@keyframes packageOverviewCardEnter {
  from {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

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

.package-overview-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(128px, 168px) minmax(0, 1fr) auto;
  grid-template-areas: "thumb copy action";
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 1.15rem;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(241, 213, 122, 0.24), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(255, 247, 235, 0.96));
  color: var(--text);
  border: 1px solid rgba(140, 106, 47, 0.14);
  box-shadow: 0 18px 36px rgba(18, 16, 13, 0.08);
  isolation: isolate;
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  animation: packageOverviewCardEnter 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.package-overview-card:nth-child(1) {
  animation-delay: 0.05s;
}

.package-overview-card:nth-child(2) {
  animation-delay: 0.1s;
}

.package-overview-card:nth-child(3) {
  animation-delay: 0.15s;
}

.package-overview-card:nth-child(4) {
  animation-delay: 0.2s;
}

.package-overview-card:nth-child(5) {
  animation-delay: 0.25s;
}

.package-overview-card:nth-child(6) {
  animation-delay: 0.3s;
}

.package-overview-card:nth-child(7) {
  animation-delay: 0.35s;
}

.package-overview-card:nth-child(8) {
  animation-delay: 0.4s;
}

.package-overview-card:nth-child(9) {
  animation-delay: 0.45s;
}

.package-overview-card:nth-child(10) {
  animation-delay: 0.5s;
}

.package-overview-card > * {
  position: relative;
  z-index: 1;
}

.package-overview-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(241, 213, 122, 0.3), transparent 68%);
  opacity: 0.82;
  transition: transform 0.45s ease, opacity 0.45s ease;
  z-index: 0;
}

.package-overview-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(199, 148, 47, 0.95), rgba(241, 213, 122, 0.6), transparent 78%);
  transform: scaleX(0.22);
  transform-origin: left;
  opacity: 0.78;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.package-overview-card:hover,
.package-overview-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(140, 106, 47, 0.28);
  box-shadow: 0 24px 42px rgba(18, 16, 13, 0.14);
}

.package-overview-card.is-active-detail {
  transform: translateY(-5px);
  border-color: rgba(140, 106, 47, 0.34);
  box-shadow: 0 26px 44px rgba(18, 16, 13, 0.16);
}

.package-overview-card:hover::before,
.package-overview-card:focus-visible::before {
  transform: translate3d(-16px, 10px, 0);
  opacity: 1;
}

.package-overview-card:hover::after,
.package-overview-card:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.package-overview-thumb {
  grid-area: thumb;
  position: relative;
  display: block;
  min-height: 112px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(18, 15, 11, 0.16);
}

.package-overview-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 12, 9, 0.08), rgba(15, 12, 9, 0.2)),
    var(--package-card-image) var(--package-card-position, center) / var(--package-card-size, cover) no-repeat;
  transform: scale(1);
  transition: transform 0.6s ease;
}

.package-overview-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(12, 12, 12, 0.14));
}

.package-overview-card:hover .package-overview-thumb::before,
.package-overview-card:focus-visible .package-overview-thumb::before {
  transform: scale(1.08);
}

.package-overview-copy {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 0;
}

.package-overview-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(140, 106, 47, 0.14);
  background: rgba(241, 213, 122, 0.16);
  color: #6d4d18;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-label {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  color: #fff4cf;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-overview-card h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.18rem, 1.08rem + 0.5vw, 1.55rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
  max-width: 24ch;
}

.package-overview-card p {
  margin: 0;
  max-width: 46rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.package-overview-link {
  grid-area: action;
  justify-self: end;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.92rem 1.18rem;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 248, 230, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03) 42%, rgba(241, 213, 122, 0.2)),
    linear-gradient(125deg, rgba(36, 25, 10, 0.92), rgba(120, 88, 33, 0.84));
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04),
    0 18px 34px rgba(82, 59, 19, 0.26),
    0 10px 20px rgba(20, 20, 20, 0.12);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.package-overview-link::before,
.package-overview-link::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.package-overview-link::before {
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.03) 38%, rgba(255, 255, 255, 0) 72%),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 48%);
  opacity: 0.95;
  z-index: 0;
}

.package-overview-link::after {
  top: -130%;
  left: -36%;
  width: 34%;
  height: 360%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  transform: rotate(24deg) translateX(0);
  opacity: 0.64;
  transition: transform 0.48s ease, opacity 0.48s ease;
  z-index: 0;
}

.package-overview-link > span,
.package-overview-link > svg {
  position: relative;
  z-index: 1;
}

.package-overview-link svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.package-overview-card:hover .package-overview-link,
.package-overview-card:focus-visible .package-overview-link {
  transform: translateY(-2px);
  border-color: rgba(255, 248, 230, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06),
    0 22px 38px rgba(82, 59, 19, 0.3),
    0 12px 24px rgba(20, 20, 20, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.05) 42%, rgba(241, 213, 122, 0.26)),
    linear-gradient(125deg, rgba(40, 28, 11, 0.95), rgba(151, 110, 38, 0.86));
}

.package-overview-card:hover .package-overview-link::after,
.package-overview-card:focus-visible .package-overview-link::after {
  transform: rotate(24deg) translateX(420%);
  opacity: 0.9;
}

.package-overview-card:hover .package-overview-link svg,
.package-overview-card:focus-visible .package-overview-link svg {
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .package-overview-card {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .package-overview-card,
  .package-overview-card::before,
  .package-overview-card::after,
  .package-overview-thumb::before,
  .package-overview-link,
  .package-overview-link::after,
  .package-overview-link svg {
    transition: none;
  }
}

.package-detail-stack {
  display: grid;
  gap: 1.5rem;
}

.package-drawer-shell {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  pointer-events: none;
}

.package-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 18, 0.54);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.package-drawer-panel {
  position: relative;
  width: min(1160px, calc(100vw - 2rem));
  max-height: calc(100dvh - 1rem);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(140, 106, 47, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 241, 230, 0.98));
  box-shadow: 0 32px 60px rgba(10, 8, 4, 0.28);
  transform: translate3d(0, calc(100% + 2rem), 0);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: auto;
}

.package-drawer-shell.is-open {
  pointer-events: auto;
}

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

.package-drawer-shell.is-open .package-drawer-panel {
  transform: translate3d(0, 0, 0);
}

.package-drawer-handle {
  width: 72px;
  height: 6px;
  margin: 0.95rem auto 0.35rem;
  border-radius: 999px;
  background: rgba(140, 106, 47, 0.28);
}

.package-drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.35rem 1rem;
  border-bottom: 1px solid rgba(140, 106, 47, 0.14);
}

.package-drawer-eyebrow {
  margin: 0;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.package-drawer-header h2 {
  margin: 0.35rem 0 0;
  font-family: "Cinzel", serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.15;
  color: var(--navy);
}

.package-drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(140, 106, 47, 0.18);
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  font-size: 1.05rem;
  box-shadow: 0 14px 22px rgba(22, 15, 9, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.package-drawer-close:hover,
.package-drawer-close:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(140, 106, 47, 0.32);
  box-shadow: 0 18px 26px rgba(22, 15, 9, 0.12);
}

.package-drawer-body {
  overflow: auto;
  padding: 1.35rem;
}

.package-drawer-state {
  padding: 1rem 0;
}

.package-drawer-state p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.package-drawer-frame {
  width: 100%;
  min-height: 520px;
  border: 0;
  background: transparent;
}

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

.package-drawer-body .package-detail-card {
  padding: 0;
  border-bottom: 0;
}

.package-drawer-body .package-detail-card:last-child {
  padding-bottom: 0;
}

.package-detail-page [data-package-detail-stack] .package-detail-card {
  display: none;
}

.package-detail-page [data-package-detail-stack]:not(.is-controlled) .package-detail-card:first-child,
.package-detail-page [data-package-detail-stack].is-controlled .package-detail-card.is-active {
  display: block;
}

.package-detail-card {
  scroll-margin-top: 7rem;
  padding: 0 0 2.75rem;
  border-bottom: 1px solid rgba(140, 106, 47, 0.18);
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.package-detail-card:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.package-detail-card:target {
  border-bottom-color: rgba(140, 106, 47, 0.34);
}

.package-detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

.package-detail-card:nth-child(even) .package-detail-media {
  order: initial;
}

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

.package-media-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
}

.package-media-frame > img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(140, 106, 47, 0.14);
  box-shadow: 0 14px 26px rgba(22, 15, 9, 0.08);
}

.package-media-caption {
  position: static;
  padding: 0.7rem 0 0;
  border-radius: 0;
  background: none;
  color: var(--navy);
  box-shadow: none;
}

.package-media-caption strong {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.package-media-caption span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.package-media-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  grid-column: span 2;
}

.package-media-thumb {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border-radius: 20px;
  background: none;
  border: 0;
  box-shadow: none;
}

.package-media-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(140, 106, 47, 0.14);
  box-shadow: 0 14px 26px rgba(22, 15, 9, 0.08);
}

.package-media-thumb span {
  display: block;
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
}

.package-detail-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.package-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.package-heading-row h2 {
  margin: 0.8rem 0 0;
  font-family: "Cinzel", serif;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  line-height: 1.15;
  color: var(--navy);
}

.package-detail-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
}

.package-detail-content p a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.package-detail-content p a:hover,
.package-detail-content p a:focus-visible {
  color: var(--red);
}

.package-note-card p strong,
.package-faq-card p strong {
  color: var(--navy);
}

.package-lead {
  font-size: 1rem;
  color: #51463b;
}

.package-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(140, 106, 47, 0.16);
  border-bottom: 1px solid rgba(140, 106, 47, 0.16);
}

.package-meta-card {
  padding: 0;
  border-radius: 0;
  background: none;
  border: 0;
}

.package-meta-card strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--navy);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-meta-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.package-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.package-columns h3,
.package-block-title,
.package-note-card h3,
.package-faq-card h3 {
  margin: 0 0 0.8rem;
  color: var(--navy);
  font-size: 1.05rem;
}

.package-block-title {
  margin-bottom: 0.1rem;
}

.package-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
  line-height: 1.75;
}

.package-list li + li {
  margin-top: 0.55rem;
}

.package-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--red), var(--gold));
  box-shadow: 0 0 0 4px rgba(199, 148, 47, 0.14);
}

.package-list-emoji li {
  padding-left: 0;
}

.package-list-emoji li::before {
  content: none;
}

.package-columns p + .package-list,
.package-note-card p + .package-list,
.package-columns .package-list + p,
.package-note-card .package-list + p,
.package-columns p + p,
.package-note-card p + p {
  margin-top: 0.55rem;
}

.package-detail-card-centered .package-heading-row {
  justify-content: center;
}

.package-detail-card-centered .package-heading-row > div {
  width: 100%;
  max-width: 56rem;
  margin-inline: auto;
  text-align: center;
}

.package-detail-card-centered .package-overview-badge {
  margin-inline: auto;
}

.package-detail-card-centered .package-heading-row h2 {
  font-weight: 700;
  text-align: center;
  text-wrap: balance;
}

.package-detail-card-centered .package-lead {
  width: 100%;
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
}

.package-detail-card-centered .package-meta-grid {
  width: 100%;
  max-width: 52rem;
  margin-inline: auto;
  justify-items: center;
}

.package-detail-card-centered .package-meta-card,
.package-detail-card-centered .package-meta-card strong,
.package-detail-card-centered .package-meta-card span,
.package-detail-card-centered .package-columns h3,
.package-detail-card-centered .package-note-card h3 {
  text-align: center;
  text-wrap: balance;
}

.package-detail-card-centered .package-columns > div,
.package-detail-card-centered .package-note-card {
  width: 100%;
  max-width: 52rem;
  margin-inline: auto;
}

.package-detail-card-centered .package-detail-content > p:not(.package-lead),
.package-detail-card-centered .package-columns p,
.package-detail-card-centered .package-note-card p {
  width: 100%;
  max-width: 52rem;
  margin-inline: auto;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
}

.package-detail-card-centered .package-list {
  width: 100%;
  max-width: 42rem;
  margin-inline: auto;
}

.package-detail-card-centered .package-list li {
  text-align: left;
}

#details-jyotirlinga .package-media-frame > img {
  object-position: 64% 50%;
}

#details-shirdi .package-media-frame > img {
  object-position: 50% 32%;
}

#details-mumbai .package-media-frame > img {
  object-position: 40% 84%;
}

#details-ashtavinayak .package-media-frame > img {
  object-position: 50% 52%;
}

#details-mahabaleshwar .package-media-frame > img {
  object-position: 58% 52%;
}

#details-tuljapur .package-media-frame > img {
  object-position: 50% 50%;
}

#details-bhimashankar .package-media-frame > img {
  object-position: 54% 48%;
}

#details-satara .package-media-frame > img {
  object-position: 50% 50%;
}

#details-kolhapur .package-media-frame > img {
  object-position: 52% 40%;
}

#details-nashik .package-media-frame > img {
  object-position: center 42%;
}

#details-mahabaleshwar .package-heading-row {
  justify-content: center;
}

#details-mahabaleshwar .package-heading-row > div {
  width: 100%;
  text-align: center;
}

#details-mahabaleshwar .package-overview-badge {
  margin-inline: auto;
}

#details-mahabaleshwar .package-heading-row h2 {
  font-weight: 700;
  text-align: center;
}

#details-jyotirlinga .package-heading-row h2 {
  font-weight: 700;
}

#details-mumbai .package-heading-row h2 {
  font-weight: 700;
}

#details-ashtavinayak .package-heading-row h2 {
  font-weight: 700;
}

#details-tuljapur .package-heading-row h2 {
  font-weight: 700;
}

#details-tuljapur .package-detail-content p {
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
}

#details-shirdi .package-heading-row {
  justify-content: center;
}

#details-shirdi .package-heading-row > div {
  width: 100%;
  text-align: center;
}

#details-shirdi .package-overview-badge {
  margin-inline: auto;
}

#details-shirdi .package-heading-row h2 {
  font-weight: 700;
  text-align: center;
}

#details-shirdi .package-meta-grid {
  justify-items: center;
}

#details-shirdi .package-columns > div,
#details-shirdi .package-note-card {
  max-width: 48rem;
  margin-inline: auto;
}

#details-shirdi .package-meta-card,
#details-shirdi .package-meta-card strong,
#details-shirdi .package-meta-card span,
#details-shirdi .package-columns h3,
#details-shirdi .package-note-card h3 {
  text-align: center;
}

#details-shirdi .package-detail-content p {
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
}

#details-shirdi .package-list {
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
}

#details-shirdi .package-list li {
  text-align: left;
}

#details-mahabaleshwar .package-meta-grid {
  justify-items: center;
}

#details-mahabaleshwar .package-columns > div,
#details-mahabaleshwar .package-note-card {
  max-width: 48rem;
  margin-inline: auto;
}

#details-mahabaleshwar .package-meta-card,
#details-mahabaleshwar .package-meta-card strong,
#details-mahabaleshwar .package-meta-card span,
#details-mahabaleshwar .package-columns h3,
#details-mahabaleshwar .package-note-card h3 {
  text-align: center;
}

#details-mahabaleshwar.package-detail-card-centered .package-detail-content p {
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
}

#details-mahabaleshwar .package-list {
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
}

#details-mahabaleshwar .package-list li {
  text-align: left;
}

.package-note-grid,
.package-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.package-note-card,
.package-faq-card {
  padding: 0 0 1rem;
  border-radius: 0;
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(140, 106, 47, 0.14);
  box-shadow: none;
}

.package-note-grid > :last-child,
.package-faq-grid > :last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.package-note-card p,
.package-faq-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.package-rate-block {
  display: grid;
  gap: 0.9rem;
}

.package-rate-title {
  margin: 0;
  color: var(--navy);
  font-size: 1.05rem;
}

.package-rate-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(140, 106, 47, 0.14);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 244, 232, 0.9));
  box-shadow: 0 14px 24px rgba(22, 15, 9, 0.06);
}

.package-rate-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.package-rate-table th,
.package-rate-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(140, 106, 47, 0.14);
  border-right: 1px solid rgba(140, 106, 47, 0.14);
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
  vertical-align: middle;
}

.package-rate-table thead th {
  background: rgba(255, 248, 238, 0.92);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.package-rate-table tbody th {
  color: var(--navy);
  font-weight: 700;
  text-transform: uppercase;
}

.package-rate-table tr:last-child th,
.package-rate-table tr:last-child td {
  border-bottom: 0;
}

.package-rate-table th:last-child,
.package-rate-table td:last-child {
  border-right: 0;
}

.package-rate-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.62);
}

.package-rate-call {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.package-rate-call:hover,
.package-rate-call:focus-visible {
  color: var(--red);
}

.package-rate-mobile-card {
  display: none;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(140, 106, 47, 0.14);
}

.package-rate-mobile-copy {
  display: grid;
  gap: 0.3rem;
  text-align: center;
}

.package-rate-mobile-eyebrow {
  margin: 0;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.package-rate-mobile-title {
  margin: 0;
  color: var(--navy);
  font-size: 1.02rem;
}

.package-rate-mobile-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.package-rate-mobile-button {
  justify-self: center;
  min-width: 7.5rem;
}

.package-rate-mobile-global {
  display: none;
  width: 100%;
  max-width: 32rem;
  margin: 1.25rem auto 0;
}

.package-rate-pdf-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  align-items: end;
  padding: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.package-rate-pdf-modal[hidden] {
  display: none;
}

.package-rate-pdf-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.package-rate-pdf-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 15, 10, 0.7);
}

.package-rate-pdf-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: min(92dvh, 56rem);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(250, 244, 232, 0.98));
  border-radius: 28px;
  box-shadow: 0 28px 60px rgba(18, 15, 10, 0.24);
  overflow: hidden;
  transform: translateY(18px);
  transition: transform 0.22s ease;
}

.package-rate-pdf-modal.is-open .package-rate-pdf-panel {
  transform: translateY(0);
}

.package-rate-pdf-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem 0.85rem;
}

.package-rate-pdf-eyebrow {
  margin: 0;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.package-rate-pdf-header h2 {
  margin: 0.35rem 0 0;
  color: var(--navy);
  font-family: "Cinzel", serif;
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  line-height: 1.2;
}

.package-rate-pdf-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(140, 106, 47, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.package-rate-pdf-close:hover,
.package-rate-pdf-close:focus-visible {
  background: var(--red);
  color: #fff;
  transform: translateY(-1px);
}

.package-rate-pdf-body {
  display: grid;
  gap: 0.75rem;
  flex: 1;
  min-height: 0;
  padding: 0 1rem 1rem;
}

.package-rate-pdf-frame {
  width: 100%;
  height: 100%;
  min-height: 26rem;
  border: 1px solid rgba(140, 106, 47, 0.16);
  border-radius: 20px;
  background: #fff;
}

.package-rate-pdf-fallback {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: center;
}

.package-rate-pdf-fallback a {
  color: var(--blue);
  font-weight: 600;
}

body.package-rate-pdf-open {
  overflow: hidden;
}

.package-detail-page.is-embedded {
  background: transparent;
}

.package-detail-page.is-embedded .topbar,
.package-detail-page.is-embedded .site-header,
.package-detail-page.is-embedded .page-hero,
.package-detail-page.is-embedded .site-footer,
.package-detail-page.is-embedded .mobile-bottom-nav,
.package-detail-page.is-embedded .floating-contact-group {
  display: none;
}

.package-detail-page.is-embedded .package-detail-section {
  padding: 0;
}

.package-detail-page.is-embedded .section-heading,
.package-detail-page.is-embedded .package-chip-nav {
  display: none;
}

.package-detail-page.is-embedded .package-detail-stack {
  gap: 0;
}

.package-detail-page.is-embedded .package-detail-card {
  padding: 0;
  border-bottom: 0;
}

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

  .package-media-frame {
    grid-column: 1 / -1;
  }

  .package-media-strip {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .package-overview-card {
    grid-template-columns: 110px minmax(0, 1fr);
    grid-template-areas:
      "thumb copy"
      "thumb action";
    align-items: start;
  }

  .package-overview-link {
    justify-self: start;
    margin-top: 0.2rem;
  }

  .package-heading-row {
    flex-direction: column;
  }

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

@media (max-width: 720px) {
  .package-overview-grid,
  .package-meta-grid,
  .package-columns,
  .package-note-grid,
  .package-faq-grid {
    grid-template-columns: 1fr;
  }

  .package-detail-card {
    padding-bottom: 2rem;
  }

  .package-overview-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "thumb"
      "copy"
      "action";
    gap: 0.95rem;
    padding: 0.95rem;
  }

  .package-overview-thumb {
    min-height: 180px;
  }

  .package-detail-media,
  .package-media-strip {
    grid-template-columns: 1fr;
  }

  .package-media-strip {
    display: none;
  }

  .package-rate-block {
    display: none;
  }

  .package-rate-mobile-card {
    display: none;
  }

  .package-rate-mobile-global {
    display: grid;
  }

  .package-drawer-shell {
    padding: 0.45rem;
  }

  .package-drawer-panel {
    width: calc(100vw - 0.9rem);
    max-height: calc(100dvh - 0.45rem);
    border-radius: 26px;
  }

  .package-drawer-header {
    padding: 0 1rem 0.85rem;
  }

  .package-drawer-body {
    padding: 1rem;
  }

  .package-rate-table-wrap {
    margin: 0;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 18px;
    -webkit-overflow-scrolling: touch;
  }

  .package-rate-table {
    min-width: 760px;
  }

  .package-rate-table th,
  .package-rate-table td {
    padding: 0.8rem 0.85rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .package-rate-call {
    white-space: nowrap;
  }

  .package-media-frame > img,
  .package-media-thumb img {
    aspect-ratio: 4 / 3;
  }

  .package-overview-card h3 {
    max-width: none;
    font-size: 1.15rem;
  }

  .package-overview-card p {
    font-size: 0.92rem;
  }

  .package-overview-link {
    justify-self: start;
    width: fit-content;
  }

  .package-detail-card-centered .package-heading-row > div,
  .package-detail-card-centered .package-meta-grid,
  .package-detail-card-centered .package-columns > div,
  .package-detail-card-centered .package-note-card,
  .package-detail-card-centered .package-detail-content > p,
  .package-detail-card-centered .package-columns p,
  .package-detail-card-centered .package-note-card p,
  .package-detail-card-centered .package-list {
    max-width: none;
  }

  .package-detail-card-centered .package-heading-row h2 {
    font-size: clamp(1.45rem, 6.5vw, 1.9rem);
  }

  .package-detail-card-centered .package-detail-content {
    gap: 0.9rem;
  }

  .package-rate-pdf-modal {
    align-items: stretch;
    padding: 0.35rem;
  }

  .package-rate-pdf-panel {
    min-height: calc(100dvh - 0.7rem);
    border-radius: 24px;
  }

  .package-rate-pdf-header {
    padding: 0.9rem 0.9rem 0.8rem;
  }

  .package-rate-pdf-body {
    padding: 0 0.9rem 0.9rem;
  }

  .package-rate-pdf-frame {
    min-height: 0;
  }

  .package-chip-nav {
    gap: 0.6rem;
  }

  .package-chip-nav a {
    width: 100%;
    justify-content: flex-start;
  }

  .package-chip-nav.is-mobile-collapsed {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .package-chip-nav.is-mobile-collapsed a {
    display: none;
  }

  .package-chip-nav.is-mobile-collapsed a.is-active,
  .package-chip-nav.is-mobile-collapsed a[aria-current="page"] {
    display: inline-flex;
    width: 100%;
  }

  #details-mahabaleshwar .package-mobile-justify,
  #details-jyotirlinga .package-mobile-justify {
    text-align: justify;
    text-align-last: left;
    text-justify: inter-word;
    hyphens: auto;
  }

  .package-chip-nav.is-mobile-collapsed .package-chip-close {
    display: inline-flex;
  }
}

