/* ==========================================================================
   Sky Tours & Travels — entity page (tours.html)
   Builds on tokens/primitives defined in styles.css. Presentation is fully
   scoped to body.tours-page so the approved Holdings homepage, Properties,
   Insurance and Contact pages are unaffected. Container, hero, card and
   modal conventions mirror the already-approved Insurance/Properties
   recipes so the entity feels part of the same system.
   ========================================================================== */

body.tours-page {
  background: var(--bg);
}

/* [hidden] ties on specificity with the flex/grid display rules below, so
   without this the browser's cascade order lets display:grid/flex win and a
   "hidden" modal / finder-results / row still renders. Same fix as
   properties.css / contact.css / insurance.css. */
.tmodal-overlay[hidden],
.finder-results[hidden],
.tmodal-subnav[hidden],
.enquiry-context[hidden],
.enquiry-form[hidden],
.enquiry-form .form-row[hidden],
.quick-quote-success[hidden] {
  display: none !important;
}

/* ---- Fixed chrome (utility bar + header), same recipe as Insurance --------- */

.tours-utility {
  background: var(--brand-blue);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
  position: fixed;
  inset: 0 0 auto;
  z-index: 101;
  width: 100%;
}

.tours-utility__inner {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  height: var(--utility-h-mobile);
}

@media (min-width: 768px) {
  .tours-utility__inner {
    height: var(--utility-h);
  }
}

/* ≥1024px: genuine three-zone layout (Holdings link / Our Businesses / contact
   cluster) instead of the compact two-item flex row used below that width.
   Grid, not hard-coded margins, so centering stays real at every width in
   this range and the right cluster can never collide with the group toggle. */
@media (min-width: 1024px) {
  .tours-utility__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
  }
}

.tours-utility__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--white);
  font-weight: 600;
  white-space: nowrap;
  transition: opacity 0.2s var(--ease);
}

.tours-utility__back:hover {
  opacity: 0.85;
}

/* Below 1024px, the group toggle isn't a grid cell yet — push it (and the
   contact/social cluster after it) to the right edge, next to the Holdings
   link, matching the approved compact/mobile arrangement. */
.tours-utility .entity-group-toggle {
  margin-left: auto;
}

@media (min-width: 1024px) {
  .tours-utility__back {
    grid-column: 1;
    justify-self: start;
  }

  .tours-utility .entity-group-toggle {
    grid-column: 2;
    justify-self: center;
    margin-left: 0;
  }

  .tours-utility__right {
    grid-column: 3;
    justify-self: end;
  }
}

.tours-utility__right {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  min-width: 0;
}

.tours-utility__contact {
  display: none;
  align-items: center;
  gap: 1.1rem;
}

.tours-utility__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: inherit;
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}

.tours-utility__contact a:hover {
  color: var(--white);
}

@media (min-width: 560px) {
  .tours-utility__contact {
    display: inline-flex;
  }

  /* .tours-utility__contact a sets display:inline-flex at specificity
     (0,1,1) — a plain single-class selector here would lose that tie and
     stay visible regardless of this media query. Qualifying with the
     .tours-utility__contact ancestor raises this to (0,2,0) so the hide
     rule actually wins, independent of source order. */
  .tours-utility__contact .tours-utility__contact--email {
    display: none;
  }
}

@media (min-width: 760px) {
  .tours-utility__contact .tours-utility__contact--email {
    display: inline-flex;
  }
}

/* Compact office-location item. Held back until 1180px — the entity-group
   toggle next to it has previously collided with the phone number at
   1024px, so location only ever appears once there's clearly spare room. */
.tours-utility__contact .tours-utility__contact--location {
  display: none;
}

@media (min-width: 1180px) {
  .tours-utility__contact .tours-utility__contact--location {
    display: inline-flex;
  }
}

.tours-utility .social-icons {
  display: none;
}

@media (min-width: 900px) {
  .tours-utility .social-icons {
    display: flex;
  }
}

body.tours-page .header {
  top: var(--utility-h-mobile);
}

body.tours-page .tours-hero {
  margin-top: calc(var(--utility-h-mobile) + var(--header-h-mobile));
}

@media (min-width: 768px) {
  body.tours-page .header {
    top: var(--utility-h);
  }

  body.tours-page .tours-hero {
    margin-top: calc(var(--utility-h) + var(--header-h));
  }
}

body.tours-page .nav-links {
  gap: 1.5rem;
}

button.header-cta {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* ---- Shared centred container (same formula as Properties/Insurance) ------ */

.tours-container {
  width: min(1320px, calc(100% - 36px));
  margin-inline: auto;
}

@media (min-width: 390px) {
  .tours-container {
    width: min(1320px, calc(100% - 44px));
  }
}

@media (min-width: 768px) {
  .tours-container {
    width: min(1320px, calc(100% - 64px));
  }
}

@media (min-width: 1024px) {
  .tours-container {
    width: min(1320px, calc(100% - 88px));
  }
}

@media (min-width: 1440px) {
  .tours-container {
    width: min(1320px, calc(100% - 112px));
  }
}

body.tours-page main [id] {
  scroll-margin-top: calc(var(--utility-h-mobile) + var(--header-h-mobile) + 18px);
}

@media (min-width: 768px) {
  body.tours-page main [id] {
    scroll-margin-top: calc(var(--utility-h) + var(--header-h) + 22px);
  }
}

/* ---- Typography scale (scoped override of styles.css .section-title) ------ */

body.tours-page .section-title h2 {
  margin-top: 0.55rem;
  font-size: 27px;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  body.tours-page .section-title h2 {
    font-size: 31px;
  }
}

@media (min-width: 1024px) {
  body.tours-page .section-title h2 {
    font-size: 36px;
  }
}

body.tours-page .section-title p {
  margin-top: 12px;
  max-width: 640px;
  line-height: 1.65;
}

body.tours-page .eyebrow {
  font-size: 13px;
}

.section-title--centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-title--centered h2 {
  max-width: 720px;
  margin-inline: auto;
}

.section-title--centered p {
  max-width: 620px;
  margin-inline: auto;
}

body.tours-page .btn-primary .btn-arrow,
body.tours-page .btn-secondary .btn-arrow {
  transition: transform 0.2s var(--ease);
}

body.tours-page .btn-primary:hover .btn-arrow,
body.tours-page .btn-secondary:hover .btn-arrow {
  transform: translateX(3px);
}

.footer-brand__parent {
  margin-top: -0.6rem;
  color: var(--text-on-dark-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.whatsapp-btn {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}

.whatsapp-btn:hover {
  background: #1fb955;
  border-color: #1fb955;
}

/* ---- Section rhythm -------------------------------------------------------- */

.tours-section {
  padding: 40px 0;
}

@media (min-width: 768px) {
  .tours-section {
    padding: 56px 0;
  }
}

@media (min-width: 1024px) {
  .tours-section {
    padding: 64px 0;
  }
}

.tours-section--muted {
  background: var(--surface-muted);
}

.tours-section--compact {
  padding: 36px 0;
}

@media (min-width: 768px) {
  .tours-section--compact {
    padding: 44px 0;
  }
}

/* ---- Tours hero -------------------------------------------------------------- */

.tours-hero {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: var(--brand-blue-deep);
}

@media (min-width: 768px) {
  .tours-hero {
    height: 380px;
  }
}

@media (min-width: 1024px) {
  .tours-hero {
    height: 410px;
  }
}

@media (min-width: 1180px) {
  .tours-hero {
    height: 430px;
  }
}

@media (min-width: 1440px) {
  .tours-hero {
    height: 460px;
  }
}

.tours-hero__media,
.tours-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tours-hero__media img {
  object-fit: cover;
  object-position: center 40%;
}

.tours-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 16, 38, 0.8) 0%,
    rgba(10, 16, 38, 0.52) 38%,
    rgba(10, 16, 38, 0.14) 62%,
    rgba(10, 16, 38, 0) 80%
  );
}

.tours-hero .tours-container {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
}

.tours-hero__content {
  max-width: 560px;
  color: var(--white);
  padding: 1.5rem 0;
}

@media (min-width: 1024px) {
  .tours-hero__content {
    max-width: 600px;
  }
}

.tours-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tours-hero__eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-green);
}

.tours-hero__headline {
  margin-top: 0.85rem;
  font-size: 31px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.015em;
}

@media (min-width: 768px) {
  .tours-hero__headline {
    font-size: 36px;
  }
}

@media (min-width: 1024px) {
  .tours-hero__headline {
    font-size: 42px;
  }
}

@media (min-width: 1180px) {
  .tours-hero__headline {
    font-size: 46px;
  }
}

@media (min-width: 1440px) {
  .tours-hero__headline {
    font-size: 50px;
  }
}

.tours-hero__text {
  margin-top: 0.9rem;
  max-width: 44ch;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
  .tours-hero__text {
    font-size: 16.5px;
  }
}

.tours-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.tours-hero__actions .btn {
  min-height: 45px;
}

/* ---- Find Your Safari (finder) ------------------------------------------------ */

.finder-results {
  max-width: 720px;
  margin: 28px auto 0;
  padding: 20px;
  border-radius: 14px;
  background: rgba(0, 168, 89, 0.06);
  border: 1px solid rgba(0, 168, 89, 0.2);
}

.finder-results__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.finder-results__head span {
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 0.92rem;
}

.finder-reset {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border: none;
  background: none;
  color: var(--brand-green);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: inherit;
}

.finder-results .safari-row-list {
  margin-top: 14px;
}

.finder-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

@media (min-width: 560px) {
  .finder-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  /* Flexbox instead of grid at this breakpoint lets justify-content:center
     balance an incomplete last row automatically (7 tiles = 4 + 3), at any
     width >=1024px, without hardcoded margins. Same fix as insurance.css. */
  .finder-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .finder-tile {
    flex: 0 0 calc((100% - 48px) / 4);
  }
}

.finder-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 14px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}

.finder-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(30, 49, 107, 0.24);
}

.finder-tile.is-active {
  background: rgba(0, 168, 89, 0.07);
  border-color: rgba(0, 168, 89, 0.4);
}

.finder-tile .icon-circle {
  width: 44px;
  height: 44px;
}

.finder-tile__label {
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-blue);
  line-height: 1.3;
}

/* ---- Compact row (shared: finder results, related safaris, destination lists) - */

.safari-row-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.safari-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  min-width: 0;
  padding: 10px 12px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 11px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.safari-row:hover {
  border-color: rgba(30, 49, 107, 0.26);
  transform: translateY(-2px);
}

.safari-row__media {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 9px;
  overflow: hidden;
  background: var(--surface-muted);
}

.safari-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.safari-row__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.safari-row__title {
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 14.5px;
}

.safari-row__desc {
  color: var(--text-muted);
  font-size: 12.5px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.safari-row__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 0.8rem;
  transition: color 0.2s var(--ease);
}

.safari-row__cta svg {
  transition: transform 0.2s var(--ease);
}

.safari-row:hover .safari-row__cta {
  color: var(--brand-green);
}

.safari-row:hover .safari-row__cta svg {
  transform: translateX(3px);
}

@media (max-width: 480px) {
  .safari-row__cta span {
    display: none;
  }
}

/* ---- Featured Safari Package cards ------------------------------------------- */

.package-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

@media (min-width: 700px) {
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .package-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

/* Whole-card click target sits underneath (z-index:1); Request Quote and
   Share are real buttons layered above it (z-index:2) so they stay
   independently clickable instead of triggering "Explore Safari". */
.package-card__hit {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.package-card__quote,
.package-card__icon-btn {
  position: relative;
  z-index: 2;
}

.package-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 49, 107, 0.22);
  box-shadow: var(--shadow-sm);
}

.package-card__media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--surface-strong);
}

.package-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.package-card:hover .package-card__media img {
  transform: scale(1.04);
}

.package-card__duration {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  display: inline-flex;
  align-items: center;
  height: 25px;
  padding: 0 0.65rem;
  border-radius: 999px;
  background: rgba(10, 16, 38, 0.6);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.package-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.package-card__title {
  color: var(--brand-blue);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.28;
}

.package-card__dest {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  margin-top: 0.4rem;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.package-card__dest svg {
  flex-shrink: 0;
  color: var(--brand-green);
}

.package-card__desc {
  margin-top: 8px;
  color: var(--text-muted);
  line-height: 1.55;
  font-size: 14px;
  flex: 1;
}

.package-card__price {
  display: block;
  margin-top: 10px;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 0.86rem;
}

.package-card__footer {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.package-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: none;
  background: none;
  padding: 0;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: inherit;
}

.package-card__cta svg {
  transition: transform 0.2s var(--ease);
}

.package-card:hover .package-card__cta {
  color: var(--brand-green);
}

.package-card:hover .package-card__cta svg {
  transform: translateX(3px);
}

.package-card__actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.package-card__quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding-inline: 12px;
  border-radius: 999px;
  border: 1px solid rgba(30, 49, 107, 0.24);
  background: transparent;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.package-card__quote:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: var(--white);
}

.package-card__icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  background: var(--surface);
  color: var(--brand-blue);
  cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.package-card__icon-btn:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: var(--white);
}

/* ---- Destination cards (immersive, image-led) --------------------------------- */

.destination-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 32px;
}

@media (min-width: 640px) {
  .destination-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

.destination-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
}

.destination-card__hit {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.destination-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.destination-card:hover img {
  transform: scale(1.05);
}

.destination-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 16, 38, 0) 45%, rgba(10, 16, 38, 0.82) 100%);
}

.destination-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  padding: 14px;
  text-align: left;
  color: var(--white);
}

.destination-card__name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

@media (min-width: 480px) {
  .destination-card__name {
    font-size: 16px;
  }
}

@media (min-width: 640px) {
  .destination-card__name {
    font-size: 18px;
  }
}

.destination-card__tags {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.3;
}

.destination-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 8px;
  color: var(--white);
  font-weight: 700;
  font-size: 12px;
}

.destination-card__cta svg {
  transition: transform 0.2s var(--ease);
}

.destination-card:hover .destination-card__cta svg {
  transform: translateX(3px);
}

.destination-card__share {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: rgba(10, 16, 38, 0.45);
  backdrop-filter: blur(3px);
  color: var(--white);
  cursor: pointer;
}

.destination-card__share:hover {
  background: rgba(10, 16, 38, 0.65);
}

/* ---- Editorial: Planning From Abroad (image / text, 48/52) --------------------- */

.tours-editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

@media (min-width: 860px) {
  .tours-editorial {
    grid-template-columns: 48% 1fr;
    gap: 44px;
  }
}

.tours-editorial__media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.tours-editorial__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tours-editorial__copy h2 {
  margin-top: 0.5rem;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--brand-blue);
  line-height: 1.22;
}

@media (min-width: 768px) {
  .tours-editorial__copy h2 {
    font-size: 30px;
  }
}

@media (min-width: 1024px) {
  .tours-editorial__copy h2 {
    font-size: 34px;
  }
}

.tours-editorial__copy p {
  margin-top: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 15.5px;
  max-width: 52ch;
}

.tours-editorial__copy .btn {
  margin-top: 20px;
  min-height: 44px;
}

/* ---- Experience panels ---------------------------------------------------------- */

.experience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}

@media (min-width: 640px) {
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .experience-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}

.experience-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 13px;
  overflow: hidden;
  transition: transform 0.22s var(--ease), border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.experience-card:hover {
  transform: translateY(-3px);
  border-color: rgba(30, 49, 107, 0.24);
  box-shadow: var(--shadow-sm);
}

.experience-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.experience-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-card__body {
  padding: 16px 18px 18px;
}

.experience-card__title {
  color: var(--brand-blue);
  font-size: 17px;
  font-weight: 700;
}

.experience-card__desc {
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.experience-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 12px;
  border: none;
  background: none;
  padding: 0;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 0.84rem;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s var(--ease);
}

.experience-card:hover .experience-card__cta {
  color: var(--brand-green);
}

.experience-card__cta svg {
  transition: transform 0.2s var(--ease);
}

.experience-card:hover .experience-card__cta svg {
  transform: translateX(3px);
}

/* ---- Why Sky Tours (value grid) — same recipe as Insurance --------------------- */

.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 28px;
}

@media (min-width: 560px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .value-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.value-item {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 13px;
  transition: transform 0.22s var(--ease), border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.value-item:hover {
  transform: translateY(-3px);
  border-color: rgba(30, 49, 107, 0.24);
  box-shadow: var(--shadow-sm);
}

.value-item h3 {
  margin-top: 14px;
  color: var(--brand-blue);
  font-size: 19px;
  font-weight: 700;
}

.value-item p {
  margin-top: 6px;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 15px;
}

/* ---- How Your Safari Comes Together — same recipe as Insurance ---------------- */

.how-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 20px;
  margin-top: 32px;
}

@media (min-width: 860px) {
  .how-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.how-step {
  position: relative;
  padding-top: 8px;
}

@media (min-width: 860px) {
  .how-step {
    padding: 8px 18px 0 0;
  }

  .how-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 19px;
    left: 46px;
    width: calc(100% - 30px);
    height: 1px;
    background: var(--border);
  }
}

.how-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface-muted);
  border: 1.5px solid var(--brand-green);
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.how-step h3 {
  margin-top: 14px;
  color: var(--brand-blue);
  font-size: 18px;
  font-weight: 700;
}

.how-step p {
  margin-top: 6px;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 14.5px;
  max-width: 32ch;
}

/* ---- Final CTA ------------------------------------------------------------------ */

.tours-cta__panel {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 140% at 12% 15%, rgba(255, 255, 255, 0.08), transparent 55%),
    linear-gradient(135deg, var(--brand-blue), var(--brand-blue-deep));
  color: var(--white);
  border-radius: 16px;
  border-top: 3px solid var(--brand-green);
  padding: clamp(1.6rem, 1.3rem + 1.4vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.tours-cta__panel h2 {
  font-size: clamp(1.5rem, 1.3rem + 0.9vw, 1.8rem);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.01em;
  max-width: 24ch;
}

.tours-cta__panel p {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.tours-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.tours-cta__actions .btn {
  min-height: 45px;
}

@media (min-width: 860px) {
  .tours-cta__panel {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ---- Back to top (same recipe as Properties/Insurance) ------------------------- */

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 82px;
  z-index: 89;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--brand-blue);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), background-color 0.2s var(--ease);
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--brand-blue);
  color: var(--white);
}

@media (min-width: 768px) {
  .back-to-top {
    right: 26px;
    bottom: 96px;
    width: 44px;
    height: 44px;
  }
}

/* ==================================================================================
   Tours modal system — ONE shared shell for the Discover modal (package or
   destination content, body re-rendered per mode) and the Enquiry modal.
   Centered on every breakpoint; sizing responds instead of swapping component.
   ================================================================================== */

body.tmodal-open {
  overflow: hidden;
}

.tmodal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 16, 38, 0.55);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}

.tmodal-overlay.is-open {
  opacity: 1;
}

.tmodal-dialog {
  position: relative;
  width: min(960px, calc(100vw - 48px));
  max-height: 90vh;
  max-height: 90dvh;
  overflow-y: auto;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.25s var(--ease);
}

.tmodal-dialog--form {
  width: min(700px, calc(100vw - 48px));
}

.tmodal-overlay.is-open .tmodal-dialog {
  transform: translateY(0) scale(1);
}

.tmodal-header {
  position: sticky;
  top: 0;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 20px 26px;
  background: var(--white);
  border-bottom: 1px solid var(--border-soft);
}

.tmodal-header__text {
  min-width: 0;
}

.tmodal-eyebrow {
  display: block;
  color: var(--brand-green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tmodal-title {
  margin-top: 4px;
  color: var(--brand-blue);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
}

.tmodal-close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--surface-muted);
  color: var(--brand-blue);
  cursor: pointer;
  transition: background-color 0.2s var(--ease);
}

.tmodal-close:hover {
  background: var(--surface-strong);
}

.tmodal-subnav {
  position: sticky;
  top: 73px;
  z-index: 2;
  display: flex;
  gap: 4px;
  padding: 10px 26px;
  background: var(--white);
  border-bottom: 1px solid var(--border-soft);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tmodal-subnav button {
  flex-shrink: 0;
  border: none;
  background: none;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}

.tmodal-subnav button:hover {
  background: var(--surface-muted);
}

.tmodal-subnav button.is-active {
  background: var(--brand-blue);
  color: var(--white);
}

.tmodal-body {
  padding: 24px 26px calc(30px + env(safe-area-inset-bottom, 0px));
}

/* ---- Gallery ---------------------------------------------------------------------- */

.tmodal-gallery__main {
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface-strong);
}

.tmodal-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tmodal-gallery__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.tmodal-gallery__thumbs button {
  flex: 1;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: none;
  opacity: 0.7;
  transition: opacity 0.2s var(--ease), border-color 0.2s var(--ease);
}

.tmodal-gallery__thumbs button.is-active {
  opacity: 1;
  border-color: var(--brand-green);
}

.tmodal-gallery__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- Meta / destinations chips / glance ------------------------------------------- */

.tmodal-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.tmodal-duration-badge,
.tmodal-tagline-badge {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--brand-blue);
  font-size: 12.5px;
  font-weight: 700;
}

.tmodal-dest-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tmodal-dest-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  height: 26px;
  padding: 0 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--brand-blue);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}

.tmodal-dest-chip:hover {
  border-color: var(--brand-green);
  background: rgba(0, 168, 89, 0.06);
}

.tmodal-glance {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
  padding: 16px;
  border-radius: 12px;
  background: var(--surface-muted);
}

@media (min-width: 560px) {
  .tmodal-glance {
    grid-template-columns: repeat(4, 1fr);
  }
}

.glance-item span {
  display: block;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.glance-item strong {
  display: block;
  margin-top: 3px;
  color: var(--brand-blue);
  font-size: 13.5px;
  font-weight: 700;
}

/* ---- Modal content sections --------------------------------------------------- */

.tmodal-section {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--border-soft);
}

.tmodal-section:first-of-type {
  border-top: none;
}

.tmodal-section h4 {
  color: var(--brand-blue);
  font-size: 17px;
  font-weight: 700;
}

.tmodal-section p {
  margin-top: 8px;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 15px;
}

.tmodal-highlight-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  list-style: none;
}

.tmodal-highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.5;
}

.tmodal-highlight-list li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--brand-green);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  list-style: none;
}

.tag-list li {
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 600;
}

/* ---- Itinerary accordion --------------------------------------------------------- */

.itinerary-accordion {
  margin-top: 14px;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  overflow: hidden;
}

.itinerary-day + .itinerary-day {
  border-top: 1px solid var(--border-soft);
}

.itinerary-day__trigger {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 14px 16px;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.2s var(--ease);
}

.itinerary-day__trigger:hover {
  background: var(--surface-muted);
}

.itinerary-day__num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface-muted);
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 800;
}

.itinerary-day__title {
  flex: 1;
  min-width: 0;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 14.5px;
}

.itinerary-day__indicator {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.itinerary-day__indicator::before,
.itinerary-day__indicator::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--brand-blue);
  transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.itinerary-day__indicator::before {
  width: 10px;
  height: 2px;
}

.itinerary-day__indicator::after {
  width: 2px;
  height: 10px;
}

.itinerary-day__trigger[aria-expanded="true"] .itinerary-day__indicator::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.itinerary-day__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s var(--ease);
}

.itinerary-day.is-open .itinerary-day__panel {
  grid-template-rows: 1fr;
}

.itinerary-day__panel-inner {
  overflow: hidden;
}

.itinerary-day__panel p {
  margin: 0 16px 16px 62px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ---- Included / Not Included -------------------------------------------------- */

.included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 14px;
}

@media (min-width: 560px) {
  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.included-grid h5 {
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.included-grid ul {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  list-style: none;
}

.included-grid li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}

.included-grid li svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.included-list svg {
  color: var(--brand-green);
}

.excluded-list svg {
  color: var(--text-muted);
}

/* ---- Destination mini-cards inside package modal ------------------------------- */

.tmodal-dest-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}

@media (max-width: 480px) {
  .tmodal-dest-cards {
    grid-template-columns: 1fr;
  }
}

.tmodal-dest-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  border: none;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.tmodal-dest-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tmodal-dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 16, 38, 0) 40%, rgba(10, 16, 38, 0.78) 100%);
}

.tmodal-dest-card__label {
  position: absolute;
  left: 10px;
  bottom: 8px;
  color: var(--white);
  font-weight: 700;
  font-size: 13.5px;
}

/* ---- Price + CTA row ------------------------------------------------------------- */

.tmodal-price-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
  padding: 18px;
  border-radius: 12px;
  background: var(--surface-muted);
}

.tmodal-price-cta > div:first-child span {
  display: block;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 15.5px;
}

.tmodal-price-cta > div:first-child p {
  margin-top: 2px;
  color: var(--text-muted);
  font-size: 13px;
}

.tmodal-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1.1rem;
}

.tmodal-cta-actions .btn {
  min-height: 44px;
}

.pmodal-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #16793f;
  font-weight: 600;
  font-size: 0.88rem;
  transition: color 0.2s var(--ease);
}

.pmodal-whatsapp-link:hover {
  color: #0f5c2e;
}

.pmodal-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: none;
  background: none;
  padding: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s var(--ease);
}

.pmodal-share-btn:hover {
  color: var(--brand-blue);
}

/* ---- Related / Continue exploring + prev/next ----------------------------------- */

.tmodal-related {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--border-soft);
}

.tmodal-related h4 {
  color: var(--brand-blue);
  font-size: 15.5px;
  font-weight: 700;
}

.tmodal-related-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 12px;
}

@media (min-width: 640px) {
  .tmodal-related-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tmodal-prevnext {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
}

.tmodal-prevnext button {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: none;
  background: none;
  padding: 8px 4px;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s var(--ease);
  min-height: 40px;
}

.tmodal-prevnext button:hover {
  color: var(--brand-green);
}

.tmodal-prevnext button:last-child {
  margin-left: auto;
}

/* ---- Back-to-package link (destination mode, cross-nav) ------------------------- */

.tmodal-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 16px;
  border: none;
  background: none;
  padding: 0;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  font-family: inherit;
}

.tmodal-back-link:hover {
  color: var(--brand-green);
}

/* ---- Mobile: full-height sheet-like modal with sticky header -------------------- */

@media (max-width: 640px) {
  .tmodal-overlay {
    align-items: center;
    padding: 10px;
  }

  .tmodal-dialog,
  .tmodal-dialog--form {
    width: calc(100% - 0px);
    max-width: 100%;
    max-height: 92vh;
    max-height: 92dvh;
    border-radius: 15px;
  }

  .tmodal-header {
    padding: 14px 16px;
  }

  .tmodal-title {
    font-size: 18px;
  }

  .tmodal-close {
    width: 42px;
    height: 42px;
  }

  .tmodal-subnav {
    top: 65px;
    padding: 8px 16px;
  }

  .tmodal-body {
    padding: 16px 16px calc(20px + env(safe-area-inset-bottom, 0px));
  }

  .tmodal-price-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .tmodal-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .pmodal-whatsapp-link,
  .pmodal-share-btn {
    justify-content: center;
  }
}

@media (max-width: 340px) {
  .tmodal-overlay {
    padding: 8px;
  }
}

/* ---- Enquiry form ----------------------------------------------------------------- */

.enquiry-context {
  margin: 0 0 18px;
  padding: 10px 14px;
  border-radius: 9px;
  background: var(--surface-muted);
  color: var(--brand-blue);
  font-size: 0.86rem;
}

.enquiry-form {
  display: grid;
  gap: 20px;
}

.enquiry-group {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  border: none;
}

.enquiry-group + .enquiry-group {
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
}

.enquiry-group legend {
  padding: 0 0 2px;
  color: var(--brand-blue);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.enquiry-form .form-row {
  display: grid;
  gap: 0.4rem;
}

.enquiry-form .form-grid-2 {
  display: grid;
  gap: 14px;
}

@media (min-width: 480px) {
  .enquiry-form .form-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.enquiry-form label,
.enquiry-form .form-row__legend {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-blue);
}

.enquiry-form label span:not(.req) {
  font-weight: 500;
  color: var(--text-muted);
}

.enquiry-form .req {
  color: var(--brand-green);
  font-weight: 700;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  height: 46px;
  padding: 0 0.85rem;
  border-radius: 9px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.enquiry-form input:focus-visible,
.enquiry-form select:focus-visible,
.enquiry-form textarea:focus-visible {
  outline: none;
  border-color: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(0, 168, 89, 0.16);
}

.enquiry-form input.is-invalid,
.enquiry-form select.is-invalid {
  border-color: #c0392b;
}

.enquiry-form textarea {
  height: auto;
  min-height: 84px;
  padding: 0.6rem 0.85rem;
  resize: vertical;
}

.enquiry-form .phone-field {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 0.5rem;
  min-width: 0;
}

.enquiry-form .phone-field select {
  padding: 0 0.35rem;
  font-size: 13px;
}

.enquiry-form .form-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--text);
  font-size: 0.88rem;
}

.enquiry-form .form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}

.enquiry-form .form-radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
  color: var(--text);
  font-size: 0.88rem;
}

.enquiry-form .form-error {
  margin: 0;
  color: #c0392b;
  font-size: 0.85rem;
  font-weight: 600;
}

.enquiry-form__submit {
  width: 100%;
}

.quick-quote-success {
  display: grid;
  justify-items: start;
  gap: 0.65rem;
}

.quick-quote-success__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 168, 89, 0.12);
  color: var(--brand-green);
}

.quick-quote-success h4 {
  color: var(--brand-blue);
  font-size: 1.1rem;
}

.quick-quote-success p {
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 46ch;
}

.quick-quote-success__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.3rem;
}

.quick-quote-success__actions .btn {
  min-height: 42px;
}

/* ---- Share popover (WhatsApp / Facebook / LinkedIn / Copy Link) ----------------- */

.share-popover {
  position: fixed;
  z-index: 310;
  display: grid;
  gap: 0.1rem;
  width: 190px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  padding: 0.4rem;
}

.share-popover button {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  height: 38px;
  padding: 0 0.65rem;
  border: none;
  background: none;
  border-radius: 8px;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.share-popover button:hover {
  background: var(--surface-muted);
}

.share-popover i {
  width: 16px;
  text-align: center;
  color: var(--brand-blue);
}
