/* ============================================================
   Royal Garden Resort — style.css  (Final)
   Palette: Forest Green #1B3A2D | Gold #C9A84C | Ivory #F8F4EC
   ============================================================ */

:root {
  --green-dark:   #1B3A2D;
  --green-mid:    #2D5A3D;
  --green-light:  #4A7C59;
  --gold:         #C9A84C;
  --gold-light:   #E2C57A;
  --ivory:        #F8F4EC;
  --ivory-dark:   #EDE9DF;
  --charcoal:     #2C2C2C;
  --mist:         #8BA3A8;
  --white:        #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --radius-sm:    6px;
  --radius-md:    14px;
  --radius-lg:    20px;
  --shadow-card:  0 4px 30px rgba(27,58,45,0.10);
  --shadow-hover: 0 12px 50px rgba(27,58,45,0.18);
  --transition:   0.35s cubic-bezier(0.4,0,0.2,1);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:80px;overflow-x:hidden}
body{font-family:var(--font-body);color:var(--charcoal);background:var(--white);overflow-x:hidden;font-size:16px;line-height:1.7;max-width:100vw}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none;padding:0;margin:0}

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4{font-family:var(--font-display);font-weight:600;line-height:1.25;color:var(--green-dark)}
.section-eyebrow{font-family:var(--font-body);font-size:.75rem;font-weight:600;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-bottom:.75rem}
.section-heading{font-size:clamp(1.9rem,4vw,2.8rem);margin-bottom:1rem}
.section-heading em{font-style:italic;color:var(--green-light)}
.section-subtext{color:#666;font-size:1.05rem;max-width:560px;margin:0 auto}
.section-body{color:#555;margin-bottom:1rem;font-size:1rem}
.section-padding{padding:96px 0}
.bg-ivory{background-color:var(--ivory)!important}
.bg-dark-green{background-color:var(--green-dark)!important}

/* ---- BUTTONS ---- */
.btn-gold{display:inline-block;background:var(--gold);color:var(--green-dark);font-family:var(--font-body);font-weight:700;font-size:.85rem;letter-spacing:.08em;text-transform:uppercase;padding:.75rem 2.2rem;border-radius:var(--radius-sm);border:none;cursor:pointer;transition:background var(--transition),transform var(--transition),box-shadow var(--transition)}
.btn-gold:hover{background:var(--gold-light);transform:translateY(-2px);box-shadow:0 8px 24px rgba(201,168,76,.35);color:var(--green-dark)}
.btn-outline-green{display:inline-block;background:transparent;color:var(--green-dark);border:2px solid var(--green-dark);font-family:var(--font-body);font-weight:700;font-size:.85rem;letter-spacing:.08em;text-transform:uppercase;padding:.75rem 2.2rem;border-radius:var(--radius-sm);transition:all var(--transition)}
.btn-outline-green:hover{background:var(--green-dark);color:var(--white);transform:translateY(-2px)}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section{
  position:relative;
  width:100%;
  height:100vh;   /* fallback for older browsers */
  height:100dvh;  /* accounts for mobile browser chrome from the very first paint */
  min-height:560px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding-top:90px;
  padding-bottom:60px;
  box-sizing:border-box;
  background-color:#0a1810;
}

.hero-bg{
  position:absolute;
  top:0; left:0;
  width:100%; height:100%;
  background-image:url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1920&q=90');
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  z-index:0;
  opacity:0;
  transform:scale(1.08);
  transform-origin:center center;
  animation:heroBgReveal 1.8s ease-out 0.05s forwards;
}
@keyframes heroBgReveal{
  0%   { opacity:0; transform:scale(1.08); }
  25%  { opacity:1; }
  100% { opacity:1; transform:scale(1.0); }
}

.hero-overlay{
  position:absolute;
  top:0; left:0;
  width:100%; height:100%;
  z-index:1;
  background:
    linear-gradient(
      to bottom,
      rgba(5,12,8,0.60)  0%,
      rgba(5,12,8,0.30)  30%,
      rgba(5,12,8,0.55)  60%,
      rgba(5,12,8,0.92)  100%
    );
}
.hero-overlay::after{
  content:'';
  position:absolute;
  bottom:0; left:0; right:0;
  height:160px;
  background:linear-gradient(to bottom, transparent 0%, rgba(5,12,8,0.98) 100%);
}

/* ---- DESKTOP NAV ---- */
.hero-nav{position:absolute;top:0;left:0;right:0;z-index:100;display:flex;align-items:center;padding:0 2.5rem;height:90px;gap:2rem}

.hero-nav-logo{flex-shrink:0;display:flex;align-items:center}
.hero-nav-logo img{height:78px;width:auto;filter:drop-shadow(0 0 10px rgba(255,255,255,.75)) drop-shadow(0 2px 8px rgba(0,0,0,.3));transition:transform var(--transition)}
.hero-nav-logo:hover img{transform:scale(1.05)}

.hero-nav-links{display:flex;align-items:center;gap:1.8rem;margin-left:auto}

.nav-link{font-family:var(--font-body);font-size:.8rem;font-weight:500;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.82);transition:color var(--transition);position:relative;padding-bottom:3px}
.nav-link::after{content:'';position:absolute;bottom:0;left:0;width:0;height:1.5px;background:var(--gold);transition:width var(--transition)}
.nav-link:hover,.nav-link.active{color:var(--gold)}
.nav-link:hover::after,.nav-link.active::after{width:100%}

.nav-btn-book{display:inline-block;background:var(--gold);color:var(--green-dark)!important;font-family:var(--font-body);font-weight:700;font-size:.78rem;letter-spacing:.1em;text-transform:uppercase;padding:.6rem 1.4rem;border-radius:var(--radius-sm);transition:background var(--transition),transform var(--transition)}
.nav-btn-book:hover{background:var(--gold-light);transform:translateY(-2px)}
.nav-btn-book::after{display:none!important}

/* ---- MOBILE NAV BAR ---- */
.hero-nav-mobile{position:absolute;top:0;left:0;right:0;z-index:100;display:flex;align-items:center;justify-content:space-between;padding:1.2rem 1.2rem 0}

.hero-nav-logo-mobile{display:flex;align-items:center}
.hero-nav-logo-mobile img{height:72px;width:auto;filter:drop-shadow(0 0 8px rgba(255,255,255,.75)) drop-shadow(0 2px 8px rgba(0,0,0,.3));margin-top:6px}

/* ---- HAMBURGER ---- */
.hamburger-btn{display:flex;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:8px;z-index:200}
.hamburger-btn span{display:block;width:26px;height:2px;background:var(--white);border-radius:2px;transition:all .3s ease}
.hamburger-dark span{background:var(--green-dark)}

/* ---- MOBILE OVERLAY ---- */
.mobile-menu-overlay{position:fixed;inset:0;background:var(--green-dark);z-index:9999;display:flex;flex-direction:column;align-items:center;justify-content:center;opacity:0;pointer-events:none;transform:translateX(100%);transition:opacity .35s ease,transform .35s ease;overflow:hidden;padding:1rem}
.mobile-menu-overlay.open{opacity:1;pointer-events:all;transform:translateX(0)}
.mobile-menu-close{position:absolute;top:1rem;right:1rem;background:none;border:none;color:var(--white);font-size:1.5rem;cursor:pointer;padding:.5rem;transition:color var(--transition)}
.mobile-menu-close:hover{color:var(--gold)}
.mobile-menu-logo{display:inline-flex;margin-bottom:1.4rem}
.mobile-menu-logo img{height:90px;width:auto;margin-bottom:0;}
.mobile-nav-links{display:flex;flex-direction:column;align-items:center;gap:.9rem;margin-bottom:1.2rem}
.mobile-nav-links li a{font-family:var(--font-display);font-size:1.2rem;color:rgba(255,255,255,.85);transition:color var(--transition)}
.mobile-nav-links li a:hover{color:var(--gold)}
.mobile-book-btn{display:inline-block!important;background:var(--gold);color:var(--green-dark)!important;font-family:var(--font-body)!important;font-size:.78rem!important;font-weight:700!important;letter-spacing:.1em!important;text-transform:uppercase;padding:.55rem 1.6rem;border-radius:var(--radius-sm);margin-top:.1rem}
.mobile-menu-socials{display:flex;flex-wrap:nowrap;gap:1.1rem;margin-top:.9rem;justify-content:center}
.mobile-menu-socials a{
  font-size:1.15rem;
  color:rgba(255,255,255,.65);
  transition:color var(--transition);
  width:30px;height:30px;
  flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
}
.mobile-menu-socials a:hover{color:var(--gold)}

/* ---- HERO CONTENT ---- */
.hero-content{
  position:relative;
  z-index:5;
  text-align:center;
  padding:0 2rem;
  margin:0;
  max-width:700px;
  width:100%;
}
.hero-eyebrow{font-size:.72rem;font-weight:600;letter-spacing:.28em;text-transform:uppercase;color:var(--gold);margin-bottom:.9rem;animation:fadeUp 1s ease .3s both}
.hero-title{font-family:var(--font-display);font-size:clamp(2.4rem,5.5vw,5rem);font-weight:700;color:var(--white);line-height:1.1;margin-bottom:.6rem;text-shadow:0 2px 20px rgba(0,0,0,.4);animation:fadeUp 1s ease .5s both}
.hero-subtitle{font-size:clamp(.95rem,1.8vw,1.2rem);color:rgba(255,255,255,.72);font-weight:300;letter-spacing:.05em;margin-bottom:2rem;animation:fadeUp 1s ease .7s both}
.hero-cta-btn{display:inline-block;background:var(--gold);color:var(--green-dark);font-family:var(--font-body);font-weight:700;font-size:.85rem;letter-spacing:.12em;text-transform:uppercase;padding:.9rem 2.4rem;border-radius:var(--radius-sm);transition:background var(--transition),transform var(--transition),box-shadow var(--transition);animation:fadeUp 1s ease .9s both}
.hero-cta-btn:hover{background:var(--gold-light);transform:translateY(-3px);box-shadow:0 12px 32px rgba(201,168,76,.4);color:var(--green-dark)}
@keyframes fadeUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}

/* ---- SCROLL CUE ---- */
.hero-scroll-cue{
  position:absolute;
  bottom:1.25rem;
  left:50%;
  transform:translateX(-50%);
  z-index:5;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:.4rem;
  pointer-events:none;
}
.hero-scroll-cue span{font-size:.6rem;letter-spacing:.22em;text-transform:uppercase;color:rgba(255,255,255,.4)}
.scroll-chevrons{display:flex;flex-direction:column;align-items:center}
.scroll-chevrons i{font-size:.9rem;color:rgba(255,255,255,.4);line-height:1;animation:chevronBounce 1.8s ease-in-out infinite}
.scroll-chevrons i:nth-child(2){animation-delay:.22s;color:rgba(255,255,255,.2)}
@keyframes chevronBounce{0%,100%{transform:translateY(0);opacity:.5}50%{transform:translateY(5px);opacity:1}}

/* ============================================================
   STICKY NAV
   ============================================================ */
.sticky-nav{position:fixed;top:0;left:0;right:0;z-index:900;background:var(--white);border-bottom:1px solid rgba(27,58,45,.12);box-shadow:0 2px 20px rgba(27,58,45,.08);transform:translateY(-100%);opacity:0;transition:transform .4s cubic-bezier(.4,0,.2,1),opacity .4s ease;pointer-events:none}
.sticky-nav.visible{transform:translateY(0);opacity:1;pointer-events:all}

/* Inner-page nav — always visible, fixed at top, no JS/scroll logic involved */
.static-nav{
  position:fixed;
  top:0;left:0;right:0;
  z-index:900;
  background:var(--white);
  border-bottom:1px solid rgba(27,58,45,.12);
  box-shadow:0 2px 20px rgba(27,58,45,.08);
}

.sticky-nav-inner{max-width:1320px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding:0 2rem;height:68px}
.sticky-logo img{height:50px;width:auto}
.sticky-links{display:flex;gap:1.8rem;align-items:center}
.s-link{font-size:.78rem;font-weight:500;letter-spacing:.08em;text-transform:uppercase;color:var(--green-dark);transition:color var(--transition);position:relative}
.s-link::after{content:'';position:absolute;bottom:-2px;left:0;width:0;height:1.5px;background:var(--gold);transition:width var(--transition)}

.s-link:hover{color:var(--gold)}
.s-link:hover::after{width:100%}
.s-link-active{color:var(--gold)}
.s-link-active::after{width:100%}
.sticky-right{display:flex;align-items:center;gap:1rem}
.sticky-book-btn{display:inline-block;background:var(--gold);color:var(--green-dark);font-family:var(--font-body);font-weight:700;font-size:.78rem;letter-spacing:.1em;text-transform:uppercase;padding:.55rem 1.4rem;border-radius:var(--radius-sm);transition:background var(--transition),transform var(--transition)}
.sticky-book-btn:hover{background:var(--gold-light);transform:translateY(-1px);color:var(--green-dark)}

/* ============================================================
   WELCOME SECTION
   ============================================================ */
.section-welcome{background:var(--white)}
.welcome-img-wrap{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-hover)}
.welcome-img-main{width:100%;height:480px;object-fit:cover;display:block;transition:transform .6s ease}
.welcome-img-wrap:hover .welcome-img-main{transform:scale(1.03)}
.welcome-tagline{font-size:1.1rem;font-weight:500;color:var(--green-light);margin-bottom:1.25rem;font-style:italic}
.welcome-checks{display:flex;flex-direction:column;gap:.75rem;margin-top:1.5rem}
.welcome-check-item{display:flex;align-items:center;gap:.65rem;font-size:.95rem;font-weight:500;color:var(--charcoal)}
.welcome-check-item i{color:var(--gold);font-size:1rem;flex-shrink:0}

/* ============================================================
   UNIVERSAL LOOP SLIDER
   ============================================================ */
.loop-slider-wrap{position:relative;overflow:hidden;touch-action:pan-y;max-width:100%}
.loop-slider{display:flex;align-items:stretch;transition:transform .55s cubic-bezier(.4,0,.2,1);will-change:transform;user-select:none;min-width:0}
.loop-slide{flex-shrink:0;width:100%}

.loop-arrow{position:absolute;top:50%;transform:translateY(-50%);width:48px;height:48px;border-radius:50%;background:var(--white);border:none;box-shadow:0 4px 20px rgba(27,58,45,.2);display:flex;align-items:center;justify-content:center;font-size:1.1rem;color:var(--green-dark);cursor:pointer;z-index:10;transition:background var(--transition),color var(--transition),transform var(--transition)}
.loop-arrow:hover{background:var(--gold);color:var(--green-dark);transform:translateY(-50%) scale(1.1)}
.loop-arrow--prev{left:.75rem}
.loop-arrow--next{right:.75rem}

.loop-dots{display:flex;justify-content:center;gap:.6rem;margin-top:1.8rem}
.loop-dot{width:8px;height:8px;border-radius:50%;background:rgba(27,58,45,.22);border:none;cursor:pointer;transition:background var(--transition),transform var(--transition);padding:0}
.loop-dot.active{background:var(--gold);transform:scale(1.35)}

/* ============================================================
   ROOMS SLIDER
   ============================================================ */
.section-rooms{background:var(--ivory)}

.room-slide{display:grid;grid-template-columns:1fr 1fr;min-height:460px;border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-hover);background:var(--white)}
.room-slide-img{overflow:hidden}
.room-slide-img img{width:100%;height:100%;object-fit:cover;transition:transform .7s ease;display:block;pointer-events:none}
.room-slide:hover .room-slide-img img{transform:scale(1.05)}
.room-slide-body{padding:3rem 2.5rem;display:flex;flex-direction:column;justify-content:center;gap:1rem}
.room-slide-title{font-family:var(--font-display);font-size:1.8rem;font-weight:700;color:var(--green-dark);line-height:1.2;transition:color var(--transition)}
.room-slide-title:hover{color:var(--gold)}
.room-slide-meta{display:flex;gap:1.5rem;flex-wrap:wrap}
.room-slide-meta span{font-size:.82rem;color:var(--mist);display:flex;align-items:center;gap:.35rem;font-weight:500}
.room-slide-meta i{color:var(--green-light)}
.room-slide-desc{font-size:.97rem;color:#666;line-height:1.7}
.room-slide-price{font-family:var(--font-display);font-size:1.1rem;color:var(--charcoal);margin-top:.5rem}
.room-slide-price strong{font-size:1.5rem;color:var(--green-dark)}

/* ============================================================
   SERVICES SLIDER
   ============================================================ */
.section-services{background:var(--white)}

.services-slider .loop-slide{padding:0 .5rem}
.service-slide{border-radius:var(--radius-md);overflow:hidden;background:var(--white);box-shadow:var(--shadow-card);transition:transform var(--transition),box-shadow var(--transition)}
.service-slide:hover{transform:translateY(-7px);box-shadow:var(--shadow-hover)}
.service-img-wrap{position:relative;overflow:hidden}
.service-img-wrap img{width:100%;height:240px;object-fit:cover;transition:transform .6s ease;display:block;pointer-events:none}
.service-slide:hover .service-img-wrap img{transform:scale(1.07)}
.service-icon{position:absolute;bottom:-20px;right:1.25rem;width:44px;height:44px;background:var(--gold);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.1rem;color:var(--green-dark);box-shadow:0 4px 16px rgba(201,168,76,.4);z-index:2}

/* ---- TOUR / ACTIVITY badge on homepage slider cards ---- */
.service-tag{
  position:absolute;
  top:1rem;left:1rem;
  background:var(--gold);
  color:var(--green-dark);
  font-family:var(--font-body);
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:.3rem .7rem;
  border-radius:20px;
  z-index:2;
  box-shadow:0 3px 10px rgba(0,0,0,.2);
}
.service-tag--activity{background:var(--green-dark);color:var(--white)}
.service-body{padding:2rem 1.5rem 1.75rem}
.service-body h4{font-size:1.05rem;margin-bottom:.5rem}
.service-body h4 a{color:var(--green-dark);transition:color var(--transition)}
.service-body h4 a:hover{color:var(--gold)}
.service-body p{font-size:.88rem;color:#666;margin:0}

@media(min-width:992px){
  .services-slider .loop-slide{width:33.333%}
}
@media(min-width:768px) and (max-width:991.98px){
  .services-slider .loop-slide{width:50%}
}

/* ============================================================
   CATCH OUR STORIES
   ============================================================ */
.section-stories{position:relative;overflow:hidden;background:var(--green-dark)}
.stories-header{text-align:center;padding:3.5rem 1.5rem 2.5rem}
.stories-heading{font-family:var(--font-display);font-size:clamp(2rem,4vw,3rem);color:var(--white);font-weight:600}

.stories-slider-wrap{position:relative;overflow:hidden;touch-action:pan-y}
.stories-track{display:flex;transition:transform .6s cubic-bezier(.4,0,.2,1);will-change:transform;user-select:none}
.story-slide{min-width:100%;width:100%;flex-shrink:0;overflow:hidden;padding:0 3rem 3rem}
.story-slide-inner{border-radius:var(--radius-lg);overflow:hidden;box-shadow:0 8px 40px rgba(0,0,0,.35);background:#0a1810;position:relative}
.story-slide-inner{width:100%;height:68vh;max-height:620px;display:flex;align-items:center;justify-content:center}
.story-slide-inner.story-zoomable{cursor:zoom-in}
.story-slide img{max-width:100%;max-height:100%;width:auto;height:auto;object-fit:contain;object-position:center;display:block;pointer-events:none;margin:0 auto}

.story-zoom-icon{
  position:absolute;
  bottom:1.1rem;right:1.1rem;
  width:42px;height:42px;
  border-radius:50%;
  background:rgba(255,255,255,.15);
  backdrop-filter:blur(6px);
  border:1.5px solid rgba(255,255,255,.35);
  color:var(--white);
  display:flex;align-items:center;justify-content:center;
  font-size:1.05rem;
  opacity:0;
  transform:scale(.85);
  transition:opacity .25s ease,transform .25s ease,background .25s ease;
  pointer-events:none;
}
.story-slide-inner.story-zoomable:hover .story-zoom-icon{opacity:1;transform:scale(1)}
.story-slide-inner.story-zoomable:hover{box-shadow:0 12px 50px rgba(0,0,0,.5)}

.story-arrow{position:absolute;top:50%;transform:translateY(-50%);width:56px;height:56px;background:rgba(255,255,255,.12);backdrop-filter:blur(8px);border:1.5px solid rgba(255,255,255,.3);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.2rem;color:var(--white);cursor:pointer;z-index:10;transition:all var(--transition)}
.story-arrow:hover{background:var(--gold);border-color:var(--gold);color:var(--green-dark);transform:translateY(-50%) scale(1.1)}
.story-arrow--prev{left:1rem}
.story-arrow--next{right:1rem}

/* ============================================================
   REVIEWS CAROUSEL
   ============================================================ */
.section-reviews{background:var(--ivory)}

.reviews-focus-wrap{
  position:relative;
  max-width:620px;
  margin:0 auto;
  padding:0 64px 3rem;
}

.reviews-viewport{
  overflow:hidden;
  padding:1.5rem 0 0;
}

.reviews-track{
  display:flex;
  align-items:stretch;
  transition:transform .55s cubic-bezier(.4,0,.2,1);
  will-change:transform;
  user-select:none;
  cursor:grab;
}
.reviews-track:active{cursor:grabbing}

.review-card{
  flex:0 0 100%;
  width:100%;
  background:var(--white);
  border-radius:var(--radius-md);
  padding:2.4rem 2.2rem;
  box-shadow:var(--shadow-hover);
  display:flex;
  flex-direction:column;
  gap:1rem;
}

.review-stars{color:var(--gold);font-size:1.1rem;letter-spacing:.08em}
.review-quote{font-family:var(--font-display);font-size:1.05rem;font-style:italic;color:#444;line-height:1.8;border:none;padding:0;margin:0;flex:1}
.review-footer{display:flex;align-items:center;gap:.85rem;border-top:1px solid var(--ivory-dark);padding-top:1.1rem;margin-top:auto}
.review-avatar{width:48px;height:48px;border-radius:50%;background:var(--green-dark);color:var(--gold);font-weight:700;font-size:.85rem;display:flex;align-items:center;justify-content:center;flex-shrink:0;overflow:hidden}
.review-avatar--photo img{width:100%;height:100%;object-fit:cover}
.review-info{flex:1;min-width:0}
.review-name{font-weight:600;font-size:.95rem;color:var(--charcoal);margin:0}
.review-origin{font-size:.8rem;color:var(--mist);margin:0}
.review-platform{font-size:.8rem;font-weight:600;color:var(--green-light);display:flex;align-items:center;gap:.3rem;white-space:nowrap;transition:color var(--transition);flex-shrink:0}
.review-platform:hover{color:var(--gold)}

.reviews-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-70%);
  width:52px;height:52px;
  border-radius:50%;
  background:var(--white);
  border:none;
  box-shadow:0 4px 20px rgba(27,58,45,.18);
  display:flex;align-items:center;justify-content:center;
  font-size:1.1rem;
  color:var(--green-dark);
  cursor:pointer;
  z-index:10;
  transition:background var(--transition),color var(--transition),transform var(--transition);
}
.reviews-arrow:hover{background:var(--gold);color:var(--green-dark);transform:translateY(-70%) scale(1.1)}
.reviews-arrow--prev{left:0}
.reviews-arrow--next{right:0}

.reviews-dots{display:flex;justify-content:center;gap:.6rem;margin-top:1.4rem}
.reviews-dot{
  width:9px;height:9px;
  border-radius:50%;
  background:rgba(27,58,45,.22);
  border:none;
  cursor:pointer;
  padding:0;
  transition:background var(--transition),transform var(--transition);
}
.reviews-dot.active{background:var(--gold);transform:scale(1.4)}

@media(max-width:767.98px){
  .reviews-focus-wrap{padding:0 48px 2.5rem}
  .reviews-arrow{width:40px;height:40px;font-size:.95rem}
  .review-card{padding:1.8rem 1.4rem}
  .review-quote{font-size:.95rem}
}
@media(max-width:479.98px){
  .reviews-focus-wrap{padding:0 36px 2rem}
  .reviews-arrow{width:34px;height:34px;font-size:.85rem}
}

/* ============================================================
   LOCATION SECTION
   ============================================================ */
.section-location{background:var(--white)}
.location-info{display:flex;flex-direction:column;gap:1.5rem}
.location-info-item{display:flex;gap:1rem;align-items:flex-start}
.location-info-item i{font-size:1.25rem;color:var(--gold);margin-top:.15rem;flex-shrink:0}
.location-info-item h5{font-family:var(--font-body);font-size:.78rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--green-dark);margin-bottom:.25rem}
.location-info-item p{color:#555;margin:0;font-size:.95rem}
.location-info-item a{color:var(--green-light);transition:color var(--transition)}
.location-info-item a:hover{color:var(--gold)}
.map-wrapper{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-card);border:3px solid var(--ivory-dark)}

/* ============================================================
   BOOK YOUR STAY
   ============================================================ */
.section-book{background:var(--ivory)}
.book-cards{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.book-card{position:relative;display:flex;flex-direction:column;align-items:center;text-align:center;gap:.75rem;padding:2.5rem 1.5rem 2rem;border-radius:var(--radius-md);border:2px solid var(--ivory-dark);background:var(--white);color:var(--charcoal);transition:all var(--transition)}
.book-card:hover{border-color:var(--gold);transform:translateY(-6px);box-shadow:var(--shadow-hover);color:var(--charcoal)}
.book-card-icon{font-size:2.2rem;color:var(--gold);margin-bottom:.5rem}
.book-card h4{font-family:var(--font-body);font-size:1rem;font-weight:700;color:var(--green-dark);margin:0}
.book-card p{font-size:.85rem;color:#777;margin:0}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{background:var(--green-dark);color:rgba(255,255,255,.85)}
.footer-inner{display:grid;grid-template-columns:1.4fr 1fr 1.4fr;gap:3rem;padding:4rem 5% 3rem;border-bottom:1px solid rgba(255,255,255,.1)}

.footer-col--logo{display:flex;flex-direction:column;align-items:flex-start;gap:1.5rem}
.footer-logo{height:80px;width:auto;}
.footer-socials{
  display:flex;
  flex-wrap:nowrap;
  gap:.85rem;
  justify-content:flex-start;
}
.footer-socials a{
  font-size:1.15rem;
  color:rgba(255,255,255,.7);
  transition:color var(--transition),transform var(--transition);
  width:28px;
  height:28px;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
}
.footer-socials a:hover{transform:translateY(-3px)}
.footer-socials a[aria-label="Facebook"]:hover{color:#1877F2}
.footer-socials a[aria-label="Instagram"]:hover{color:#E1306C}
.footer-socials a[aria-label="WhatsApp"]:hover{color:#25D366}
.footer-socials a[aria-label="YouTube"]:hover{color:#FF0000}
.footer-socials a[aria-label="TikTok"]:hover{color:#000000}

.footer-col--links{display:flex;flex-direction:column;align-items:center;text-align:center}
.footer-col-heading{font-family:var(--font-body);font-size:.73rem;font-weight:700;letter-spacing:.18em;text-transform:uppercase;color:var(--gold);margin-bottom:1.25rem}
.footer-col--links ul{display:flex;flex-direction:column;gap:.65rem;align-items:center}
.footer-col--links ul li a{font-size:.92rem;color:rgba(255,255,255,.82);transition:color var(--transition)}
.footer-col--links ul li a:hover{color:var(--gold)}

.footer-col--contact{display:flex;flex-direction:column}
.footer-contact-list{display:flex;flex-direction:column;gap:.9rem}
.footer-contact-list li{display:flex;align-items:flex-start;gap:.7rem;font-size:.9rem;color:rgba(255,255,255,.82)}
.footer-contact-list i{color:var(--gold);font-size:1rem;margin-top:.2rem;flex-shrink:0}
.footer-contact-list a{color:rgba(255,255,255,.82);transition:color var(--transition)}
.footer-contact-list a:hover{color:var(--gold)}

.footer-bottom{text-align:center;padding:1.5rem 1rem;font-size:.82rem;color:rgba(255,255,255,.45)}

/* ============================================================
   ROOMS PAGE — full grid listing
   ============================================================ */
.rooms-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:2rem}
.room-card{border-radius:var(--radius-lg);overflow:hidden;background:var(--white);box-shadow:var(--shadow-card);transition:transform var(--transition),box-shadow var(--transition)}
.room-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-hover)}
.room-card-img{height:260px;overflow:hidden}
.room-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease}
.room-card:hover .room-card-img img{transform:scale(1.06)}
.room-card-body{padding:1.75rem}
.room-card-title{font-family:var(--font-display);font-size:1.35rem;margin-bottom:.5rem;color:var(--green-dark)}
.room-card-meta{display:flex;gap:1.2rem;flex-wrap:wrap;margin-bottom:.85rem}
.room-card-meta span{font-size:.78rem;color:var(--mist);display:flex;align-items:center;gap:.3rem}
.room-card-meta i{color:var(--green-light)}
.room-card-desc{font-size:.92rem;color:#666;margin-bottom:1.1rem}

.room-feature-list{list-style:none;padding:0;margin:0 0 1.1rem;display:flex;flex-direction:column;gap:.4rem}
.room-feature-list li{font-size:.85rem;color:#555;display:flex;align-items:flex-start;gap:.5rem}
.room-feature-list li i{color:var(--green-light);margin-top:.2rem;flex-shrink:0}

.room-policy-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:.75rem}
.room-policy-list li{font-size:.95rem;color:#555;display:flex;align-items:flex-start;gap:.65rem;line-height:1.6}
.room-policy-list li i{color:var(--gold);font-size:1.05rem;margin-top:.15rem;flex-shrink:0}
.room-card-footer{display:flex;align-items:center;justify-content:space-between}
.room-card-price{font-family:serif;font-size:1.05rem;color:var(--charcoal)}
.room-card-price strong{font-size:1.35rem;color:var(--green-dark)}

@media(max-width:767.98px){
  .rooms-grid{grid-template-columns:1fr}
  .room-card-footer{flex-direction:column;align-items:stretch;gap:.85rem}
  .room-card-footer .btn-gold{text-align:center}
}

/* ============================================================
   GALLERY PAGE — masonry-ish grid
   ============================================================ */
.gallery-grid{
  columns:3 280px;
  column-gap:1.25rem;
}
.gallery-item{
  break-inside:avoid;
  margin-bottom:1.25rem;
  border-radius:var(--radius-md);
  overflow:hidden;
  box-shadow:var(--shadow-card);
  position:relative;
  cursor:pointer;
}
.gallery-item img{width:100%;display:block;transition:transform .5s ease}
.gallery-item:hover img{transform:scale(1.05)}
.gallery-item-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top, rgba(5,12,8,.75) 0%, transparent 50%);
  display:flex;align-items:flex-end;padding:1rem;
  opacity:0;transition:opacity var(--transition);
}
.gallery-item:hover .gallery-item-overlay{opacity:1}
.gallery-item-date{color:var(--white);font-size:.78rem;letter-spacing:.05em}

@media(max-width:767.98px){
  .gallery-grid{columns:1 100%}
}
@media(min-width:768px) and (max-width:991.98px){
  .gallery-grid{columns:2 240px}
}

/* ============================================================
   FACILITIES PAGE — service grid
   ============================================================ */
.facilities-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.75rem}
@media(max-width:991.98px){.facilities-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:575.98px){.facilities-grid{grid-template-columns:1fr}}

/* ============================================================
   TOURS & ACTIVITIES PAGE — image-first offer cards
   ============================================================ */
.offer-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.75rem}
@media(max-width:991.98px){.offer-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:575.98px){.offer-grid{grid-template-columns:1fr}}

.offer-card{
  background:var(--white);
  border-radius:var(--radius-md);
  overflow:hidden;
  box-shadow:var(--shadow-card);
  transition:transform var(--transition),box-shadow var(--transition);
}
.offer-card:hover{transform:translateY(-7px);box-shadow:var(--shadow-hover)}
.offer-card-img{overflow:hidden;height:220px}
.offer-card-img img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .6s ease}
.offer-card:hover .offer-card-img img{transform:scale(1.07)}
.offer-card-body{padding:1.5rem 1.5rem 1.75rem}
.offer-card-title{font-size:1.15rem;margin-bottom:.6rem;color:var(--green-dark)}
.offer-card-desc{font-size:.92rem;color:#666;line-height:1.65;margin:0}

/* ---- VALUE CARD (About page — icon beside title) ---- */
.value-card{
  background:var(--white);
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-card);
  padding:1.75rem;
  transition:transform var(--transition),box-shadow var(--transition);
}
.value-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-hover)}
.value-card-head{display:flex;align-items:center;gap:.85rem;margin-bottom:.35rem}
.value-icon{
  width:46px;height:46px;
  border-radius:50%;
  background:var(--gold);
  color:var(--green-dark);
  display:flex;align-items:center;justify-content:center;
  font-size:1.1rem;
  flex-shrink:0;
}
.value-card-head h4{margin:0;font-size:1.05rem}
.value-card p{margin:-0.75rem 0 0;font-size:.92rem;color:#666;line-height:1.65;padding-left:calc(46px + .85rem);}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-card{
  background:var(--ivory);
  border-radius:var(--radius-lg);
  padding:2.5rem;
  height:100%;
}
.contact-info-row{display:flex;gap:1rem;align-items:flex-start;margin-bottom:1.5rem}
.contact-info-row:last-child{margin-bottom:0}
.contact-info-row i{font-size:1.3rem;color:var(--gold);margin-top:.15rem;flex-shrink:0}
.contact-info-row h5{font-size:.8rem;letter-spacing:.08em;text-transform:uppercase;color:var(--green-dark);margin-bottom:.3rem}
.contact-info-row p,
.contact-info-row a{color:#555;font-size:.95rem}
.contact-info-row a:hover{color:var(--gold)}

.contact-form{background:var(--white);border-radius:var(--radius-lg);padding:2.5rem;box-shadow:var(--shadow-card)}
.form-label{font-size:.8rem;font-weight:600;letter-spacing:.05em;color:var(--green-dark);text-transform:uppercase;margin-bottom:.4rem}
.form-control,.form-select{
  border:1.5px solid var(--ivory-dark);
  border-radius:var(--radius-sm);
  padding:.7rem 1rem;
  font-size:.95rem;
  transition:border-color var(--transition),box-shadow var(--transition);
}
.form-control:focus,.form-select:focus{
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(201,168,76,.15);
}
textarea.form-control{min-height:130px;resize:vertical}

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.booking-card{
  background:var(--white);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-hover);
  padding:2.5rem;
  max-width:760px;
  margin:0 auto;
}
/* ---- LEGACY ROOM OPTION (kept for reference / fallback markup) ---- */
.booking-room-option{
  border:2px solid var(--ivory-dark);
  border-radius:var(--radius-md);
  padding:1.25rem;
  display:flex;
  gap:1rem;
  align-items:center;
  cursor:pointer;
  transition:border-color var(--transition);
  margin-bottom:1rem;
}
.booking-room-option:hover,
.booking-room-option.selected{border-color:var(--gold)}
.booking-room-option img{width:90px;height:70px;object-fit:cover;border-radius:var(--radius-sm);flex-shrink:0}
.booking-room-option-info{flex:1}
.booking-room-option-info h6{font-family:var(--font-display);font-size:1.05rem;color:var(--green-dark);margin-bottom:.2rem}
.booking-room-option-info span{font-size:.85rem;color:var(--mist)}
.booking-room-option-price{font-family:var(--font-display);font-size:1.1rem;color:var(--green-dark);white-space:nowrap}

/* ---- STEP INDICATOR — stacked vertically, one step per line ---- */
.booking-steps{display:flex;flex-direction:column;gap:.6rem;align-items:center;justify-content:center}
.booking-step{display:flex;align-items:center;gap:.65rem;opacity:.45;transition:opacity var(--transition)}
.booking-step.active{opacity:1}
.booking-step-num{width:28px;height:28px;border-radius:50%;background:var(--ivory-dark);color:var(--green-dark);font-weight:700;font-size:.82rem;display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:background var(--transition),color var(--transition)}
.booking-step.active .booking-step-num{background:var(--gold);color:var(--green-dark)}
.booking-step-label{font-size:.85rem;font-weight:600;letter-spacing:.02em;color:var(--charcoal)}

/* ---- OCCUPANCY HINT ---- */
.occupancy-hint{font-size:.8rem;color:var(--mist);margin:0}

/* ---- RICH ROOM-SELECT DROPDOWN ---- */
.room-select{position:relative}
.room-select-toggle{
  width:100%;
  display:flex;align-items:center;justify-content:space-between;
  gap:1rem;
  border:1.5px solid var(--ivory-dark);
  border-radius:var(--radius-sm);
  background:var(--white);
  padding:.65rem 1rem;
  cursor:pointer;
  transition:border-color var(--transition);
  text-align:left;
}
.room-select-toggle:hover,
.room-select.open .room-select-toggle{border-color:var(--gold)}
.room-select-chevron{color:var(--mist);transition:transform var(--transition);flex-shrink:0}
.room-select.open .room-select-chevron{transform:rotate(180deg)}
.room-select-placeholder{color:#999;font-size:.95rem}
.room-select-toggle-inner{display:flex;align-items:center;gap:.85rem;min-width:0}
.room-select-selected-thumb{width:44px;height:36px;object-fit:cover;border-radius:6px;flex-shrink:0}
.room-select-selected-info{display:flex;flex-direction:column;min-width:0}
.room-select-selected-info strong{font-family:var(--font-display);font-size:.95rem;color:var(--green-dark);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.room-select-selected-info span{font-size:.78rem;color:var(--mist)}

.room-select-panel{
  display:none;
  background:var(--white);
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-hover);
  border:1px solid var(--ivory-dark);
  max-height:340px;
  overflow-y:auto;
  z-index:1200;
  padding:.5rem;
}
.room-select-panel.open{display:block}
.room-select-option{
  display:flex;align-items:center;gap:1rem;
  padding:.75rem;
  border-radius:var(--radius-sm);
  cursor:pointer;
  transition:background var(--transition);
}
.room-select-option:hover,
.room-select-option.active{background:var(--ivory)}
.room-select-option img{width:64px;height:52px;object-fit:cover;border-radius:8px;flex-shrink:0}
.room-select-option-info{flex:1;min-width:0}
.room-select-option-info h6{font-family:var(--font-display);font-size:1rem;color:var(--green-dark);margin-bottom:.15rem}
.room-select-option-info span{font-size:.82rem;color:var(--mist)}
.room-select-option-price{font-family:var(--font-display);font-size:1rem;color:var(--green-dark);white-space:nowrap;text-align:right}
.room-select-option-price small{display:block;font-family:var(--font-body);font-size:.7rem;color:var(--mist);font-weight:400}

/* ---- PHONE INPUT GROUP (country code + number) ---- */
.phone-input-group{display:flex;gap:.5rem}
.phone-input-group select{flex:0 0 110px}
.phone-input-group input{flex:1}

/* ---- AVAILABILITY MESSAGE ---- */
.availability-message{border-radius:var(--radius-sm);padding:.9rem 1.2rem;font-size:.9rem;font-weight:500;display:flex;align-items:center;gap:.6rem}
.availability-message.success{background:rgba(74,124,89,.12);color:var(--green-mid);border:1px solid rgba(74,124,89,.3)}
.availability-message.error{background:rgba(200,60,60,.1);color:#b23c3c;border:1px solid rgba(200,60,60,.3)}

/* ---- BOOKING SUMMARY (step 2) ---- */
.booking-summary{background:var(--ivory);border-radius:var(--radius-md);padding:1.25rem 1.5rem;font-size:.9rem;color:var(--charcoal)}
.booking-summary strong{color:var(--green-dark)}

/* ---- RESERVATION RESULT MODAL ---- */
.reservation-modal-overlay{
  position:fixed;inset:0;
  background:rgba(5,12,8,.55);
  z-index:99999;
  display:none;
  align-items:center;justify-content:center;
  padding:1.5rem;
}
.reservation-modal-overlay.open{display:flex}
.reservation-modal{
  background:var(--white);
  border-radius:var(--radius-lg);
  max-width:420px;
  width:100%;
  padding:2.5rem 2rem;
  text-align:center;
  box-shadow:0 20px 60px rgba(0,0,0,.35);
  animation:modalPopIn .25s ease;
}
@keyframes modalPopIn{from{opacity:0;transform:scale(.92)}to{opacity:1;transform:scale(1)}}
.reservation-modal-icon{font-size:3rem;margin-bottom:1rem;color:var(--green-light)}
.reservation-modal-overlay.error .reservation-modal-icon{color:#b23c3c}
.reservation-modal-title{font-size:1.3rem;margin-bottom:.6rem}
.reservation-modal-text{color:#666;font-size:.92rem;margin-bottom:1.5rem}

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page{
  min-height:100vh;
  min-height:100dvh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:2rem;
  background:var(--ivory);
}
.error-code{
  font-family:var(--font-display);
  font-size:clamp(5rem,18vw,9rem);
  font-weight:700;
  color:var(--green-dark);
  line-height:1;
  margin-bottom:.5rem;
}
.error-code em{color:var(--gold);font-style:italic}
.error-title{font-size:1.4rem;margin-bottom:.75rem}
.error-text{color:#666;max-width:440px;margin:0 auto 2rem}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .7s ease,transform .7s ease}
.reveal.visible{opacity:1;transform:translateY(0)}
.reveal-stagger>*{opacity:0;transform:translateY(22px);transition:opacity .6s ease,transform .6s ease}
.reveal-stagger.visible>*{opacity:1;transform:translateY(0)}
.reveal-stagger.visible>*:nth-child(1){transition-delay:.05s}
.reveal-stagger.visible>*:nth-child(2){transition-delay:.15s}
.reveal-stagger.visible>*:nth-child(3){transition-delay:.25s}
.reveal-stagger.visible>*:nth-child(4){transition-delay:.35s}
.reveal-stagger.visible>*:nth-child(n+5){transition-delay:.45s}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:1199.98px){
  .book-cards{grid-template-columns:repeat(2,1fr)}
  .footer-inner{grid-template-columns:1fr 1fr}
  .footer-col--contact{grid-column:1/-1}
}

@media(max-width:991.98px){
  .section-padding{padding:72px 0}
  .room-slide{grid-template-columns:1fr;min-height:auto}
  .room-slide-img img{height:280px}
  .room-slide-body{padding:2rem 1.5rem}
  #roomsWrap .loop-arrow{top:140px;transform:translateY(-50%)}
  #roomsWrap .loop-arrow:hover{transform:translateY(-50%) scale(1.1)}
  .story-slide{padding:0 2rem 2.5rem}
  .story-slide-inner{height:55vh}
  .welcome-img-main{height:380px}
  .facilities-grid{gap:1.25rem}
}

@media(max-width:767.98px){
  .section-padding{padding:56px 0}
  .hero-section{min-height:100vh;min-height:100dvh;padding-top:90px;padding-bottom:55px}
  .hero-title{font-size:2.2rem}
  .hero-subtitle{font-size:.95rem;margin-bottom:1.6rem}
  .hero-content{padding:0 1.25rem}
  .hero-nav-mobile{padding:1rem 1rem 0}
  .hero-nav-logo-mobile img{height:68px;margin-top:6px}
  .welcome-img-main{height:260px}
  .room-slide{grid-template-columns:1fr}
  .room-slide-img img{height:230px}
  .room-slide-body{padding:1.5rem 1.25rem}
  .room-slide-title{font-size:1.35rem}
  #roomsWrap .loop-arrow{top:115px;transform:translateY(-50%)}
  #roomsWrap .loop-arrow:hover{transform:translateY(-50%) scale(1.1)}
  .services-slider .loop-slide{width:100%}
  .reviews-slider .loop-slide{width:100%}
  .story-slide{padding:0 1rem 2rem}
  .story-slide-inner{height:48vw;min-height:220px}
  .story-arrow{width:42px;height:42px;font-size:1rem}
  .book-cards{grid-template-columns:1fr 1fr}
  .footer-inner{grid-template-columns:1fr;gap:2rem;padding:3rem 5% 2rem}
  .footer-logo{height:64px}
  .footer-col--logo,.footer-col--links,.footer-col--contact{align-items:flex-start;text-align:left}
  .contact-info-card,.contact-form,.booking-card{padding:1.75rem}
}

@media(max-height:680px) and (max-width:767.98px){
  .hero-section{padding-top:80px;padding-bottom:48px}
  .hero-title{font-size:1.9rem}
  .hero-subtitle{font-size:.88rem;margin-bottom:1.2rem}
  .hero-eyebrow{margin-bottom:.6rem}
  .hero-cta-btn{padding:.7rem 1.8rem;font-size:.78rem}
  .hero-scroll-cue{bottom:.75rem}
  .hero-scroll-cue span{font-size:.52rem;letter-spacing:.16em}
}

/* ============================================================
   PAGE BODY OFFSET — placed at the very end of the stylesheet
   with !important so it can never be silently overridden by a
   later .section-padding rule of equal specificity (that was the
   original bug: same specificity + later source order = it won).
   ============================================================ */
.page-body-offset{padding-top:108px !important}
@media(max-width:767.98px){
  .page-body-offset{padding-top:100px !important}
}
