/* ==========================================================================
   JALASHAY RESORT — Custom Stylesheet
   Palette: Deep Teal, Warm Gold, Soft Mint Grey
   ========================================================================== */

:root {
  --resort-primary: #0a2e38;     /* Deep Teal / Lake Blue */
  --resort-secondary: #c89b3c;   /* Warm Gold Accent */
  --resort-bg-light: #f4f7f6;    /* Soft Mint Grey */
  --resort-dark: #061d24;        /* Very Dark Teal */
  --resort-text-muted: #627275;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  background-color: #fff;
}

h1, h2, h3, .font-playfair {
  font-family: 'Playfair Display', serif;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.resort-hero {
  position: relative;
  height: 90vh;
  background: url('images/jalayshy-resort.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.resort-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6, 29, 36, 0.8), rgba(6, 29, 36, 0.4));
  z-index: 1;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.resort-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 0 20px;
}

.resort-hero-tag {
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--resort-secondary);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 15px;
  display: inline-block;
}

.resort-hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.resort-hero h1 span {
  color: var(--resort-secondary);
}

.resort-hero p {
  font-size: 17px;
  color: #e2e8f0;
  margin-bottom: 35px;
  line-height: 1.7;
}

.resort-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.resort-btn {
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 14px;
}

.resort-btn.primary {
  background-color: var(--resort-secondary);
  color: #000;
}

.resort-btn.primary:hover {
  background-color: #fff;
  color: var(--resort-dark);
  transform: translateY(-2px);
}

.resort-btn.secondary {
  border: 2px solid #fff;
  color: #fff;
}

.resort-btn.secondary:hover {
  background-color: #fff;
  color: var(--resort-dark);
  transform: translateY(-2px);
}

/* ==========================================================================
   About Section
   ========================================================================== */

.resort-about {
  padding: 100px 0;
  background-color: #fff;
}

.resort-about-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 80px;
  align-items: center;
}

.resort-about-left {
  flex: 1;
  position: relative;
}

.resort-about-left img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.resort-about-floating-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--resort-primary);
  color: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  max-width: 250px;
}

.resort-about-floating-card h4 {
  color: var(--resort-secondary);
  font-size: 28px;
  margin-bottom: 5px;
}

.resort-about-floating-card p {
  font-size: 13px;
  color: #e2e8f0;
  line-height: 1.5;
}

.resort-about-right {
  flex: 1.2;
}

.resort-section-tag {
  background-color: rgba(200, 155, 60, 0.15);
  color: var(--resort-secondary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.resort-about-right h2 {
  font-size: 40px;
  color: var(--resort-primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.resort-about-right h2 span {
  color: var(--resort-secondary);
}

.resort-about-right p {
  font-size: 15px;
  color: var(--resort-text-muted);
  line-height: 1.7;
  margin-bottom: 30px;
}

.resort-about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.resort-about-feat {
  display: flex;
  gap: 15px;
  align-items: center;
}

.resort-about-feat i {
  font-size: 20px;
  color: var(--resort-secondary);
  background: rgba(200, 155, 60, 0.1);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resort-about-feat h4 {
  font-size: 15px;
  color: var(--resort-primary);
  font-weight: 600;
}

/* ==========================================================================
   Amenities Section
   ========================================================================== */

.resort-amenities {
  background-color: var(--resort-bg-light);
  padding: 100px 0;
}

.resort-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.resort-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.resort-section-header h2 {
  font-size: 42px;
  color: var(--resort-primary);
  margin-top: 10px;
  margin-bottom: 15px;
}

.resort-section-header p {
  font-size: 15px;
  color: var(--resort-text-muted);
  line-height: 1.6;
}

.resort-amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.resort-amenity-card {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  text-align: center;
}

.resort-amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(10, 46, 56, 0.08);
}

.resort-amenity-icon {
  width: 70px;
  height: 70px;
  background-color: var(--resort-bg-light);
  color: var(--resort-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 26px;
  transition: all 0.3s ease;
}

.resort-amenity-card:hover .resort-amenity-icon {
  background-color: var(--resort-secondary);
  color: #fff;
}

.resort-amenity-card h3 {
  font-size: 20px;
  color: var(--resort-primary);
  margin-bottom: 12px;
  font-weight: 600;
}

.resort-amenity-card p {
  font-size: 14px;
  color: var(--resort-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */

.resort-gallery {
  padding: 100px 0;
  background-color: #fff;
}

.resort-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.resort-gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  cursor: pointer;
}

.resort-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.resort-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 29, 36, 0.9), rgba(6, 29, 36, 0.1));
  z-index: 1;
  opacity: 0.85;
  transition: all 0.4s ease;
}

.resort-gallery-info {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  z-index: 2;
}

.resort-gallery-info h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 5px;
}

.resort-gallery-info p {
  color: var(--resort-secondary);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.resort-gallery-card:hover img {
  transform: scale(1.08);
}

.resort-gallery-card:hover::after {
  opacity: 0.95;
  background: linear-gradient(to top, rgba(10, 46, 56, 0.95), rgba(10, 46, 56, 0.3));
}

.resort-gallery-dots {
  display: none;
}

/* ==========================================================================
   Booking Section
   ========================================================================== */

.resort-booking {
  background-color: var(--resort-dark);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.resort-booking::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 155, 60, 0.08), transparent 70%);
  pointer-events: none;
}

.resort-booking-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 60px;
  align-items: center;
}

.resort-booking-left {
  flex: 1;
}

.resort-booking-left h2 {
  font-size: 46px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.resort-booking-left h2 span {
  color: var(--resort-secondary);
}

.resort-booking-left p {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.resort-booking-left ul {
  list-style: none;
  padding: 0;
}

.resort-booking-left ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #e2e8f0;
}

.resort-booking-left ul li i {
  color: var(--resort-secondary);
}

.resort-booking-right {
  flex: 1.2;
  background-color: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  color: #333;
}

.resort-booking-right h3 {
  font-size: 24px;
  color: var(--resort-primary);
  margin-bottom: 25px;
  text-align: center;
}

.resort-form-group {
  margin-bottom: 20px;
}

.resort-form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--resort-primary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.resort-form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

.resort-form-control:focus {
  outline: none;
  border-color: var(--resort-secondary);
}

.resort-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.resort-form-btn {
  width: 100%;
  background-color: var(--resort-primary);
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 10px;
}

.resort-form-btn:hover {
  background-color: var(--resort-secondary);
  color: #000;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.resort-footer {
  background-color: #061d24;
  color: #fff;
  padding: 80px 0 30px;
  font-family: 'Poppins', sans-serif;
}

.resort-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
}

.resort-footer-col h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #fff;
}

.resort-footer-col h2 span {
  color: var(--resort-secondary);
}

.resort-footer-col p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.7;
}

.resort-footer-col h3 {
  font-size: 18px;
  color: var(--resort-secondary);
  margin-bottom: 20px;
  font-weight: 600;
}

.resort-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.resort-footer-col ul li {
  margin-bottom: 12px;
}

.resort-footer-col ul li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.resort-footer-col ul li a:hover {
  color: var(--resort-secondary);
}

.resort-footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 30px 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.resort-footer-bottom p {
  color: #64748b;
  font-size: 13px;
}

/* ==========================================================================
   Scroll-Reveal Animation (base)
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   Hero Stats Strip (mobile glassmorphism bar)
   ========================================================================== */

.resort-hero-stats {
  display: none; /* hidden on desktop, shown on mobile */
}

/* ==========================================================================
   Sticky Mobile Booking CTA
   ========================================================================== */

.resort-sticky-cta {
  display: none; /* hidden on desktop */
}


/* ==========================================================================
   Responsive — Tablet Landscape (≤1100px)
   ========================================================================== */

@media (max-width: 1100px) {
  .resort-about-wrapper { gap: 50px; }
  .resort-booking-wrapper { gap: 40px; }
  .resort-section-header h2, .resort-about-right h2 { font-size: 36px; }
  .resort-booking-left h2 { font-size: 38px; }
}

/* ==========================================================================
   Responsive — Tablet Portrait (≤992px)
   ========================================================================== */

@media (max-width: 992px) {
  .resort-about-wrapper,
  .resort-booking-wrapper { flex-direction: column; gap: 60px; }
  .resort-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .resort-footer-container { grid-template-columns: 1fr; gap: 40px; }
  .resort-about-floating-card {
    position: static; margin-top: 20px;
    right: auto; bottom: auto; max-width: 100%;
  }
  .resort-booking-right { width: 100%; }
  .resort-hero-buttons { flex-wrap: wrap; gap: 14px; }
  .resort-about, .resort-amenities, .resort-gallery, .resort-booking { padding: 70px 0; }
  .resort-footer { padding: 60px 0 24px; }
}

/* ==========================================================================
   Responsive — MOBILE (≤768px) — Premium Mobile Design
   ========================================================================== */

@media (max-width: 768px) {

  /* ── BODY: space for sticky CTA ── */
  body { padding-bottom: 76px; }

  /* ── STICKY CTA BAR ── */
  .resort-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 999;
    background: var(--resort-dark);
    border-top: 1px solid rgba(200, 155, 60, 0.25);
    padding: 10px 16px;
    gap: 10px;
    box-shadow: 0 -8px 30px rgba(0,0,0,0.35);
  }

  .resort-cta-call,
  .resort-cta-book {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: all 0.2s ease;
  }

  .resort-cta-call {
    background: rgba(255,255,255,0.07);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
  }

  .resort-cta-book {
    background: linear-gradient(135deg, var(--resort-secondary), #e8b84b);
    color: #000;
  }

  .resort-cta-call:active { background: rgba(255,255,255,0.14); }
  .resort-cta-book:active { filter: brightness(0.9); }

  /* ── HERO ── */
  .resort-hero {
    height: 100dvh;
    min-height: 600px;
    background-position: center center;
  }

  .resort-hero::before {
    background: linear-gradient(
      to bottom,
      rgba(6, 29, 36, 0.75) 0%,
      rgba(6, 29, 36, 0.3) 40%,
      rgba(6, 29, 36, 0.85) 100%
    );
  }

  .resort-hero-content {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Glassmorphism pill tag */
  .resort-hero-tag {
    background: rgba(200, 155, 60, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(200, 155, 60, 0.4);
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 11px;
    letter-spacing: 2.5px;
    color: #f5d98a;
    margin-bottom: 20px;
  }

  .resort-hero h1 {
    font-size: 34px;
    line-height: 1.22;
    margin-bottom: 16px;
  }

  .resort-hero h1 span {
    background: linear-gradient(90deg, #c89b3c, #f5d98a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .resort-hero p {
    font-size: 14px;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 28px;
    max-width: 340px;
  }

  /* Hero stats strip (glassmorphism) */
  .resort-hero-stats {
    display: flex;
    gap: 0;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 28px;
    width: 100%;
    max-width: 340px;
  }

  .resort-hero-stat {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    position: relative;
  }

  .resort-hero-stat + .resort-hero-stat::before {
    content: '';
    position: absolute;
    left: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: rgba(255,255,255,0.15);
  }

  .resort-hero-stat strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #f5d98a;
    line-height: 1;
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
  }

  .resort-hero-stat span {
    font-size: 10px;
    color: #94a3b8;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  /* Hero buttons */
  .resort-hero-buttons {
    flex-direction: row;
    gap: 10px;
    width: 100%;
    max-width: 340px;
  }

  .resort-btn {
    flex: 1;
    text-align: center;
    padding: 13px 16px;
    font-size: 13px;
    border-radius: 12px;
  }

  .resort-btn.primary {
    background: linear-gradient(135deg, #c89b3c, #e8b84b);
    box-shadow: 0 4px 20px rgba(200,155,60,0.35);
  }

  .resort-btn.secondary {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
  }

  /* ── ABOUT SECTION ── */
  .resort-about {
    padding: 60px 0;
    background: #fff;
  }

  .resort-about-wrapper {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .resort-about-left {
    position: relative;
  }

  .resort-about-left img {
    border-radius: 0;
    box-shadow: none;
    height: 260px;
    object-fit: cover;
  }

  /* Floating card: overlay on image bottom */
  .resort-about-floating-card {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    margin: 0;
    border-radius: 0;
    background: linear-gradient(135deg, rgba(10,46,56,0.92), rgba(6,29,36,0.95));
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
  }

  .resort-about-floating-card h4 {
    font-size: 26px;
    margin-bottom: 2px;
    line-height: 1;
  }

  .resort-about-floating-card p {
    font-size: 12px;
    color: #94a3b8;
    margin: 0;
  }

  .resort-about-right {
    padding: 32px 20px 0;
  }

  .resort-about-right h2 {
    font-size: 28px;
    margin-bottom: 14px;
  }

  .resort-about-right p {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 24px;
  }

  /* Feature pills: 2×2 grid */
  .resort-about-features {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .resort-about-feat {
    background: var(--resort-bg-light);
    border-radius: 12px;
    padding: 14px 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .resort-about-feat i {
    width: 36px; height: 36px;
    font-size: 16px;
    background: rgba(200, 155, 60, 0.15);
  }

  .resort-about-feat h4 {
    font-size: 13px;
  }

  /* ── AMENITIES (Modern Swipe Carousel) ── */
  .resort-amenities {
    padding: 70px 0 50px;
    background: #fff;
    overflow: hidden;
  }

  .resort-container { padding: 0 20px; }

  .resort-section-header {
    margin-bottom: 30px;
    text-align: left;
  }

  .resort-section-header h2 {
    font-size: 32px;
    margin-top: 8px;
    line-height: 1.2;
  }

  .resort-section-header p {
    font-size: 15px;
    color: #64748b;
  }

  .resort-section-tag {
    font-size: 11px;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(200,155,60,0.2), rgba(200,155,60,0.05));
    border: 1px solid rgba(200,155,60,0.3);
  }

  /* Premium 2-Column Bento Grid */
  .resort-amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 10px 0 20px;
  }

  .resort-amenity-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px 16px;
    border-radius: 20px;
    background: linear-gradient(145deg, #ffffff 0%, #f8faf9 100%);
    border: 1px solid rgba(10,46,56,0.04);
    box-shadow: 0 10px 30px rgba(10,46,56,0.06), inset 0 2px 0 #fff;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
  }

  .resort-amenity-card::before {
    content: "";
    position: absolute;
    top: -25px; right: -25px;
    width: 90px; height: 90px;
    background: radial-gradient(circle, rgba(200,155,60,0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
  }

  .resort-amenity-icon {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    margin: 0 0 16px 0;
    font-size: 22px;
    background: #fff;
    color: var(--resort-primary);
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(10,46,56,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(10,46,56,0.03);
  }

  .resort-amenity-card h3 {
    position: relative;
    z-index: 1;
    font-size: 15px;
    margin-bottom: 0;
    color: var(--resort-dark);
    font-weight: 700;
    line-height: 1.3;
  }

  .resort-amenity-card p {
    display: none; /* Hidden on mobile to keep grid clean and bento-styled */
  }

  /* ── GALLERY: horizontal scroll carousel ── */
  .resort-gallery {
    padding: 60px 0;
    overflow: hidden;
  }

  .resort-gallery .resort-container {
    padding: 0;
  }

  .resort-gallery .resort-section-header {
    padding: 0 16px;
  }

  .resort-gallery-grid {
    grid-template-columns: unset;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 0 16px 16px;
    margin-top: 24px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .resort-gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .resort-gallery-card {
    flex: 0 0 76vw;
    max-width: 300px;
    height: 320px;
    scroll-snap-align: start;
    border-radius: 18px;
  }

  .resort-gallery-info h3 { font-size: 18px; }
  .resort-gallery-info {
    bottom: 20px; left: 18px; right: 18px;
  }

  /* Scroll hint dots */
  .resort-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    padding: 0 16px;
  }

  .resort-gallery-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #c89b3c;
    opacity: 0.3;
    transition: all 0.3s ease;
  }

  .resort-gallery-dot.active {
    opacity: 1;
    width: 20px;
    border-radius: 4px;
  }

  /* ── BOOKING ── */
  .resort-booking {
    padding: 60px 0;
  }

  .resort-booking-wrapper {
    flex-direction: column;
    gap: 36px;
    padding: 0 16px;
  }

  .resort-booking-left h2 {
    font-size: 28px;
    line-height: 1.25;
  }

  .resort-booking-left p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .resort-booking-left ul li {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .resort-booking-right {
    padding: 24px 18px;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  }

  .resort-booking-right h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .resort-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .resort-form-control {
    font-size: 15px;
    padding: 13px 14px;
    border-radius: 10px;
  }

  .resort-form-btn {
    padding: 15px;
    font-size: 15px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--resort-primary), #0d3d4d);
    letter-spacing: 0.5px;
  }

  /* ── FOOTER ── */
  .resort-footer {
    padding: 50px 0 20px;
  }

  .resort-footer-container {
    padding: 0 16px;
    gap: 32px;
  }

  .resort-footer-col h2 { font-size: 22px; }
  .resort-footer-bottom { margin-top: 36px; padding: 20px 16px 0; }
}

/* ==========================================================================
   Responsive — Mobile Small (≤480px)
   ========================================================================== */

@media (max-width: 480px) {
  .resort-hero h1 { font-size: 30px; }
  .resort-gallery-card { flex: 0 0 82vw; height: 290px; }
}

/* ==========================================================================
   Responsive — Extra Small (≤360px)
   ========================================================================== */

@media (max-width: 360px) {
  .resort-hero h1 { font-size: 26px; }
  .resort-section-header h2, .resort-about-right h2, .resort-booking-left h2 { font-size: 22px; }
  .resort-hero-tag { font-size: 10px; letter-spacing: 1.5px; }
  .resort-gallery-card { flex: 0 0 88vw; height: 260px; }
}
