.hero {
    padding: 76px 0 0;
}



/* =============================================================
       AMENITIES SECTION CSS
============================================================= */
 
.amenities-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.amenities-bg-parallax {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1542314831-c6a4d1409b57?auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.amenities-bg-overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 1;
  /* Updated Background Color */
  background-color: rgba(21, 71, 52, 0.88);
}

.amenities-main-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px 16px;
}

.amenities-scroll-col {
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 8px 0;
  -webkit-mask-image: -webkit-linear-gradient(left, transparent 0%, black 15%, black 85%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.amenities-scroll-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: amenities-scrollLeft 40s linear infinite;
          animation: amenities-scrollLeft 40s linear infinite;
}

.amenities-scroll-inner.amenities-reverse {
  -webkit-animation: amenities-scrollLeft 40s linear infinite reverse;
          animation: amenities-scrollLeft 40s linear infinite reverse;
}

.amenities-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 32px;
  padding-right: 32px;
  padding-bottom: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.amenities-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-transition: all 0.3s;
          transition: all 0.3s;
}

.amenities-icon {
  /* Updated Accent Color */
  color: #ed8b00;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  /* Updated Shadow Color */
  -webkit-filter: drop-shadow(0 1px 2px rgba(21, 71, 52, 0.5));
          filter: drop-shadow(0 1px 2px rgba(21, 71, 52, 0.5));
}

.amenities-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

.amenities-text {
  color: #fefcf7;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  letter-spacing: 0.02em;
  font-weight: 500;
  white-space: nowrap;
  cursor: default;
  /* Updated Shadow Color */
  -webkit-filter: drop-shadow(0 1px 2px rgba(21, 71, 52, 0.5));
          filter: drop-shadow(0 1px 2px rgba(21, 71, 52, 0.5));
  opacity: 0.8;
  -webkit-transition: color 0.3s;
          transition: color 0.3s;
}

/* ── Center IMAGE column ── */
.amenities-image-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 896px;
  padding: 16px 8px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  z-index: 20;
}

.amenities-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  /* Updated Shadow & Outline Colors */
  -webkit-box-shadow: 0 30px 80px rgba(21, 71, 52, 0.8);
          box-shadow: 0 30px 80px rgba(21, 71, 52, 0.8);
  outline: 1px solid rgba(237, 139, 0, 0.3);
  /* Updated Base Color */
  background-color: #154734;
  border: 1px solid rgba(254, 252, 247, 0.1);
}

@supports not (aspect-ratio: 16 / 9) {
  .amenities-image-wrapper::before {
    content: "";
    display: block;
    padding-top: 56.25%;
  }
  .amenities-image-wrapper img,
  .amenities-image-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
  }
}

.amenities-image-overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  /* Updated Overlay Background Color */
  background-color: rgba(21, 71, 52, 0.2);
  -webkit-transition: background-color 0.7s;
          transition: background-color 0.7s;
  z-index: 10;
  pointer-events: none;
}

.amenities-image-wrapper:hover .amenities-image-overlay {
  /* Updated Overlay Background Hover */
  background-color: rgba(21, 71, 52, 0);
}

.amenities-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: none;
  z-index: 0;
  display: block;
}

/* ── Animations ── */
@-webkit-keyframes amenities-scrollUp {
  0%   { -webkit-transform: translateY(0);    transform: translateY(0); }
  100% { -webkit-transform: translateY(-50%); transform: translateY(-50%); }
}
@keyframes amenities-scrollUp {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@-webkit-keyframes amenities-scrollLeft {
  0%   { -webkit-transform: translateX(0);    transform: translateX(0); }
  100% { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
}
@keyframes amenities-scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ════════════════════════════════════════
   TABLET  (≥ 640px)
════════════════════════════════════════ */
@media (min-width: 640px) {
  .amenities-image-wrapper {
    border-radius: 16px;
  }
  .amenities-image-col {
    padding: 16px;
  }
}

/* ════════════════════════════════════════
   DESKTOP  (≥ 1024px)
════════════════════════════════════════ */
@media (min-width: 1024px) {

  .amenities-main-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 32px 1.5fr 32px 1fr;
        grid-template-columns: 1fr 1.5fr 1fr;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    justify-items: center;
    gap: 32px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 0;
    padding: 0 32px;
  }

  .amenities-scroll-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 700px;
    padding: 40px 16px;
    -webkit-mask-image: -webkit-linear-gradient(top, transparent 0%, black 20%, black 80%, transparent 100%);
            mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
  }

  .amenities-scroll-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: auto;
    -webkit-animation: amenities-scrollUp 40s linear infinite;
            animation: amenities-scrollUp 40s linear infinite;
  }

  .amenities-scroll-inner.amenities-reverse {
    -webkit-animation: amenities-scrollUp 40s linear infinite reverse;
            animation: amenities-scrollUp 40s linear infinite reverse;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

  .amenities-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 48px;
    padding-right: 0;
    padding-bottom: 48px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .amenities-list.amenities-reverse-list {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

  .amenities-item {
    gap: 24px;
  }

  .amenities-item.amenities-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    text-align: right;
  }

  .amenities-icon svg {
    width: 32px;
    height: 32px;
  }

  .amenities-text {
    font-size: 24px;
    font-weight: 600;
    opacity: 1;
  }

  .amenities-image-col {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    padding: 32px;
  }
}

/* ════════════════════════════════════════
   2XL  (≥ 1536px)
════════════════════════════════════════ */
@media (min-width: 1536px) {
  .amenities-scroll-col {
    height: 800px;
  }
}



.mb-5 {
    margin-bottom: 0rem !important;
}