/* Al Shaheed homepage redesign sections */
:root {
  /* Cap at 160px so ultra-wide (e.g. 2500px) matches Bootstrap .container padding */
  --section-container: min(8.5%, 160px);
}
@media screen and (max-width: 767px) {
  :root {
    --section-container: 20px;
  }
}

/* Banner hero — Figma Component 12 / text reel 2503:7955 */
.first-section.home-page-first-section {
  position: relative;
  margin: 16px 16px 62px;
}
/*
  Pre-Slick FOUC guard: reserve one viewport and hide sibling slides.
  Without this, every .banner-slide paints at full height in document flow
  until main.js initializes Slick (very visible on slow connections).
*/
.first-section.home-page-first-section .banner__div.main-slider {
  position: relative;
  height: 960px;
  overflow: hidden;
  background-color: #2f3236;
  border-radius: 24px;
}
.first-section.home-page-first-section .banner__div.main-slider:not(.slick-initialized) > .banner-slide:not(:first-child) {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  visibility: hidden;
}
.first-section.home-page-first-section .banner__div.main-slider:not(.slick-initialized) > .banner-slide:first-child {
  display: block !important;
  height: 960px;
}
.first-section.home-page-first-section .banner-slide,
.first-section.home-page-first-section .slick-slide {
  height: 960px;
  background-color: #2f3236;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 24px;
  display: block !important;
  align-items: initial;
  justify-content: initial;
}
/* Soft reveal once Slick has collapsed the track into a real carousel */
.first-section.home-page-first-section .banner__div.main-slider.slick-initialized {
  animation: banner-hero-ready 0.45s ease both;
}
@keyframes banner-hero-ready {
  from {
    opacity: 0.92;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .first-section.home-page-first-section .banner__div.main-slider.slick-initialized {
    animation: none;
  }
}
/* Shared copy overlay (text reel + CTA) sits above fading backgrounds */
.first-section.home-page-first-section .banner-hero-copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding-top: 362px;
  pointer-events: none;
  color: #fff;
}
.first-section.home-page-first-section .banner-hero-copy .btn {
  pointer-events: auto;
}
/* Clipped viewport — Figma h-[190px] overflow-clip; sized to fit copy */
.first-section.home-page-first-section .banner-text-viewport {
  position: relative;
  width: 100%;
  max-width: 984px;
  overflow: hidden;
  /* JS sets --banner-text-h from tallest item; fallback covers subtitle+title+desc */
  height: var(--banner-text-h, 220px);
}
/* Vertical stack of slide copy — Figma gap 137px between items */
.first-section.home-page-first-section .banner-text-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 137px;
  width: 100%;
  will-change: transform;
  transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
.first-section.home-page-first-section .banner-text-track.is-instant {
  transition: none;
}
.first-section.home-page-first-section .banner-text-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
  width: 100%;
  text-align: center;
}
/* Title: Nexa Heavy 80 / normal — Figma 1:656 */
.first-section.home-page-first-section .banner-text-item h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  max-width: 100%;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
  font-family: "Nexa Heavy", Nexa, sans-serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  overflow-wrap: anywhere;
  text-wrap: balance;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}
/* Subtitle: Nexa Bold 32 / 40 — Figma 1:655 */
.first-section.home-page-first-section .banner-text-item h1 p,
.first-section.home-page-first-section .banner-text-item h1 span {
  margin: 0;
  padding: 0;
  max-width: 100%;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
  font-family: Nexa, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  text-transform: capitalize;
  overflow-wrap: anywhere;
  text-wrap: balance;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}
/* Description: Nexa Book 16 / 24, width 635 — Figma 1:657 */
.first-section.home-page-first-section .banner-desc {
  margin: 0;
  max-width: 635px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  color: #fff;
  font-family: Nexa, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  overflow-wrap: anywhere;
}
.first-section.home-page-first-section .banner-cta-slot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
}
.first-section.home-page-first-section .banner-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.first-section.home-page-first-section .banner-cta.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.first-section.home-page-first-section .banner-cta:not(.is-active) {
  position: absolute;
  inset: 0;
}
/* CTA: cyan #1E988A, 16/40 Bold, 16×24 pad, radius 12 — Figma 1:674 */
.first-section.home-page-first-section .first-desc button.btn.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  width: auto !important;
  min-width: unset;
  height: auto;
  padding: 16px 24px;
  border: 1px solid #1e988a;
  border-radius: 12px;
  background: #1e988a;
  background-image: none;
  color: #fff;
  text-align: center;
  font-family: Nexa, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.first-section.home-page-first-section .first-desc button.btn.btn-primary:hover {
  background-color: #fff;
  color: #1e988a;
}
/* Medium desktop / laptop — keep display type proportional to viewport */
@media (max-width: 1600px) {
  .first-section.home-page-first-section .banner-text-item h1 {
    font-size: 56px;
  }
  .first-section.home-page-first-section .banner-text-item h1 p,
  .first-section.home-page-first-section .banner-text-item h1 span {
    font-size: 26px;
    line-height: 34px;
  }
  .first-section.home-page-first-section .banner-hero-copy {
    padding-top: 300px;
    gap: 28px;
  }
}
@media (max-width: 1400px) {
  .first-section.home-page-first-section .banner-text-item h1 {
    font-size: 42px;
  }
  .first-section.home-page-first-section .banner-text-item h1 p,
  .first-section.home-page-first-section .banner-text-item h1 span {
    font-size: 22px;
    line-height: 28px;
  }
  .first-section.home-page-first-section .banner-text-item {
    gap: 24px;
  }
  .first-section.home-page-first-section .banner-hero-copy {
    padding-top: 260px;
    gap: 24px;
  }
}
@media (max-width: 1200px) {
  .first-section.home-page-first-section .banner-text-item h1 {
    font-size: 36px;
  }
  .first-section.home-page-first-section .banner-text-item h1 p,
  .first-section.home-page-first-section .banner-text-item h1 span {
    font-size: 20px;
    line-height: 26px;
  }
  .first-section.home-page-first-section .banner-desc {
    font-size: 15px;
    line-height: 22px;
  }
  .first-section.home-page-first-section .banner-hero-copy {
    padding-top: 220px;
    gap: 20px;
  }
}
@media (max-width: 991.98px) {
  .first-section.home-page-first-section .banner__div.main-slider,
  .first-section.home-page-first-section .banner__div.main-slider:not(.slick-initialized) > .banner-slide:first-child,
  .first-section.home-page-first-section .banner-slide,
  .first-section.home-page-first-section .slick-slide {
    height: 600px;
  }
  .first-section.home-page-first-section .banner-hero-copy {
    gap: 20px;
    padding-top: 200px;
    padding-inline: 20px;
  }
  .first-section.home-page-first-section .banner-text-viewport {
    height: var(--banner-text-h, 160px);
  }
  .first-section.home-page-first-section .banner-text-track {
    gap: 80px;
  }
  .first-section.home-page-first-section .banner-text-item {
    gap: 16px;
    max-width: 100%;
    padding-inline: 4px;
    box-sizing: border-box;
  }
  .first-section.home-page-first-section .banner-text-item h1 {
    gap: 12px;
    font-size: 28px;
    line-height: 1.15 !important; /* override main.css 16px !important */
    padding: 0;
  }
  .first-section.home-page-first-section .banner-text-item h1 p,
  .first-section.home-page-first-section .banner-text-item h1 span {
    font-size: 16px;
    line-height: 22px;
    padding: 0;
  }
  .first-section.home-page-first-section .banner-desc {
    font-size: 14px;
    line-height: 22px;
    max-width: 100%;
    padding-inline: 4px;
  }
  .first-section.home-page-first-section .first-desc button.btn.btn-primary {
    padding: 12px 20px;
    font-size: 14px;
  }
}
/* Narrow phones — keep long titles (e.g. "Enjoy The Outdoors") inside the frame */
@media (max-width: 575.98px) {
  .first-section.home-page-first-section {
    margin-inline: 12px;
  }
  .first-section.home-page-first-section .banner-hero-copy {
    gap: 16px;
    padding-top: 160px;
    padding-inline: 16px;
  }
  .first-section.home-page-first-section .banner-text-item h1 {
    font-size: 24px;
    line-height: 1.2 !important;
  }
  .first-section.home-page-first-section .banner-text-item h1 p,
  .first-section.home-page-first-section .banner-text-item h1 span {
    font-size: 15px;
    line-height: 20px;
  }
  .first-section.home-page-first-section .banner-desc {
    font-size: 13px;
    line-height: 20px;
  }
}
@media (max-width: 992px) {
  .first-section.home-page-first-section .banner__div.main-slider,
  .first-section.home-page-first-section .banner__div.main-slider:not(.slick-initialized) > .banner-slide:first-child,
  .first-section.home-page-first-section .banner-slide {
    height: 600px;
  }
  /* Keep tree decoration bottom-anchored (do not stretch with slide height) */
  .first-section.home-page-first-section .banner-slide:before,
  .first-section.home-page-first-section .slick-slide:before {
    top: auto;
    bottom: -1px;
    height: 170px;
    width: 75px;
  }
}

.new-events-section {
  background-color: #fff;
  margin-bottom: 73px;
}
@media screen and (max-width: 1200px) {
  .new-events-section {
    margin-bottom: 40px;
  }
}
.new-events-section > .container {
  max-width: 100%;
  width: 100%;
  padding-inline: var(--section-container);
}
.new-events-section .button-wrapper {
  margin-inline: auto;
}
.new-events-section .red-btn {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.new-events-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
  padding-bottom: 36px;
  max-width: 1800px;
  margin-inline: auto;
}
@media screen and (max-width: 1200px) {
  .new-events-cards {
    padding-bottom: 20px;
  }
}

.new-events-card {
  width: 100%;
  height: auto;
}
.new-events-card .card-wrapper {
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 10px 59.2px -16px rgba(21, 0, 71, 0.1803921569);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.new-events-card .card-poster {
  width: 100%;
  aspect-ratio: 1/1;
  line-height: 0;
  display: flex;
}
.new-events-card .card-poster img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease;
}
.new-events-card .cyan-btn {
  min-width: unset;
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  flex-shrink: 0;
  height: auto;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid #1e988a;
  background: #1e988a;
  background-image: none;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
}
.new-events-card .cyan-btn img {
  transition: transform 0.3s ease, filter 0.3s ease;
}
.new-events-card .cyan-btn:hover,
.new-events-card .cyan-btn:focus-visible {
  background: #fff;
  background-image: none;
  color: #1e988a;
}
.new-events-card .cyan-btn:hover img,
.new-events-card .cyan-btn:focus-visible img {
  filter: invert(49%) sepia(21%) saturate(1637%) hue-rotate(125deg) brightness(97%) contrast(85%);
}
.new-events-card .card-body {
  position: relative;
  flex-grow: 1;
  padding: 20px;
  background-color: #fff;
  border-radius: inherit;
  margin-top: -24px;
  z-index: 1;
  overflow: hidden;
}
.new-events-card .card-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/new-images/pattern-1-5.png") center / cover no-repeat;
  opacity: 0.91;
  pointer-events: none;
  z-index: 0;
}
.new-events-card .card-body > * {
  position: relative;
  z-index: 1;
}
.new-events-card .card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.new-events-card .card-title {
  font-weight: 800;
  font-size: 20px;
  color: #000;
  transition: color 0.3s ease;
}
@media screen and (max-width: 1600px) {
  .new-events-card .card-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 1200px) {
  .new-events-card .card-title {
    font-size: 16px;
  }
}
.new-events-card .card-description {
  font-weight: 400;
  font-size: 16px;
  color: #000;
}
@media screen and (max-width: 1600px) {
  .new-events-card .card-description {
    font-size: 15px;
  }
}
@media screen and (max-width: 1200px) {
  .new-events-card .card-description {
    font-size: 14px;
  }
}
.new-events-card:hover .card-wrapper {
  transform: translateY(-8px);
}
.new-events-card:hover .card-poster img {
  transform: scale(1.07);
  filter: brightness(1.02);
}
.new-events-card:hover .card-title {
  color: #1e988a;
}
.new-events-card:hover .book-btn {
  transform: scale(1.04);
}
.new-events-card:hover .book-btn img {
  transform: translateX(4px);
}

.new-events-heading {
  font-weight: 800;
  font-size: 48px;
  text-align: center;
  color: #000;
}
@media screen and (max-width: 1600px) {
  .new-events-heading {
    font-size: 40px;
  }
}
@media screen and (max-width: 1400px) {
  .new-events-heading {
    font-size: 34px;
  }
}
@media screen and (max-width: 1200px) {
  .new-events-heading {
    font-size: 28px;
  }
}

.red-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  border: 1px solid var(--dark-cyan, #ce1126);
  background-color: transparent;
  padding: 8px 16px;
  color: var(--dark-cyan, #ce1126);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}
.red-btn:hover {
  background-color: #ce1126;
  color: #fff;
}

.pick-adventure-section {
  width: 100%;
  padding-inline: 15px;
  margin-bottom: 73px;
}
@media screen and (max-width: 1200px) {
  .pick-adventure-section {
    margin-bottom: 40px;
  }
}

.pick-adventure-container {
  width: 100%;
  padding-inline: calc(var(--section-container) - 15px);
  padding-block: 56px;
  border-radius: 48px;
  background-color: #fafafa;
  /* Background + radius live on ::before so text is never clipped by the curve */
  position: relative;
  isolation: isolate;
  overflow: visible;
}
.pick-adventure-container::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background-color: #fafafa;
  pointer-events: none;
}
@media screen and (max-width: 1200px) {
  .pick-adventure-container {
    padding-block: 24px;
  }
}

.pick-adventure-content {
  max-width: 1156px;
  font-family: Nexa, sans-serif;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section-count {
  font-family: Nexa, sans-serif;
  font-weight: 700;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(21, 0, 71, 0.45);
  margin-bottom: 11px;
  overflow: visible;
  padding-top: 2px;
}

.pick-adventure-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}
.pick-adventure-header .left-side {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 720px;
}
.pick-adventure-header .right-side {
  max-width: 340px;
  padding-inline-end: 34px;
  font-family: Nexa, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 23.25px;
  color: rgba(21, 0, 71, 0.6);
}
@media screen and (max-width: 1600px) {
  .pick-adventure-header .right-side {
    font-size: 14px;
    line-height: 22px;
  }
}
@media screen and (max-width: 1200px) {
  .pick-adventure-header .right-side {
    padding-inline-end: 0;
    font-size: 13px;
    line-height: 20px;
  }
}

/* Heading: Nexa Heavy — matches brand / banner (Figma stand-in was Manrope ExtraBold) */
.pick-adventure-heading {
  font-family: "Nexa Heavy", Nexa, sans-serif;
  font-weight: 800;
  font-size: 88px;
  letter-spacing: -3.52px;
  color: #150047;
  line-height: 1.08;
  overflow: visible;
}
.pick-adventure-heading p {
  margin: 0;
  overflow: visible;
  /* Heavy display faces often paint outside the em box */
  padding-block: 0.04em;
}
@media screen and (max-width: 1600px) {
  .pick-adventure-heading {
    font-size: 64px;
    letter-spacing: -2.4px;
    line-height: 1.1;
  }
}
@media screen and (max-width: 1400px) {
  .pick-adventure-heading {
    font-size: 52px;
    letter-spacing: -2px;
    line-height: 1.1;
  }
}
@media screen and (max-width: 1200px) {
  .pick-adventure-heading {
    font-size: 40px;
    letter-spacing: -1.6px;
    line-height: 1.12;
  }
}
.pick-adventure-heading .highlight {
  color: #f4580e;
}

.pick-adventure-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  .pick-adventure-cards {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
  }
}

.pick-adventure-card {
  width: 100%;
  height: auto;
}
.pick-adventure-card .card-wrapper {
  border: 1px solid rgba(21, 0, 71, 0.07);
  box-shadow: 0px 10px 30px -16px rgba(21, 0, 71, 0.18);
  background-color: #fff;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
}
.pick-adventure-card .card-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0px 20px 40px -12px rgba(21, 0, 71, 0.3);
}
.pick-adventure-card .card-img {
  width: 100%;
  aspect-ratio: 205.2 / 324.88;
  line-height: 0;
}
.pick-adventure-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pick-adventure-card .card-content {
  padding: 13px 16px 16px;
}
.pick-adventure-card .card-desc {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  line-height: 14.3px;
}
.pick-adventure-card .duration {
  font-family: Nexa, sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 14.3px;
  color: #150047;
}
.pick-adventure-card .price {
  font-family: "Nexa Heavy", Nexa, sans-serif;
  font-weight: 800;
  font-size: 13px;
  line-height: 14.3px;
  color: #150047;
}
.pick-adventure-card .icon {
  margin-inline-start: auto;
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  align-self: center;
}
.pick-adventure-card .icon img {
  width: 100%;
  height: 100%;
  display: block;
}
.pick-adventure-card .card-state {
  padding: 5px 11px;
  background-color: #150047;
  font-family: "Nexa Heavy", Nexa, sans-serif;
  font-weight: 800;
  font-size: 10px;
  line-height: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #fff;
  border-radius: 999px;
  margin-top: 8px;
  width: -moz-fit-content;
  width: fit-content;
}

/* Mobile: compact horizontal browse + safe padding so titles are never cut */
@media screen and (max-width: 767px) {
  .pick-adventure-section {
    padding-inline: 16px;
    margin-bottom: 28px;
    scroll-margin-top: 72px;
  }

  .pick-adventure-container {
    padding-inline: 0;
    padding-top: 48px;
    padding-bottom: 28px;
    border-radius: 28px;
    background-color: transparent;
    overflow: visible;
  }

  .pick-adventure-container::before {
    border-radius: 28px;
  }

  .pick-adventure-content {
    gap: 20px;
    max-width: none;
    position: relative;
    z-index: 1;
  }

  .pick-adventure-section .section-count {
    letter-spacing: 2px;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-top: 0;
  }

  .pick-adventure-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-inline: 20px;
    overflow: visible;
  }

  .pick-adventure-header .left-side,
  .pick-adventure-header .right-side {
    max-width: none;
    width: 100%;
    overflow: visible;
  }

  .pick-adventure-header .right-side {
    padding-inline-end: 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(21, 0, 71, 0.65);
  }

  .pick-adventure-heading {
    font-size: 32px;
    letter-spacing: -1px;
    line-height: 1.2;
    max-width: 100%;
    overflow: visible;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .pick-adventure-heading p {
    margin: 0;
    padding-block: 0;
  }

  .pick-adventure-cards {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 20px;
    padding-inline: 20px;
    padding-bottom: 6px;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    /* Allow vertical page scroll while still permitting horizontal swipe */
    touch-action: pan-x pan-y;
  }

  .pick-adventure-cards::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }

  .pick-adventure-card {
    flex: 0 0 72vw;
    width: 72vw;
    max-width: 260px;
    scroll-snap-align: center;
    scroll-snap-stop: normal;
    flex-shrink: 0;
    /* Let vertical gestures bubble to the page */
    touch-action: pan-x pan-y;
  }

  .pick-adventure-card .card-wrapper {
    border-radius: 16px;
    box-shadow: 0 8px 24px -14px rgba(21, 0, 71, 0.22);
  }

  .pick-adventure-card .card-wrapper:hover,
  .pick-adventure-card .card-wrapper:active {
    transform: none;
    box-shadow: 0 8px 24px -14px rgba(21, 0, 71, 0.22);
  }

  /* Keep original art ratio — titles are painted into the image top */
  .pick-adventure-card .card-img {
    aspect-ratio: 205.2 / 324.88;
  }

  .pick-adventure-card .card-img img {
    transform: translateZ(0);
    backface-visibility: hidden;
    object-fit: cover;
    object-position: top center;
  }

  .pick-adventure-card .card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 12px 14px;
    min-height: 56px;
  }

  .pick-adventure-card .card-desc {
    gap: 8px;
    align-items: center;
  }

  .pick-adventure-card .duration {
    font-size: 12px;
    line-height: 1.2;
    opacity: 0.72;
  }

  .pick-adventure-card .price {
    font-size: 14px;
    line-height: 1.2;
  }

  .pick-adventure-card .icon {
    width: 20px;
    height: 20px;
  }

  .pick-adventure-card .card-state {
    margin-top: 0;
    font-size: 9px;
    letter-spacing: 0.5px;
    padding: 5px 10px;
  }
}

/* Small phones */
@media screen and (max-width: 390px) {
  .pick-adventure-heading {
    font-size: 28px;
    letter-spacing: -0.8px;
    line-height: 1.22;
  }

  .pick-adventure-card {
    flex-basis: 78vw;
    width: 78vw;
    max-width: none;
  }
}

.new-events-heading {
  line-height: 1;
}

.new-events-red-heading {
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: #d23138;
  margin-bottom: 16px;
}
@media screen and (max-width: 1600px) {
  .new-events-red-heading {
    font-size: 18px;
  }
}
@media screen and (max-width: 1200px) {
  .new-events-red-heading {
    font-size: 16px;
  }
}

.new-events-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 46px;
}
@media screen and (max-width: 1200px) {
  .new-events-tabs {
    margin-bottom: 24px;
  }
}
.new-events-tabs .nav-link {
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  background-color: rgba(159, 159, 159, 0.1215686275);
  border: 1px solid rgba(159, 159, 159, 0.1215686275);
  border-radius: 30px;
  padding: 11px;
  min-width: 165px;
}
@media screen and (max-width: 1600px) {
  .new-events-tabs .nav-link {
    font-size: 16px;
    min-width: 140px;
    padding: 10px;
  }
}
@media screen and (max-width: 1200px) {
  .new-events-tabs .nav-link {
    font-size: 15px;
    min-width: unset;
  }
}
.new-events-tabs .nav-link:hover {
  background-color: rgba(210, 49, 56, 0.0784313725);
}
.new-events-tabs .nav-link.active {
  font-weight: 900;
  color: #d23138;
  background-color: rgba(210, 49, 56, 0.0784313725);
  border: 1px solid #d23138;
}

/* Mobile: list layout — full-width cards, poster + content side-by-side */
@media screen and (max-width: 767px) {
  .new-events-section {
    margin-bottom: 48px;
  }

  .new-events-red-heading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  .new-events-heading {
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -0.5px;
  }

  .new-events-section .red-divider {
    margin-block: 14px 18px;
  }

  .new-events-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    max-width: 400px;
    margin-inline: auto;
    margin-bottom: 20px;
  }

  .new-events-tabs .nav-item {
    min-width: 0;
  }

  .new-events-tabs .nav-link {
    width: 100%;
    min-width: 0;
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
    padding: 10px 12px;
    border-radius: 999px;
  }

  .new-events-cards {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 24px;
  }

  .new-events-card .card-wrapper {
    flex-direction: row;
    align-items: stretch;
    border-radius: 16px;
    box-shadow: 0 8px 28px -14px rgba(21, 0, 71, 0.2);
  }

  .new-events-card .card-poster {
    width: 36%;
    max-width: 140px;
    flex-shrink: 0;
    aspect-ratio: auto;
    min-height: 128px;
  }

  .new-events-card .card-poster img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .new-events-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
    padding: 12px;
    padding-inline-start: 10px;
    margin-top: 0;
    border-radius: 0;
  }

  .new-events-card .card-header-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
  }

  .new-events-card .card-title {
    flex: 1;
    min-width: 0;
    font-size: 15px;
    line-height: 1.25;
  }

  .new-events-card .card-description {
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
  }

  .new-events-card .cyan-btn {
    padding: 8px 10px;
    font-size: 12px;
    gap: 5px;
    border-radius: 8px;
  }

  .new-events-card .cyan-btn img {
    width: 14px;
    height: 14px;
  }

  /* Avoid sticky hover lift on touch */
  .new-events-card:hover .card-wrapper {
    transform: none;
  }

  .new-events-card:hover .card-poster img {
    transform: none;
    filter: none;
  }

  .new-events-card:active .card-wrapper {
    transform: scale(0.99);
  }

  .new-events-section .button-wrapper {
    margin-top: 4px;
  }

  .new-events-section .red-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 12px 16px;
  }
}

/* Very small phones: slightly tighter list cards */
@media screen and (max-width: 390px) {
  .new-events-heading {
    font-size: 24px;
  }

  .new-events-card .card-poster {
    width: 34%;
    max-width: 118px;
    min-height: 112px;
  }

  .new-events-card .card-title {
    font-size: 14px;
  }

  .new-events-card .card-description {
    font-size: 12px;
  }
}

.infinite-gallery-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* Keep marquee physics LTR in Arabic — RTL flips start edge and breaks pan */
  direction: ltr;
  unicode-bidi: isolate;
}

.infinite-gallery-track {
  display: grid;
  grid-template-rows: repeat(7, 122px);
  grid-auto-flow: column;
  gap: 20px;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
  animation: panBackAndForth 10s linear infinite alternate;
  padding-inline: 15px;
  direction: ltr;
}
@media screen and (max-width: 1200px) {
  .infinite-gallery-track {
    grid-template-rows: repeat(7, 70px);
    animation-duration: 20s;
  }
}
@media screen and (max-width: 767px) {
  .infinite-gallery-track {
    grid-template-rows: repeat(7, 56px);
    gap: 12px;
    padding-inline: 12px;
    animation-duration: 24s;
  }
  .infinite-gallery-card {
    width: min(280px, 78vw);
    border-radius: 12px;
  }
  .infinite-gallery-card img {
    border-radius: 12px;
  }
}

.infinite-gallery-container:hover .infinite-gallery-track,
.infinite-gallery-track.is-paused {
  animation-play-state: paused;
}

.infinite-gallery-card {
  width: 367px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 15px;
}
.infinite-gallery-card:nth-child(4n+1) {
  grid-row: span 3;
}
.infinite-gallery-card:nth-child(4n+2) {
  grid-row: span 4;
}
.infinite-gallery-card:nth-child(4n+3) {
  grid-row: span 4;
}
.infinite-gallery-card:nth-child(4n) {
  grid-row: span 3;
}
.infinite-gallery-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.infinite-gallery-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 15px;
}

@keyframes panBackAndForth {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(var(--scroll-distance, 0px));
  }
}
.explore-park-section {
  margin-top: 0;
  margin-bottom: 32px;
}
@media screen and (max-width: 1200px) {
  .explore-park-section {
    margin-bottom: 20px;
  }
}

.explore-park-section .subtitle,
.media-centre-section .subtitle {
  text-align: center;
}
.explore-park-section .cyan-divider,
.media-centre-section .cyan-divider {
  margin-inline: auto;
  margin-top: 16px;
}

.explore-gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 46px;
  margin-top: 30px;
}
@media screen and (max-width: 1200px) {
  .explore-gallery-tabs {
    margin-top: 24px;
    margin-bottom: 24px;
  }
}
.explore-gallery-tabs .nav-link {
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  background-color: rgba(159, 159, 159, 0.1215686275);
  border: 1px solid rgba(159, 159, 159, 0.1215686275);
  border-radius: 30px;
  padding: 11px;
  min-width: 140px;
}
@media screen and (max-width: 1600px) {
  .explore-gallery-tabs .nav-link {
    font-size: 16px;
    padding: 10px;
  }
}
@media screen and (max-width: 1200px) {
  .explore-gallery-tabs .nav-link {
    font-size: 15px;
    min-width: unset;
  }
}
.explore-gallery-tabs .nav-link:hover {
  background-color: rgba(30, 152, 138, 0.1215686275);
}
.explore-gallery-tabs .nav-link.active {
  font-weight: 900;
  color: #1e988a;
  background-color: rgba(30, 152, 138, 0.1215686275);
  border: 1px solid #1e988a;
}

.media-centre-section {
  width: 100%;
  padding-inline: 15px;
  margin-bottom: 73px;
}
@media screen and (max-width: 1200px) {
  .media-centre-section {
    margin-bottom: 40px;
  }
}

.media-centre-container {
  width: 100%;
  padding-inline: calc(var(--section-container) - 15px);
  padding-block: 56px;
  border-radius: 48px;
  background-color: #fafafa;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .media-centre-container {
    padding-block: 24px;
  }
}

.media-centre-content {
  max-width: 1500px;
  margin-inline: auto;
  border: 1px dashed #1e988a;
  border-radius: 16px;
  padding: 16px;
  margin-top: 32px;
}
@media screen and (max-width: 1200px) {
  .media-centre-content {
    margin-top: 20px;
  }
}
.media-centre-content .button-wrapper {
  margin-inline: auto;
}
.media-centre-content .view-all-btn {
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}

.media-centre-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .media-centre-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.media-centre-card {
  width: 100%;
}
.media-centre-card .card-wrapper {
  transition: transform 0.2s;
}
.media-centre-card:hover .card-wrapper {
  transform: translateY(-4px);
}
.media-centre-card:hover .card-date,
.media-centre-card:hover .card-heading {
  color: #1e988a;
}
.media-centre-card .card-img {
  width: 100%;
  aspect-ratio: 349/244;
  margin-bottom: 16px;
}
.media-centre-card .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.media-centre-card .card-date {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 8px;
  color: #000;
  transition: color 0.2s;
}
@media screen and (max-width: 1600px) {
  .media-centre-card .card-date {
    font-size: 14px;
  }
}
.media-centre-card .card-heading {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}
@media screen and (max-width: 1600px) {
  .media-centre-card .card-heading {
    font-size: 14px;
  }
}

/* Attractions cards — Figma Home 1:223 / frame 1:1273
   Grid 1798×241 gap 29; card pad 51/39/40/40 gap 37;
   image 250×166; title Nexa Heavy 36 capitalize;
   shadow 0 10px 59.2px -16px rgba(21,0,71,0.18); pattern opacity 0.56 */
.attractions-cards-section {
  margin-bottom: 73px;
}
@media screen and (max-width: 1200px) {
  .attractions-cards-section {
    margin-bottom: 40px;
  }
}

/*
  Side inset 52px (Figma ~1902 frame). Use fixed padding — NOT % of parent —
  because % padding resolves against the section width and collapses the
  1798 grid on ultra-wide viewports (e.g. 2500px).
*/
.attractions-cards-container {
  width: 100%;
  padding-inline: 52px;
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  .attractions-cards-container {
    padding-inline: 16px;
  }
}

.attractions-grid {
  display: flex;
  align-items: center;
  gap: 29px;
  width: 100%;
  max-width: 1798px;
  margin-inline: auto;
  padding-top: 24px;
  padding-bottom: 0;
}
@media screen and (max-width: 1200px) {
  .attractions-grid {
    flex-direction: column;
    gap: 24px;
  }
}

.attraction-card {
  flex: 1 1 0;
  min-width: 0;
  transition: all 1.5s ease;
  height: 241px;
  border-radius: 20px;
}
.attraction-card .card-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow: 0px 10px 59.2px -16px rgba(21, 0, 71, 0.18);
  cursor: pointer;
  transition: all 1.5s ease;
  display: grid;
  overflow: hidden;
  position: relative;
}
.attraction-card .card-main,
.attraction-card .card-reveal-content {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  transition: all 1.5s ease;
  /* Figma: pt 51 / pr 39 / pb 40 / pl 40 */
  padding: 51px 39px 40px 40px;
  box-sizing: border-box;
}
.attraction-card .card-main {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 37px;
  width: 100%;
  pointer-events: all;
  background-color: #ffffff;
  transition: all 1.5s ease;
  z-index: 1;
}
/* Pattern watermark — Figma opacity 0.56 */
.attraction-card .card-main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("../img/new-images/pattern-1-5.svg") left center / cover no-repeat;
  opacity: 0.56;
}
.attraction-card .card-main > * {
  position: relative;
  z-index: 1;
}
.attraction-card .card-img-wrap {
  width: 250px;
  height: 166px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 1.5s ease;
}
.attraction-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 1.5s ease;
}
/* Figma: Nexa Heavy 36, capitalize, line-height normal, black */
.attraction-card .card-title {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-family: "Nexa Heavy", Nexa, sans-serif;
  font-weight: 800;
  font-size: 36px;
  font-style: normal;
  color: #000;
  text-align: start;
  text-transform: capitalize;
  line-height: normal;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  transition: all 1.5s ease;
}
.attraction-card .card-reveal-content {
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: all 1.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.attraction-card .card-reveal-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.attraction-card .card-reveal-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% * 669 / 305);
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.attractions-grid .attraction-card:nth-child(2) .card-reveal-image img {
  top: calc(100% * -160 / 305);
}
.attractions-grid .attraction-card:nth-child(3) .card-reveal-image img {
  top: calc(100% * -337 / 305);
}
.attraction-card .card-reveal-image::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(245, 245, 245, 0.74) 0%, rgba(245, 245, 245, 0) 100%);
  -webkit-backdrop-filter: blur(3.5px);
          backdrop-filter: blur(3.5px);
}
.attraction-card .card-reveal-title {
  margin: 0 0 30px;
  font-family: "Nexa Heavy", Nexa, sans-serif;
  font-weight: 800;
  font-size: 36px;
  font-style: normal;
  color: #000;
  text-align: start;
  text-transform: capitalize;
  line-height: normal;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}
.attraction-card .card-reveal-desc {
  margin: 0;
  font-family: Nexa, sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #000;
  line-height: normal;
  text-align: start;
}
.attraction-card .card-reveal-content-inner {
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Desktop only: hover expand + reveal (true hover, side-by-side grid) */
@media (hover: hover) and (pointer: fine) and (min-width: 1201px) {
  .attraction-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 20px 40px -12px rgba(21, 0, 71, 0.3);
    flex: 3;
    height: 305px;
  }
  .attraction-card:hover .card-reveal-content {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  .attraction-card:hover .card-main {
    opacity: 0;
    pointer-events: none;
  }
  /* Non-hovered siblings: stacked icon + title */
  .attractions-grid:has(.attraction-card:hover) .attraction-card:not(:hover) {
    height: 305px;
  }
  .attractions-grid:has(.attraction-card:hover) .attraction-card:not(:hover) .card-main {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    gap: 20px;
    padding-top: 34px;
    padding-bottom: 40px;
  }
  .attractions-grid:has(.attraction-card:hover) .attraction-card:not(:hover) .card-img-wrap {
    width: 118px;
    height: 87px;
  }
  .attractions-grid:has(.attraction-card:hover) .attraction-card:not(:hover) .card-title {
    font-size: 28px;
    text-align: start;
  }
}

/* Below Figma frame (1798 + 52×2 side pad): scale internals, keep horizontal row */
@media screen and (max-width: 1901px) and (min-width: 1201px) {
  .attraction-card .card-main,
  .attraction-card .card-reveal-content {
    padding: clamp(28px, 2.8vw, 51px) clamp(24px, 2.15vw, 39px) clamp(24px, 2.2vw, 40px) clamp(24px, 2.2vw, 40px);
  }
  .attraction-card .card-main {
    gap: clamp(20px, 2.05vw, 37px);
  }
  .attraction-card .card-img-wrap {
    width: clamp(160px, 13.7vw, 250px);
    height: clamp(110px, 9.1vw, 166px);
  }
  .attraction-card .card-title,
  .attraction-card .card-reveal-title {
    font-size: clamp(24px, 1.98vw, 36px);
  }
  .attraction-card .card-reveal-desc {
    font-size: clamp(16px, 1.2vw, 22px);
  }
  @media (hover: hover) and (pointer: fine) {
    .attractions-grid:has(.attraction-card:hover) .attraction-card:not(:hover) .card-img-wrap {
      width: clamp(80px, 6.5vw, 118px);
      height: clamp(60px, 4.8vw, 87px);
    }
    .attractions-grid:has(.attraction-card:hover) .attraction-card:not(:hover) .card-title {
      font-size: clamp(18px, 1.5vw, 28px);
    }
  }
}

/*
  Stacked / mobile: no hover expand. Always show image + title + desc so
  content is discoverable without hover (touch sticky-hover is unreliable).
*/
@media screen and (max-width: 1200px) {
  .attraction-card,
  .attraction-card .card-wrapper,
  .attraction-card .card-main,
  .attraction-card .card-reveal-content,
  .attraction-card .card-img-wrap,
  .attraction-card .card-img-wrap img,
  .attraction-card .card-title {
    transition: none;
  }
  .attraction-card {
    flex: none;
    width: 100%;
    height: auto;
    min-height: 180px;
  }
  .attraction-card .card-wrapper {
    min-height: 180px;
    -webkit-tap-highlight-color: transparent;
  }
  /* Default mobile face = reveal (info always visible) */
  .attraction-card .card-main {
    display: none;
  }
  .attraction-card .card-reveal-content {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    position: relative;
    padding: 24px 20px;
    justify-content: flex-end;
    min-height: 180px;
    background-color: #fff;
  }
  /* If no reveal photo, keep the icon+title face instead */
  .attraction-card .card-wrapper:not(:has(.card-reveal-image)) .card-main {
    display: flex;
    padding: 24px 20px;
    gap: 20px;
  }
  .attraction-card .card-wrapper:not(:has(.card-reveal-image)) .card-img-wrap {
    width: 96px;
    height: 72px;
  }
  .attraction-card .card-wrapper:not(:has(.card-reveal-image)) .card-title {
    font-size: 22px;
  }
  .attraction-card .card-wrapper:not(:has(.card-reveal-image)) .card-reveal-content {
    display: none;
  }
  .attraction-card .card-reveal-image {
    position: absolute;
    inset: 0;
  }
  .attraction-card .card-reveal-image img {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .attractions-grid .attraction-card:nth-child(2) .card-reveal-image img,
  .attractions-grid .attraction-card:nth-child(3) .card-reveal-image img {
    top: 0;
  }
  /* Bottom scrim for readable text over photo */
  .attraction-card .card-reveal-image::after {
    background: linear-gradient(
      180deg,
      rgba(245, 245, 245, 0.15) 0%,
      rgba(245, 245, 245, 0.82) 55%,
      rgba(245, 245, 245, 0.94) 100%
    );
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
  .attraction-card .card-reveal-title {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.2;
  }
  .attraction-card .card-reveal-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  /* Light tap feedback — no layout shift */
  .attraction-card:active .card-wrapper {
    transform: scale(0.985);
  }
}

@media screen and (max-width: 767px) {
  .attractions-grid {
    gap: 16px;
    padding-top: 8px;
  }
  .attraction-card {
    border-radius: 16px;
    min-height: 160px;
  }
  .attraction-card .card-wrapper {
    border-radius: 16px;
    min-height: 160px;
    box-shadow: 0 8px 28px -12px rgba(21, 0, 71, 0.16);
  }
  .attraction-card .card-reveal-content {
    padding: 20px 16px;
    min-height: 160px;
  }
  .attraction-card .card-reveal-title {
    font-size: 20px;
    margin-bottom: 6px;
  }
  .attraction-card .card-reveal-desc {
    font-size: 13px;
    -webkit-line-clamp: 2;
  }
}

/* Kept for non-home reuse; homepage banner uses the scoped rules above */
.banner-desc {
  margin-bottom: 0;
  max-width: 635px;
  margin-inline: auto;
  text-align: center;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

/* Arabic: force GE Dinar One over Nexa across all redesign sections */
html[lang="ar"] .first-section.home-page-first-section,
html[lang="ar"] .new-events-section,
html[lang="ar"] .pick-adventure-section,
html[lang="ar"] .explore-park-section,
html[lang="ar"] .media-centre-section,
html[lang="ar"] .attractions-cards-section {
  font-family: "GE Dinar One", sans-serif;
}

html[lang="ar"] .first-section.home-page-first-section .banner-text-item h1,
html[lang="ar"] .first-section.home-page-first-section .banner-text-item h1 p,
html[lang="ar"] .first-section.home-page-first-section .banner-text-item h1 span,
html[lang="ar"] .first-section.home-page-first-section .banner-desc,
html[lang="ar"] .first-section.home-page-first-section .first-desc button.btn.btn-primary,
html[lang="ar"] .new-events-heading,
html[lang="ar"] .new-events-red-heading,
html[lang="ar"] .new-events-tabs .nav-link,
html[lang="ar"] .new-events-card .card-title,
html[lang="ar"] .new-events-card .card-description,
html[lang="ar"] .new-events-card .cyan-btn,
html[lang="ar"] .red-btn,
html[lang="ar"] .pick-adventure-content,
html[lang="ar"] .section-count,
html[lang="ar"] .pick-adventure-header .right-side,
html[lang="ar"] .pick-adventure-heading,
html[lang="ar"] .pick-adventure-card .duration,
html[lang="ar"] .pick-adventure-card .price,
html[lang="ar"] .pick-adventure-card .card-state,
html[lang="ar"] .explore-gallery-tabs .nav-link,
html[lang="ar"] .media-centre-card .card-date,
html[lang="ar"] .media-centre-card .card-heading,
html[lang="ar"] .attraction-card .card-title,
html[lang="ar"] .attraction-card .card-reveal-title,
html[lang="ar"] .attraction-card .card-reveal-desc {
  font-family: "GE Dinar One", sans-serif;
}
