/* ==========================================================================
   Samriddha Beach Resort — Master Luxury Stylesheet
   Color Palette: Midnight Navy (#0B192C), Coastal Pearl (#F8FAFC), Ocean Blue (#0284C7),
                  Sea Mist (#E2E8F0), Marine Teal (#0F766E), Slate (#64748B)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600;1,700&display=swap');

:root {
  --color-charcoal: #0B192C;
  --color-ivory: #F8FAFC;
  --color-gold: #0284C7;
  --color-gold-hover: #0369A1;
  --color-gold-muted: rgba(2, 132, 199, 0.18);
  --color-sand: #E2E8F0;
  --color-sand-light: #F0F5FA;
  --color-forest: #0F766E;
  --color-forest-dark: #115E59;
  --color-stone-gray: #64748B;
  --color-stone-light: #CBD5E1;

  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --header-height: 90px;
  --header-height-scrolled: 72px;
}

/* Base Reset & Global Typography */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-body);
  background-color: var(--color-ivory);
  color: var(--color-charcoal);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  line-height: 1.65;
  font-size: 1rem;
  font-family: var(--font-body);
  background-color: var(--color-ivory);
  color: var(--color-charcoal);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-ivory);
}

::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-hover);
}

/* Selection Color */
::selection {
  background: var(--color-gold);
  color: #FFFFFF;
}

/* Editorial Modern Sans-Serif Headings */
h1,
h2,
h3,
h4,
h5,
h6,
.font-serif-luxury {
  font-family: var(--font-display) !important;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-title {
  font-family: var(--font-display) !important;
  font-size: clamp(2.4rem, 5.8vw, 5.2rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 800;
}

.section-title {
  font-family: var(--font-display) !important;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.eyebrow-luxury {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.eyebrow-luxury::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background-color: currentColor;
}

/* Top Scroll Progress Line */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), #38BDF8);
  z-index: 9999;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* Preloader Sequence */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background-color: var(--color-charcoal);
  color: var(--color-ivory);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.8s ease;
}

#preloader.preloader-hidden {
  transform: translateY(-100%);
  pointer-events: none;
}

.preloader-line-track {
  width: 180px;
  height: 2px;
  background: rgba(248, 250, 252, 0.12);
  margin-top: 2rem;
  overflow: hidden;
  position: relative;
}

.preloader-line-fill {
  width: 0%;
  height: 100%;
  background: var(--color-gold);
  transition: width 0.05s ease-out;
}

/* Adaptive Luxury Header */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 900;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
}

#site-header.header-scrolled {
  height: var(--header-height-scrolled);
  background: rgba(11, 25, 44, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(2, 132, 199, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* Solid Header variation for inner pages */
#site-header.header-inner-solid {
  background: rgba(11, 25, 44, 0.98);
  border-bottom: 1px solid rgba(2, 132, 199, 0.2);
}

/* Nav Link Hover Underline (Reveals left to right) */
.nav-link-luxury {
  position: relative;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-ivory);
  transition: color 0.3s ease;
  padding-bottom: 4px;
}

.nav-link-luxury::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link-luxury:hover::after,
.nav-link-luxury.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link-luxury:hover,
.nav-link-luxury.active {
  color: var(--color-gold);
}

/* Luxury Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background-color: var(--color-gold);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.95rem 2rem;
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--color-gold);
  cursor: pointer;
  text-decoration: none;
}

.btn-gold:hover {
  background-color: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(2, 132, 199, 0.35);
}

.btn-gold:hover .btn-arrow {
  transform: translateX(6px);
}

.btn-outline-ivory {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background-color: transparent;
  color: var(--color-ivory);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.95rem 2rem;
  border-radius: 2px;
  border: 1px solid rgba(248, 250, 252, 0.4);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  text-decoration: none;
  backdrop-filter: blur(4px);
}

.btn-outline-ivory:hover {
  background-color: var(--color-ivory);
  color: var(--color-charcoal);
  border-color: var(--color-ivory);
  transform: translateY(-2px);
}

.btn-outline-ivory:hover .btn-arrow {
  transform: translateX(6px);
}

.btn-arrow {
  transition: transform 0.3s ease;
}

/* Secondary Ghost / Underline Link */
.editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s ease;
}

.editorial-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.editorial-link:hover {
  color: var(--color-gold-hover);
}

.editorial-link:hover .btn-arrow {
  transform: translateX(5px);
}

/* Hero Section & Background Video Container */
.hero-wrapper {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ivory);
}

.hero-media-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hero-video-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: brightness(0.72) contrast(1.08);
  border: 0;
  z-index: 1;
  max-width: none !important;
  width: 120vw;
  height: calc(120vw * 9 / 16);
  min-width: 100%;
  min-height: 100%;
}

/* Wide screen aspect ratios (>= 16/9) */
@media (min-aspect-ratio: 16/9) {
  .hero-video-frame {
    width: 120vw;
    height: calc(120vw * 9 / 16);
    min-width: 100%;
    min-height: 100%;
  }
}

/* Tall / Portrait screen aspect ratios (< 16/9, including mobile phones) */
@media (max-aspect-ratio: 16/9) {
  .hero-video-frame {
    height: 130vh;
    height: 130svh;
    width: calc(130vh * 16 / 9);
    width: calc(130svh * 16 / 9);
    min-width: 100%;
    min-height: 100%;
  }
}

.hero-img-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.68) contrast(1.05);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(11, 25, 44, 0.55) 0%,
      rgba(11, 25, 44, 0.35) 45%,
      rgba(11, 25, 44, 0.88) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1080px;
  padding: 0 1.5rem;
  text-align: center;
}

/* Mouse Scroll Indicator */
.scroll-mouse-indicator {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(251, 248, 242, 0.7);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.scroll-mouse-indicator:hover {
  color: var(--color-gold);
}

.mouse-wheel-icon {
  width: 20px;
  height: 32px;
  border: 1.5px solid rgba(251, 248, 242, 0.5);
  border-radius: 12px;
  position: relative;
}

.mouse-wheel-dot {
  width: 3px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 2px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  animation: mouseWheel 2s infinite ease-in-out;
}

@keyframes mouseWheel {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 14px);
  }
}

/* Booking Bar (Integrated Horizontal & Responsive Vertical) */
.booking-bar-wrapper {
  position: relative;
  z-index: 30;
  margin-top: -36px;
}

.booking-bar {
  background: var(--color-charcoal);
  color: var(--color-ivory);
  border: 1px solid rgba(2, 132, 199, 0.35);
  box-shadow: 0 20px 45px rgba(2, 132, 199, 0.12);
  border-radius: 2px;
  padding: 2rem 2rem;
}

.booking-field-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.35rem;
}

.booking-input {
  width: 100%;
  background: rgba(248, 250, 252, 0.05);
  border: 1px solid rgba(248, 250, 252, 0.16);
  color: var(--color-ivory);
  font-family: var(--font-body);
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.booking-input:focus {
  border-color: var(--color-gold);
  background: rgba(248, 250, 252, 0.08);
}

.booking-input option {
  background: var(--color-charcoal);
  color: var(--color-ivory);
}

/* Image Clip-Path Reveal Masks */
.clip-reveal-wrap {
  overflow: hidden;
  position: relative;
}

.clip-reveal-img {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, clip-path;
}

.zoom-on-hover {
  overflow: hidden;
}

.zoom-on-hover img {
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.zoom-on-hover:hover img {
  transform: scale(1.05);
}

/* Luxury Room Block (Editorial, not a small card) */
.room-editorial-card {
  background: var(--color-ivory);
  border-bottom: 1px solid rgba(28, 27, 24, 0.12);
  transition: background-color 0.4s ease;
}

.room-editorial-card:hover {
  background: var(--color-sand-light);
}

/* Editorial Masonry Grid */
.masonry-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.masonry-item:hover img {
  transform: scale(1.06);
}

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(28, 27, 24, 0.85) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--color-ivory);
}

.masonry-item:hover .masonry-overlay {
  opacity: 1;
}

/* Lightbox Modal */
#luxury-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(18, 17, 15, 0.97);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

#luxury-lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content-box {
  position: relative;
  max-width: 90vw;
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-main-img {
  max-width: 100%;
  max-height: 76vh;
  object-fit: contain;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(2, 132, 199, 0.25);
}

/* Lightbox Controls */
.lightbox-btn {
  background: rgba(248, 250, 252, 0.08);
  color: var(--color-ivory);
  border: 1px solid rgba(248, 250, 252, 0.2);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.lightbox-btn:hover {
  background: var(--color-gold);
  color: #FFFFFF;
  border-color: var(--color-gold);
}

/* Fullscreen Video Modal */
#video-tour-modal {
  position: fixed;
  inset: 0;
  z-index: 99990;
  background: rgba(7, 17, 31, 0.96);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 1.5rem;
}

#video-tour-modal.active {
  opacity: 1;
  pointer-events: all;
}

.video-modal-container {
  width: 100%;
  max-width: 1020px;
  aspect-ratio: 16 / 9;
  position: relative;
  background: #000;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(2, 132, 199, 0.35);
}

/* Floating WhatsApp Concierge */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
}

.floating-whatsapp-text {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Mobile Off-Canvas Nav */
#mobile-menu-drawer {
  position: fixed;
  inset: 0;
  z-index: 950;
  background-color: var(--color-charcoal);
  color: var(--color-ivory);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6rem 2.5rem 3rem;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: none;
}

#mobile-menu-drawer.menu-open {
  transform: translateX(0%);
  pointer-events: all;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-ivory);
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--color-gold);
  transform: translateX(8px);
}

/* Hamburger Icon */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 960;
  padding: 0;
}

.hamburger-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-ivory);
  border-radius: 1px;
  transition: all 0.35s ease;
}

.hamburger-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--color-gold);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--color-gold);
}

/* Swiper Customizations */
.swiper-pagination-bullet {
  background: var(--color-stone-gray) !important;
  opacity: 0.4 !important;
  transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
  background: var(--color-gold) !important;
  opacity: 1 !important;
  width: 22px !important;
  border-radius: 4px !important;
}

/* Utilities */
.bg-charcoal {
  background-color: var(--color-charcoal);
}

.bg-ivory {
  background-color: var(--color-ivory);
}

.bg-sand {
  background-color: var(--color-sand);
}

.bg-sand-light {
  background-color: var(--color-sand-light);
}

.bg-forest {
  background-color: var(--color-forest);
}

.text-charcoal {
  color: var(--color-charcoal);
}

.text-ivory {
  color: var(--color-ivory);
}

.text-gold {
  color: var(--color-gold);
}

.text-forest {
  color: var(--color-forest);
}

.text-stone {
  color: var(--color-stone-gray);
}

.border-gold {
  border-color: var(--color-gold);
}

.border-gold-subtle {
  border-color: rgba(2, 132, 199, 0.25);
}

.border-charcoal-subtle {
  border-color: rgba(11, 25, 44, 0.12);
}

/* Reduced Motion Accessibility */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  #preloader {
    display: none !important;
  }

  .clip-reveal-img {
    clip-path: none !important;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 76px;
    --header-height-scrolled: 64px;
  }

  .hero-wrapper {
    height: 100vh;
    height: 100svh;
    min-height: 580px;
    padding-top: calc(var(--header-height) * 0.5);
  }

  .hero-video-frame {
    height: 140vh !important;
    height: 140svh !important;
    width: calc(140vh * 16 / 9) !important;
    width: calc(140svh * 16 / 9) !important;
    max-width: none !important;
  }

  .booking-bar-wrapper {
    margin-top: 0;
    padding: 1.5rem 1rem;
  }

  .booking-bar {
    padding: 1.25rem 1rem;
  }

  .floating-whatsapp-text {
    display: none;
  }

  .floating-whatsapp {
    padding: 0.8rem;
    bottom: 1.25rem;
    right: 1.25rem;
  }
}

/* ==========================================================================
   Luxury Amenity Cards & Enlarged Badges
   ========================================================================== */
.amenity-card {
  background-color: rgba(240, 245, 250, 0.85);
  border: 1px solid rgba(2, 132, 199, 0.18);
  border-radius: 8px;
  padding: 2rem 1.25rem;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.amenity-card:hover {
  transform: translateY(-6px);
  border-color: rgba(2, 132, 199, 0.55);
  box-shadow: 0 16px 32px rgba(2, 132, 199, 0.14);
  background-color: #FFFFFF;
}

.amenity-icon-wrapper {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background-color: rgba(2, 132, 199, 0.12);
  border: 1.5px solid rgba(2, 132, 199, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.15);
}

.amenity-card:hover .amenity-icon-wrapper {
  transform: scale(1.1);
  background-color: rgba(2, 132, 199, 0.22);
  border-color: var(--color-gold);
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.35);
}

.amenity-icon-wrapper svg {
  width: 42px;
  height: 42px;
  stroke: currentColor;
  stroke-width: 1.65;
  transition: transform 0.35s ease;
}

.amenity-card:hover .amenity-icon-wrapper svg {
  transform: scale(1.08);
}

@media (max-width: 640px) {
  .amenity-card {
    padding: 1.5rem 0.75rem;
  }
  .amenity-icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
  }
  .amenity-icon-wrapper svg {
    width: 36px;
    height: 36px;
  }
}