:root {
  --ink: #10222b;
  --muted: #60727c;
  --line: #dce5ef;
  --paper: #ffffff;
  --mist: #f4f7fb;
  --teal: #0b3a70;
  --teal-dark: #062a55;
  --sun: #f6b83f;
  --coral: #ef6f5c;
  --green: #27a56b;
  --shadow: 0 18px 45px rgba(16, 34, 43, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 231, 231, 0.8);
  backdrop-filter: blur(16px);
}

.brand,
.admin-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Sora, sans-serif;
  font-weight: 800;
}

.brand img,
.admin-brand img {
  width: 104px;
  height: 62px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-weight: 700;
}

.main-nav a:hover,
.site-footer a:hover,
.section-heading a:hover {
  color: var(--teal);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
}

.btn-icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: currentColor;
  flex: 0 0 auto;
}

.btn-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn-primary {
  color: white;
  background: var(--teal);
}

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

.language-switch {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  min-height: 44px;
  padding: 4px;
  border: 1px solid rgba(8, 49, 94, 0.14);
  border-radius: var(--radius);
  background: var(--mist);
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 0 10px;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 900;
}

.language-switch a.is-active {
  color: white;
  background: var(--teal);
}

.btn-light {
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  padding: clamp(108px, 14vw, 150px) clamp(20px, 5vw, 72px) 64px;
  color: white;
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(5, 32, 41, 0.84), rgba(5, 32, 41, 0.48) 58%, rgba(5, 32, 41, 0.18));
}

.hero-content {
  max-width: 760px;
}

.hero-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--sun);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--sun);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero h1,
.page-hero h1,
.tour-detail-copy h1 {
  margin: 0;
  font-family: Sora, sans-serif;
  font-size: clamp(2.35rem, 6.1vw, 5.2rem);
  line-height: 1.02;
}

.hero p,
.page-hero p,
.tour-detail-copy p {
  max-width: 680px;
  margin: 20px 0 0;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
}

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

.quick-book {
  width: min(calc(100% - 40px), 1180px);
  margin: clamp(24px, 4vw, 48px) auto clamp(34px, 5vw, 62px);
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.quick-book a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  align-items: start;
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(16, 34, 43, 0.08);
}

.quick-book a:hover {
  border-color: rgba(8, 49, 94, 0.32);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(16, 34, 43, 0.08);
}

.quick-book-icon {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  color: var(--teal-dark);
  background: #eef4fb;
}

.quick-book-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.quick-book a:hover .quick-book-icon {
  color: white;
  background: var(--teal);
}

.quick-book strong,
.tour-card h3,
.section-heading h2,
.booking-shell h2,
.admin-panel h2 {
  font-family: Sora, sans-serif;
}

.quick-book span:not(.quick-book-icon),
.tour-card p,
.route-card p,
.site-footer p,
.admin-table span {
  color: var(--muted);
}

.section,
.contact-grid,
.booking-shell {
  padding: clamp(52px, 7vw, 86px) clamp(20px, 5vw, 72px);
}

.quick-book + .section {
  padding-top: clamp(36px, 5vw, 62px);
}

.muted-band {
  background: var(--mist);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 3rem);
}

.section-heading a {
  color: var(--teal-dark);
  font-weight: 900;
}

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

.tour-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 10px 28px rgba(16, 34, 43, 0.08);
}

.tour-card a {
  display: grid;
  height: 100%;
}

.tour-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.tour-card-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.tour-card-body > span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tour-card h3 {
  margin: 0;
  font-size: 1.18rem;
}

.tour-card p {
  margin: 0;
  min-height: 72px;
}

.tour-card-body div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.tour-card strong,
.price-line strong {
  color: var(--teal-dark);
  font-size: 1.35rem;
}

.tour-card em {
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.coordination-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(48px, 7vw, 86px) clamp(20px, 5vw, 72px);
  color: white;
  background: linear-gradient(135deg, #062a55 0%, #10222b 100%);
}

.coordination-copy {
  display: grid;
  gap: 18px;
  max-width: 680px;
}

.coordination-copy .eyebrow {
  margin: 0;
}

.coordination-copy h2 {
  margin: 0;
  font-family: Sora, sans-serif;
  font-size: clamp(2rem, 4.4vw, 4.2rem);
  line-height: 1.02;
}

.coordination-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.75;
}

.coordination-copy .btn {
  width: fit-content;
  margin-top: 4px;
}

.coordination-points {
  display: grid;
  gap: 14px;
}

.coordination-points div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.coordination-points span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: var(--teal-dark);
  background: white;
}

.coordination-points svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.coordination-points strong {
  font-family: Sora, sans-serif;
  font-size: 1.08rem;
}

.coordination-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.route-card {
  display: grid;
  gap: 12px;
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 30px rgba(16, 34, 43, 0.08);
}

.route-card > span {
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.route-card h3 {
  margin: 0;
  font-family: Sora, sans-serif;
  font-size: 1.45rem;
}

.route-card p {
  margin: 0;
}

.route-card div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.route-card small {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.route-card strong {
  color: var(--teal-dark);
  font-family: Sora, sans-serif;
  font-size: 1.55rem;
}

.route-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  padding: 0 16px;
  color: white;
  background: var(--teal-dark);
  border-radius: var(--radius);
  font-weight: 900;
}

.route-card a:hover {
  background: var(--teal);
}

.page-hero {
  color: white;
  background:
    linear-gradient(90deg, rgba(6, 42, 85, 0.94), rgba(11, 58, 112, 0.72), rgba(16, 34, 43, 0.34)),
    url("../img/tours/catalina1.jpg") center / cover;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(6, 42, 85, 0.94), rgba(11, 58, 112, 0.68), rgba(16, 34, 43, 0.28)),
    url("../img/tours/samana1.jpg") center / cover;
}

.compact-hero {
  min-height: 360px;
  display: grid;
  align-items: end;
  padding: 110px clamp(20px, 5vw, 72px) 54px;
}

.tour-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: clamp(34px, 5vw, 70px) clamp(20px, 5vw, 72px);
}

.tour-detail-media img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tour-detail-copy .eyebrow,
.booking-shell .eyebrow,
.section .eyebrow,
.page-hero .eyebrow {
  color: var(--sun);
}

.tour-detail-copy h1 {
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 4.2rem);
}

.tour-detail-copy p {
  color: var(--muted);
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(44px, 7vw, 86px) clamp(20px, 5vw, 72px);
}

.about-story-copy {
  display: grid;
  gap: 16px;
}

.about-story-copy h2,
.about-promise h2 {
  margin: 0;
  font-family: Sora, sans-serif;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1.05;
}

.about-story-copy p,
.about-promise p,
.about-service-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.about-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(180px, 0.75fr);
  grid-template-rows: 190px 190px;
  gap: 14px;
}

.about-media-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(16, 34, 43, 0.12);
}

.about-media-grid img:first-child {
  grid-row: 1 / span 2;
}

.about-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-service-grid article {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 30px rgba(16, 34, 43, 0.08);
}

.about-service-grid article > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--teal-dark);
  border-radius: var(--radius);
  background: #eef4fb;
}

.about-service-grid svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.about-service-grid h3 {
  margin: 0;
  font-family: Sora, sans-serif;
  font-size: 1.22rem;
}

.about-promise {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: clamp(48px, 7vw, 82px) clamp(20px, 5vw, 72px);
  color: white;
  background: linear-gradient(135deg, #062a55 0%, #10222b 100%);
}

.about-promise .eyebrow,
.about-promise p {
  color: rgba(255, 255, 255, 0.78);
}

.about-promise > div {
  display: grid;
  gap: 16px;
}

.about-promise dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.about-promise dl div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.about-promise dt,
.about-promise dd {
  margin: 0;
}

.about-promise dt {
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.about-promise dd {
  margin-top: 6px;
  font-family: Sora, sans-serif;
  font-weight: 900;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 22px 0;
}

.rich-text {
  color: var(--muted);
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(250px, 0.55fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 64px);
  background: var(--mist);
}

.transfer-wizard-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: clamp(28px, 4vw, 48px) clamp(20px, 5vw, 72px) clamp(52px, 7vw, 86px);
  background:
    linear-gradient(180deg, #e8f6f4 0 165px, var(--mist) 165px 100%);
}

.wizard-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(18px, 4vw, 52px);
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: clamp(22px, 3vw, 32px);
  color: white;
  border-radius: var(--radius) var(--radius) 0 0;
  background:
    linear-gradient(135deg, rgba(8, 49, 94, 0.96), rgba(16, 34, 43, 0.98));
  box-shadow: 0 16px 38px rgba(16, 34, 43, 0.14);
}

.wizard-intro-copy {
  display: grid;
  gap: 10px;
}

.wizard-intro h2 {
  margin: 0;
  font-family: Sora, sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.wizard-intro p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  line-height: 1.55;
}

.wizard-intro-highlights {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 8px;
  align-items: center;
}

.wizard-intro-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.booking-shell h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: clamp(16px, 2.2vw, 24px);
  border: 1px solid rgba(8, 49, 94, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 251, 0.98)),
    white;
  box-shadow: 0 18px 44px rgba(16, 34, 43, 0.1);
}

.transfer-wizard {
  width: 100%;
  gap: 18px;
  max-width: 1380px;
  margin: 0 auto;
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
}

.wizard-steps {
  position: relative;
  display: flex;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  padding: 0;
  margin: 0 0 4px;
  list-style: none;
}

.wizard-steps li {
  position: relative;
  flex: 1;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 10px;
  color: var(--muted);
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.step-icon {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: currentColor;
  flex: 0 0 auto;
}

.step-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.wizard-steps li.is-active {
  color: var(--ink);
  border-color: rgba(246, 184, 63, 0.7);
  background: var(--sun);
  box-shadow: 0 8px 18px rgba(246, 184, 63, 0.28);
}

.wizard-panel {
  display: none;
  gap: 14px;
}

.wizard-panel.is-active {
  display: grid;
}

.wizard-panel[data-step-panel="1"].is-active {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: start;
}

.wizard-panel[data-step-panel="1"] .form-grid,
.wizard-panel[data-step-panel="1"] .return-fields,
.wizard-panel[data-step-panel="1"] .wizard-actions {
  grid-column: 1;
}

.wizard-panel[data-step-panel="1"] .route-map-card {
  grid-column: 2;
  grid-row: 1 / span 3;
  position: sticky;
  top: 104px;
}

.wizard-copy h3,
.booking-summary h3 {
  margin: 0;
  font-family: Sora, sans-serif;
  font-size: 1.45rem;
}

.wizard-copy p {
  margin: 6px 0 0;
  color: var(--muted);
}

.route-map-card {
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfa;
}

.route-map-card h3 {
  margin: 0;
  font-family: Sora, sans-serif;
  font-size: 1rem;
}

.route-map-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.route-map {
  position: relative;
  z-index: 0;
  min-height: 292px;
  overflow: hidden;
  border: 1px solid rgba(16, 34, 43, 0.14);
  border-radius: var(--radius);
  background: #dce8e8;
}

.route-map.is-empty::after {
  content: attr(data-empty-label);
  position: absolute;
  inset: auto 16px 16px;
  z-index: 500;
  padding: 10px 12px;
  color: var(--ink);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  font-weight: 900;
}

.route-map-pin {
  position: relative;
}

.route-map-pin::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 50% 50% 50% 0;
  background: #e92d28;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.28);
  transform: rotate(-45deg);
}

.route-map-pin span {
  position: absolute;
  left: 12px;
  top: 8px;
  z-index: 1;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #a90000;
}

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

.vehicle-option {
  position: relative;
  display: grid;
  gap: 0;
  min-height: 270px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  cursor: pointer;
}

.vehicle-option:has(input:checked) {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(8, 49, 94, 0.15);
}

.vehicle-option input {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 20px;
  min-height: 20px;
  margin: 0;
  accent-color: var(--teal);
}

.vehicle-option-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--mist);
}

.vehicle-option-body {
  display: grid;
  grid-template-rows: 1fr auto;
  align-content: start;
  min-height: 142px;
  gap: 6px;
  padding: 14px;
}

.vehicle-option strong {
  font-family: Sora, sans-serif;
  font-size: 1.03rem;
}

.vehicle-option em,
.vehicle-option small {
  display: block;
  color: var(--muted);
  font-style: normal;
}

.vehicle-option em {
  margin-top: 6px;
}

.vehicle-option small {
  margin-top: 8px;
  font-weight: 800;
}

.vehicle-option b {
  align-self: end;
  color: var(--teal-dark);
  font-family: Sora, sans-serif;
  font-size: 1.28rem;
}

.form-note {
  padding: 12px;
  color: #8a5a00;
  border-radius: var(--radius);
  background: #fff4d8;
  font-weight: 800;
}

.wizard-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 2px;
}

.booking-summary {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
}

.booking-summary dl {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
}

.booking-summary dl div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(96, 114, 124, 0.16);
}

.booking-summary dt {
  color: var(--muted);
  font-weight: 900;
}

.booking-summary dd {
  margin: 0;
  font-weight: 800;
}

.booking-summary .summary-total {
  align-items: center;
  border-bottom: 0;
}

.booking-summary .summary-total dd {
  color: var(--teal-dark);
  font-family: Sora, sans-serif;
  font-size: 1.6rem;
}

.confirmation-page {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: clamp(38px, 7vw, 86px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(180deg, rgba(232, 246, 244, 0.9), rgba(244, 250, 249, 1)),
    var(--mist);
}

.confirmation-card {
  width: min(100%, 820px);
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(8, 49, 94, 0.18);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 24px 60px rgba(16, 34, 43, 0.12);
}

.confirmation-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.confirmation-check {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--ink);
  border-radius: 50%;
  background: var(--sun);
}

.confirmation-check svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.confirmation-hero h1,
.confirmation-details h2 {
  margin: 0;
  font-family: Sora, sans-serif;
}

.confirmation-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.confirmation-hero p {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.confirmation-number {
  display: grid;
  gap: 6px;
  padding: 18px;
  color: white;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}

.confirmation-number span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.confirmation-number strong {
  font-family: Sora, sans-serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  letter-spacing: 0;
}

.confirmation-details {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
}

.confirmation-details dl {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
}

.confirmation-details dl div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(96, 114, 124, 0.16);
}

.confirmation-details dt {
  color: var(--muted);
  font-weight: 900;
}

.confirmation-details dd {
  margin: 0;
  font-weight: 850;
}

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

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

.transfer-wizard [data-from-select],
.transfer-wizard [data-to-select] {
  min-width: 0;
}

.transfer-wizard label:has([data-from-select]),
.transfer-wizard label:has([data-to-select]) {
  grid-column: 1 / -1;
}

.return-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(8, 49, 94, 0.18);
  border-radius: var(--radius);
  background: #f8fbfa;
}

.return-fields legend {
  padding: 0 8px;
  color: var(--teal-dark);
  font-family: Sora, sans-serif;
  font-weight: 900;
}

label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.booking-form .form-grid > label,
.booking-form > label,
.booking-form .wizard-panel > label,
.return-fields > label {
  min-height: 76px;
  align-content: start;
  gap: 7px;
  padding: 12px 14px;
  color: var(--muted);
  border: 1px solid rgba(96, 114, 124, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 253, 252, 0.98)),
    white;
  box-shadow: 0 8px 18px rgba(16, 34, 43, 0.04);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.booking-form .form-grid > label:focus-within,
.booking-form > label:focus-within,
.booking-form .wizard-panel > label:focus-within,
.return-fields > label:focus-within {
  border-color: rgba(8, 49, 94, 0.7);
  background: white;
  box-shadow: 0 0 0 4px rgba(8, 49, 94, 0.11), 0 12px 26px rgba(16, 34, 43, 0.07);
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 9px 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  font-size: 0.96rem;
  font-weight: 650;
}

.transfer-wizard input,
.transfer-wizard select,
.transfer-wizard textarea {
  box-shadow: inset 0 1px 0 rgba(16, 34, 43, 0.03);
}

.booking-form .form-grid > label > input,
.booking-form .form-grid > label > select,
.booking-form > label > textarea,
.booking-form .wizard-panel > label > textarea,
.return-fields > label > input {
  min-height: 34px;
  padding: 0;
  color: var(--ink);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  font-weight: 850;
  text-transform: none;
}

.booking-form .form-grid > label > select {
  padding-right: 24px;
}

.booking-form > label > textarea,
.booking-form .wizard-panel > label > textarea {
  min-height: 92px;
  padding-top: 2px;
  line-height: 1.45;
  text-transform: none;
}

textarea {
  resize: vertical;
}

.choice-group {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.choice-group legend {
  grid-column: 1 / -1;
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.choice-group label {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(96, 114, 124, 0.24);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 8px 18px rgba(16, 34, 43, 0.04);
  cursor: pointer;
  font-size: 1rem;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.choice-group input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-group span {
  font-weight: 900;
}

.choice-group label:has(input:checked) {
  color: white;
  border-color: var(--teal);
  background: var(--teal);
  box-shadow: 0 12px 24px rgba(8, 49, 94, 0.2);
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(8, 49, 94, 0.14);
}

.booking-form .form-grid > label > input:focus,
.booking-form .form-grid > label > select:focus,
.booking-form > label > textarea:focus,
.booking-form .wizard-panel > label > textarea:focus,
.return-fields > label > input:focus {
  box-shadow: none;
}

.payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  border: 0;
}

.payment-options legend {
  width: 100%;
  margin-bottom: 2px;
  font-weight: 900;
}

.payment-options label,
.check-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
}

.payment-options input,
.check-row input {
  width: auto;
  min-height: auto;
}

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

.contact-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(26px, 5vw, 72px);
}

.contact-shell .contact-grid {
  grid-template-columns: 1fr;
  align-content: start;
}

.contact-form {
  max-width: 820px;
}

.contact-grid > * {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.contact-grid a:hover {
  border-color: rgba(8, 49, 94, 0.35);
  box-shadow: 0 12px 26px rgba(16, 34, 43, 0.08);
}

.contact-card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  color: var(--teal-dark);
  background: #eef4fb;
}

.contact-card-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.contact-card-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.contact-card-copy span {
  color: var(--muted);
}

.contact-form .btn {
  width: fit-content;
}

.site-cta {
  width: min(calc(100% - 40px), 1180px);
  margin: clamp(34px, 5vw, 56px) auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(8, 49, 94, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #eef4fb 0%, #ffffff 100%);
  box-shadow: 0 16px 38px rgba(16, 34, 43, 0.08);
}

.site-cta div {
  display: grid;
  gap: 7px;
}

.site-cta > div > span {
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.site-cta h2 {
  margin: 0;
  font-family: Sora, sans-serif;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  line-height: 1.08;
}

.site-cta p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
}

.site-cta nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.site-footer {
  padding: clamp(38px, 5vw, 58px) clamp(20px, 5vw, 72px);
  color: white;
  background: #151515;
}

.footer-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.8fr) minmax(220px, 0.85fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.footer-logo {
  width: min(210px, 62vw);
  height: auto;
  object-fit: contain;
}

.footer-bio {
  max-width: 420px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
}

.footer-social a:hover {
  color: var(--sun);
  border-color: var(--sun);
}

.footer-social svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: none;
}

.footer-menu,
.footer-contact {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-menu h2,
.footer-contact h2 {
  margin: 0 0 6px;
  color: white;
  font-family: Sora, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
}

.footer-menu a,
.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.footer-menu a:hover,
.footer-contact a:hover {
  color: var(--sun);
}

.floating-whatsapp {
  position: fixed;
  right: clamp(18px, 3vw, 28px);
  bottom: clamp(18px, 3vw, 28px);
  z-index: 30;
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: white;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 18px 36px rgba(16, 34, 43, 0.25);
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(16, 34, 43, 0.3);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.flash {
  margin: 16px clamp(20px, 5vw, 72px);
  padding: 14px 16px;
  border-radius: var(--radius);
  font-weight: 800;
}

.flash-success {
  color: #0f5132;
  background: #d9f5e5;
}

.flash-error {
  color: #842029;
  background: #f8d7da;
}

.admin-auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  background:
    radial-gradient(circle at 16% 18%, rgba(8, 49, 94, 0.16), transparent 28%),
    linear-gradient(135deg, #edf6f5 0%, #ffffff 48%, #f7f1df 100%);
}

.auth-shell {
  width: min(100%, 1060px);
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  overflow: hidden;
  border: 1px solid rgba(96, 114, 124, 0.18);
  border-radius: 8px;
  background: white;
  box-shadow: 0 28px 80px rgba(16, 34, 43, 0.16);
}

.auth-brand-panel {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 34px;
  padding: clamp(28px, 5vw, 54px);
  color: white;
  background:
    linear-gradient(150deg, rgba(6, 42, 85, 0.96), rgba(11, 58, 112, 0.88)),
    url("../img/tours/saonaisland1.jpg") center / cover;
}

.auth-brand-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 42, 85, 0.08), rgba(16, 34, 43, 0.42));
}

.auth-brand-panel > * {
  position: relative;
  z-index: 1;
}

.auth-brand-panel img {
  width: 112px;
  height: auto;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.auth-brand-panel span,
.auth-card-heading span {
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.auth-brand-panel h1 {
  max-width: 480px;
  margin: 10px 0 0;
  font-family: Sora, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.auth-brand-panel dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.auth-brand-panel dl div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.auth-brand-panel dt,
.auth-brand-panel dd {
  margin: 0;
}

.auth-brand-panel dt {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.auth-brand-panel dd {
  margin-top: 4px;
  font-family: Sora, sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
}

.auth-card {
  display: grid;
  gap: 18px;
  align-content: center;
  padding: clamp(28px, 5vw, 56px);
  background: #fbfdfd;
}

.auth-card-heading {
  display: grid;
  gap: 6px;
}

.auth-card h2 {
  margin: 0;
  font-family: Sora, sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: 0;
}

.auth-card form {
  display: grid;
  gap: 16px;
}

.auth-card .flash {
  margin: 0;
}

.auth-card label {
  min-height: 78px;
  align-content: start;
  gap: 8px;
  padding: 13px 15px;
  color: var(--muted);
  border: 1px solid rgba(96, 114, 124, 0.24);
  border-radius: 8px;
  background: white;
  box-shadow: 0 8px 18px rgba(16, 34, 43, 0.04);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.auth-card label:focus-within {
  border-color: rgba(8, 49, 94, 0.7);
  box-shadow: 0 0 0 4px rgba(8, 49, 94, 0.11), 0 12px 26px rgba(16, 34, 43, 0.07);
}

.auth-card input {
  min-height: 34px;
  padding: 0;
  color: var(--ink);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 1.08rem;
  font-weight: 850;
  text-transform: none;
}

.auth-card input:focus {
  box-shadow: none;
}

.auth-card .btn {
  min-height: 54px;
  justify-content: center;
  font-size: 1rem;
}

.admin-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px 1fr;
  background: #f6f8f8;
}

.admin-sidebar {
  display: grid;
  align-content: start;
  gap: 24px;
  padding: 22px;
  color: white;
  background:
    linear-gradient(180deg, rgba(6, 42, 85, 0.98), rgba(11, 58, 112, 0.94)),
    var(--teal-dark);
}

.admin-sidebar .admin-brand {
  justify-content: flex-start;
  color: white;
}

.admin-sidebar .admin-brand img {
  width: 132px;
  height: 82px;
  padding: 0;
  object-fit: contain;
}

.admin-sidebar nav {
  display: grid;
  gap: 8px;
}

.admin-sidebar nav a {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid transparent;
}

.admin-sidebar nav a span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  color: white;
  background: rgba(255, 255, 255, 0.12);
}

.admin-sidebar nav a svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.admin-sidebar nav a:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
}

.admin-sidebar nav a:hover span {
  color: var(--teal-dark);
  background: white;
}

.admin-main {
  min-width: 0;
  padding: 24px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.admin-topbar span {
  color: var(--muted);
  font-weight: 800;
}

.admin-topbar h1 {
  margin: 0;
  font-family: Sora, sans-serif;
}

.admin-logout-form {
  margin: 0;
}

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

.metric-grid div,
.admin-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 8px 20px rgba(16, 34, 43, 0.06);
}

.metric-grid div {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.metric-grid span {
  color: var(--muted);
  font-weight: 800;
}

.metric-grid strong {
  font-family: Sora, sans-serif;
  font-size: 2rem;
}

.admin-panel {
  overflow: hidden;
}

.admin-empty {
  margin: 0;
  padding: 18px;
  color: var(--muted);
  font-weight: 800;
}

.admin-message-list {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.admin-message-list.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-message {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfd;
}

.admin-message.is-new {
  border-color: rgba(8, 49, 94, 0.35);
  box-shadow: inset 4px 0 0 var(--teal);
}

.admin-message header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.admin-message header div,
.admin-message dl,
.admin-message dl div {
  display: grid;
  gap: 4px;
}

.admin-message strong {
  font-family: Sora, sans-serif;
  font-size: 1rem;
}

.admin-message span,
.admin-message dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-message dd,
.admin-message p {
  margin: 0;
}

.admin-message p {
  line-height: 1.55;
}

.admin-panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.admin-panel-heading h2 {
  margin: 0;
}

.admin-panel-heading p {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.admin-panel-heading a,
.admin-panel-heading span {
  color: var(--teal-dark);
  font-weight: 900;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.admin-table th,
.admin-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.admin-table th {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.admin-table td {
  background: white;
}

.admin-table td strong,
.admin-table td span {
  display: block;
}

.status-form select {
  min-height: 38px;
  padding: 6px 8px;
}

.admin-route-form {
  display: grid;
  gap: 16px;
  padding: 18px 20px 20px;
}

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

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

.admin-price-grid fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
}

.admin-price-grid legend {
  padding: 0 6px;
  font-weight: 900;
}

.admin-check {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-check input {
  width: auto;
  min-height: auto;
}

.admin-form-actions {
  display: flex;
  justify-content: flex-end;
}

.admin-route-list {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.admin-route-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.admin-route-card summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px;
  cursor: pointer;
}

.admin-route-card summary span,
.admin-route-card summary strong,
.admin-route-card summary em {
  display: block;
}

.admin-route-card summary em {
  margin-top: 3px;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.admin-route-card summary b {
  color: var(--teal-dark);
  font-family: Sora, sans-serif;
}

@media (max-width: 980px) {
  .auth-shell {
    grid-template-columns: 1fr;
  }

  .auth-brand-panel {
    min-height: 360px;
  }

  .site-header,
  .hero,
  .tour-detail,
  .about-story,
  .about-promise,
  .coordination-band,
  .site-cta,
  .booking-shell,
  .contact-shell,
  .transfer-wizard-section {
    grid-template-columns: 1fr;
  }

  .main-nav {
    justify-content: start;
    order: 3;
    grid-column: 1 / -1;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .tour-grid,
  .quick-book,
  .route-card-grid,
  .about-service-grid,
  .contact-grid,
  .vehicle-options,
  .footer-inner,
  .metric-grid,
  .admin-form-grid,
  .admin-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .wizard-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .wizard-intro-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .wizard-intro-highlights span {
    justify-content: center;
  }

  .wizard-panel[data-step-panel="1"].is-active {
    grid-template-columns: 1fr;
  }

  .wizard-panel[data-step-panel="1"] .form-grid,
  .wizard-panel[data-step-panel="1"] .return-fields,
  .wizard-panel[data-step-panel="1"] .wizard-actions,
  .wizard-panel[data-step-panel="1"] .route-map-card {
    grid-column: auto;
  }

  .wizard-panel[data-step-panel="1"] .route-map-card {
    grid-row: auto;
    position: static;
  }

  .admin-page {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
  }

  .admin-sidebar nav {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .admin-message-list.compact {
    grid-template-columns: 1fr;
  }

  .site-cta nav {
    justify-content: flex-start;
  }
}

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

  .header-actions {
    justify-content: end;
  }

  .hero {
    min-height: 610px;
    padding-top: 110px;
  }

  .tour-grid,
  .quick-book,
  .route-card-grid,
  .about-service-grid,
  .about-promise dl,
  .coordination-points,
  .contact-grid,
  .form-grid,
  .return-fields,
  .vehicle-options,
  .footer-inner,
  .metric-grid,
  .admin-form-grid,
  .admin-price-grid,
  .admin-price-grid fieldset,
  .admin-sidebar nav {
    grid-template-columns: 1fr;
  }

  .wizard-steps,
  .booking-summary dl div,
  .confirmation-details dl div {
    grid-template-columns: 1fr;
  }

  .wizard-steps {
    display: grid;
  }

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

  .wizard-actions {
    justify-content: stretch;
  }

  .wizard-actions .btn {
    flex: 1;
  }

  .site-cta nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .about-media-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(150px, 220px));
  }

  .about-media-grid img:first-child {
    grid-row: auto;
  }

  .section-heading,
  .admin-topbar,
  .admin-panel-heading {
    align-items: start;
    flex-direction: column;
  }

  .booking-form {
    padding: 16px;
  }

  .route-map {
    min-height: 300px;
  }
}

@media print {
  @page {
    margin: 0.55in;
  }

  .site-header,
  .site-footer,
  .floating-whatsapp,
  .confirmation-actions {
    display: none !important;
  }

  body,
  .confirmation-page {
    background: white !important;
  }

  .confirmation-page {
    min-height: auto;
    padding: 0;
  }

  .confirmation-card {
    width: 100%;
    max-width: 7.3in;
    margin: 0 auto;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .confirmation-hero {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    margin-bottom: 22px;
  }

  .confirmation-check {
    width: 42px;
    height: 42px;
    color: #10222b;
    border: 2px solid #10222b;
    background: white !important;
  }

  .confirmation-check svg {
    width: 25px;
    height: 25px;
  }

  .confirmation-hero h1 {
    font-size: 34pt;
    line-height: 1.05;
  }

  .confirmation-hero p {
    max-width: none;
    margin-top: 12px;
    color: #26323a;
    font-size: 13pt;
  }

  .confirmation-number {
    margin: 0 0 22px;
    padding: 18px 20px;
    color: #10222b;
    border: 3px solid #10222b;
    background: #f4faf9 !important;
    box-shadow: none;
  }

  .confirmation-number span {
    color: #10222b;
    font-size: 10pt;
    letter-spacing: 0;
  }

  .confirmation-number strong {
    color: #10222b;
    font-size: 48pt;
    line-height: 1.05;
  }

  .confirmation-details {
    padding: 18px;
    border: 1.5px solid #b9caca;
    background: white !important;
  }

  .confirmation-details h2 {
    font-size: 21pt;
  }

  .confirmation-details dl div {
    grid-template-columns: 1.9in 1fr;
    border-bottom-color: #cfd8d8;
  }

  .confirmation-details dt,
  .confirmation-details dd {
    color: #10222b;
    font-size: 12pt;
  }
}
