/* ================================================================
   KOSMOS LODGE — Modern Redesign
   Accent: #62b002
   ================================================================ */
:root {
  --green:        #3d7811;
  --green-dark:   #2c5a0d;
  --green-light:  #5aa81a;
  --dark:         #0c1a07;
  --dark-mid:     #162310;
  --dark-card:    #1a2d13;
  --text:         #1a1a1a;
  --text-light:   #666;
  --white:        #ffffff;
  --off-white:    #f6f4ef;
  --shadow:       0 4px 30px rgba(0,0,0,.1);
  --radius:       12px;
  --radius-lg:    20px;
  --trans:        all .3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--text); background: var(--off-white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--trans); }
ul { list-style: none; }
button { font-family: 'Poppins', sans-serif; cursor: pointer; }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Section label ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--green);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-label.light { color: var(--green-light); }
.section-label.light::before { background: var(--green-light); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: var(--trans);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary  { background: var(--green); color: #fff; border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(98,176,2,.4); color: #fff; }
.btn-outline  { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline:hover { background: #fff; color: var(--dark); transform: translateY(-2px); }
.btn-ghost    { background: transparent; color: var(--green); border-color: var(--green); }
.btn-ghost:hover { background: var(--green); color: #fff; transform: translateY(-2px); }
.btn-sm { padding: .55rem 1.3rem; font-size: .78rem; }
.btn-dark { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn-dark:hover { background: var(--dark-mid); border-color: var(--dark-mid); transform: translateY(-2px); }

/* ================================================================
   TOP BAR
   ================================================================ */
.top-bar {
  background: var(--dark);
  border-bottom: 1px solid rgba(98,176,2,.15);
  padding: .45rem 0;
  position: relative;
  z-index: 200;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.top-bar .welcome { color: rgba(255,255,255,.65); font-size: .78rem; letter-spacing: .06em; }
.top-bar .socials { display: flex; gap: .6rem; align-items: center; }
.top-bar .socials a {
  width: 28px; height: 28px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  transition: var(--trans);
}
.top-bar .socials a:hover { background: var(--green); color: #fff; transform: scale(1.1); }

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 999;
  padding: 1.4rem 0;
  transition: all .4s ease;
}
/* Recalculated by JS using top-bar height */
.navbar.scrolled {
  background: rgba(12,26,7,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: .7rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.35);
}
.navbar.solid {
  position: sticky;
  top: 0;
  background: var(--dark);
  padding: .7rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.35);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-logo img { height: 58px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: .15rem; }
.nav-menu a {
  color: rgba(255,255,255,.82);
  font-size: .85rem;
  font-weight: 500;
  padding: .48rem 1rem;
  border-radius: 50px;
  letter-spacing: .02em;
}
.nav-menu a:hover, .nav-menu a.active { color: #fff; background: rgba(98,176,2,.18); }
.nav-menu .nav-cta { background: var(--green); color: #fff; padding: .48rem 1.3rem; }
.nav-menu .nav-cta:hover { background: var(--green-dark); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: .4rem;
}
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--trans); display: block; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(12,26,7,.35) 0%,
    rgba(12,26,7,.55) 50%,
    rgba(12,26,7,.82) 100%);
  z-index: 1;
}
.hero-content {
  max-width: 860px;
  padding: 0 1.5rem;
  animation: heroIn 1s ease .15s both;
  position: relative;
  z-index: 2;
}
@keyframes heroIn { from { opacity:0; transform:translateY(32px) } to { opacity:1; transform:translateY(0) } }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(98,176,2,.18);
  border: 1px solid rgba(98,176,2,.4);
  backdrop-filter: blur(10px);
  color: var(--green-light);
  font-size: .75rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  padding: .45rem 1.2rem; border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
  line-height: 1.15;
}
.hero h1 em { color: var(--green-light); font-style: normal; }
.hero > .hero-content > p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 600px;
  margin: 0 auto 2.2rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2.2rem; left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.5);
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  animation: bounce 2.2s ease infinite;
}
.hero-scroll i { font-size: 1.1rem; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0) }
  50%      { transform: translateX(-50%) translateY(8px) }
}

/* ================================================================
   FEATURES STRIP
   ================================================================ */
.features-strip { background: var(--dark); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.feature-card {
  padding: 2rem 1.2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.feature-card:last-child { border-right: none; }
.feature-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transition: var(--trans);
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-card:hover { background: rgba(98,176,2,.06); }
.feature-icon {
  width: 52px; height: 52px;
  background: rgba(98,176,2,.14);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .9rem;
  font-size: 1.3rem; color: var(--green);
  transition: var(--trans);
}
.feature-card:hover .feature-icon { background: var(--green); color: #fff; transform: scale(1.1); }
.feature-card h4 { color: #fff; font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-family: 'Poppins', sans-serif; margin-bottom: .4rem; }
.feature-card p  { color: rgba(255,255,255,.45); font-size: .75rem; line-height: 1.5; }

/* ================================================================
   ABOUT SECTION
   ================================================================ */
.about-section { padding: 7rem 0; background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-image-stack { position: relative; padding-bottom: 3rem; padding-right: 2rem; }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.about-img-main:hover img { transform: scale(1.04); }
.about-img-accent {
  position: absolute; bottom: 0; right: 0;
  width: 56%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 5px solid var(--off-white);
  box-shadow: 0 10px 40px rgba(0,0,0,.16);
  aspect-ratio: 1;
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-stat {
  position: absolute; top: 2rem; right: -1rem;
  background: var(--green);
  color: #fff; padding: 1.1rem 1.4rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 30px rgba(98,176,2,.45);
}
.about-stat .num  { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.about-stat .lbl  { font-size: .68rem; font-weight: 500; letter-spacing: .04em; opacity: .88; }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--dark); margin-bottom: 1.2rem; line-height: 1.25; }
.about-text > p { color: var(--text-light); margin-bottom: 2rem; line-height: 1.75; font-size: .95rem; }

/* Accordion */
.accordion-list { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2rem; }
.accordion-item { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,.05); border: 1px solid rgba(0,0,0,.05); }
.accordion-trigger {
  width: 100%; background: none; border: none;
  padding: 1.1rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .9rem; font-weight: 600; color: var(--text);
  text-align: left; gap: 1rem; transition: var(--trans);
}
.accordion-trigger:hover { color: var(--green); }
.accordion-icon {
  width: 26px; height: 26px;
  background: var(--off-white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--green); font-size: .7rem;
  transition: var(--trans);
}
.accordion-trigger.open .accordion-icon { background: var(--green); color: #fff; transform: rotate(180deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.accordion-body.open { max-height: 500px; }
.accordion-body-inner { padding: 0 1.4rem 1.1rem; color: var(--text-light); font-size: .86rem; line-height: 1.75; }

/* ================================================================
   ROOMS SECTION (homepage preview)
   ================================================================ */
.rooms-section { padding: 7rem 0; background: var(--dark); }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; flex-wrap: wrap; gap: 1.5rem; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: #fff; margin-bottom: .4rem; }
.section-header p { color: rgba(255,255,255,.55); font-size: .9rem; line-height: 1.6; max-width: 420px; }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* Room Card */
.room-card {
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  transition: var(--trans);
}
.room-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.45); border-color: rgba(98,176,2,.25); }
.room-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.room-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.room-card:hover .room-card-img img { transform: scale(1.06); }
.room-badge {
  position: absolute; top: .9rem; left: .9rem;
  background: var(--green); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .25rem .75rem; border-radius: 50px;
}
.room-stars {
  position: absolute; bottom: .9rem; right: .9rem;
  display: flex; gap: 2px; color: #fbbf24; font-size: .65rem;
}
.room-card-body { padding: 1.4rem; }
.room-card-body h3 { color: #fff; font-family: 'Poppins', sans-serif; font-size: .95rem; font-weight: 600; margin-bottom: .4rem; }
.room-card-body p { color: rgba(255,255,255,.48); font-size: .8rem; line-height: 1.55; margin-bottom: 1.2rem; }
.room-card-footer { display: flex; align-items: center; justify-content: space-between; gap: .75rem; flex-wrap: wrap; }
.room-tags { display: flex; gap: .4rem; flex-wrap: wrap; }
.room-tag {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.55);
  font-size: .68rem; padding: .2rem .6rem; border-radius: 50px;
}

/* ================================================================
   PHOTO GALLERY
   ================================================================ */
.gallery-section { padding: 7rem 0; background: var(--off-white); }
.gallery-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--dark); }
.gallery-intro { color: var(--text-light); font-size: .92rem; margin-top: .6rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: .75rem;
  margin-top: 2.5rem;
}
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(12,26,7,.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--trans);
  color: #fff; font-size: 1.6rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-footer { margin-top: 2rem; text-align: center; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 9999;
  display: none; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.lightbox.active { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: fixed;
  background: rgba(255,255,255,.1);
  border: none; color: #fff;
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer;
  transition: var(--trans); backdrop-filter: blur(10px);
}
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev  { top: 50%; left: 1.5rem; transform: translateY(-50%); }
.lightbox-next  { top: 50%; right: 1.5rem; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--green); }

/* ================================================================
   EXPLORE SECTION (homepage preview)
   ================================================================ */
.explore-section { padding: 7rem 0; background: var(--dark); }
.explore-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.explore-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.explore-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.explore-card:hover img { transform: scale(1.07); }
.explore-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.08) 60%);
  padding: 1.4rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: var(--trans);
}
.explore-card:hover .explore-overlay { background: linear-gradient(to top, rgba(12,26,7,.94) 0%, rgba(12,26,7,.3) 70%); }
.explore-num {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--green); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  padding: .25rem .75rem; border-radius: 50px;
}
.explore-overlay h3 { color: #fff; font-family: 'Poppins', sans-serif; font-size: .92rem; font-weight: 600; margin-bottom: .3rem; }
.explore-overlay p { color: rgba(255,255,255,.65); font-size: .78rem; line-height: 1.5; margin-bottom: .75rem; }
.explore-link { display: inline-flex; align-items: center; gap: .4rem; color: var(--green-light); font-size: .78rem; font-weight: 600; transition: var(--trans); }
.explore-link:hover { gap: .7rem; color: var(--green-light); }

/* ================================================================
   AWARDS SECTION
   ================================================================ */
.awards-section { padding: 5.5rem 0; background: var(--off-white); }
.awards-section .section-inner { text-align: center; margin-bottom: 3rem; }
.awards-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--dark); margin-bottom: .5rem; }
.awards-section .sub { color: var(--text-light); font-size: .9rem; }
.awards-grid { display: flex; flex-wrap: wrap; gap: 1.2rem; justify-content: center; align-items: center; }
.award-item {
  background: #fff; border-radius: var(--radius);
  padding: 1.2rem 1.6rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 15px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.04);
  transition: var(--trans);
}
.award-item:hover { transform: translateY(-4px); box-shadow: 0 10px 35px rgba(0,0,0,.12); }
.award-item img { max-width: 130px; max-height: 80px; object-fit: contain; }

/* ================================================================
   CONTACT SECTION
   ================================================================ */
.contact-section { padding: 7rem 0; background: var(--dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 360px; gap: 4rem; align-items: start; }
.contact-form-wrap h2 { font-family: 'Playfair Display', serif; color: #fff; font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: .5rem; }
.contact-form-wrap > p { color: rgba(255,255,255,.55); font-size: .88rem; margin-bottom: 2rem; line-height: 1.6; }
.contact-form { display: flex; flex-direction: column; gap: .9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label { color: rgba(255,255,255,.55); font-size: .72rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }
.form-group input, .form-group textarea, .form-group select {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: .85rem 1.1rem;
  color: #fff; font-family: 'Poppins', sans-serif; font-size: .88rem;
  outline: none; transition: var(--trans); width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,.25); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--green); background: rgba(98,176,2,.05); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--dark); }
.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
}
.contact-card h3 { color: var(--green-light); font-family: 'Poppins', sans-serif; font-size: .75rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 1.3rem; }
.contact-detail { display: flex; align-items: flex-start; gap: .9rem; margin-bottom: 1rem; }
.contact-detail:last-child { margin-bottom: 0; }
.contact-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(98,176,2,.14); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: .85rem;
}
.contact-detail-text label { display: block; color: rgba(255,255,255,.4); font-size: .68rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .15rem; }
.contact-detail-text span { color: rgba(255,255,255,.85); font-size: .85rem; }
.contact-social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.contact-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65); font-size: .85rem; transition: var(--trans);
}
.contact-social a:hover { background: var(--green); border-color: var(--green); color: #fff; }
.rate-card {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: var(--radius-lg); padding: 1.8rem; text-align: center;
}
.rate-card h3 { color: #fff; font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 800; margin-bottom: .3rem; }
.rate-card p  { color: rgba(255,255,255,.85); font-size: .83rem; line-height: 1.55; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: #080f06;
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 1.4rem 0;
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-inner p { color: rgba(255,255,255,.35); font-size: .78rem; }
.footer-inner a { color: var(--green); }
.footer-inner a:hover { color: var(--green-light); }

/* ================================================================
   WHATSAPP FAB
   ================================================================ */
.wa-fab {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 56px; height: 56px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.55rem;
  box-shadow: 0 6px 25px rgba(37,211,102,.45);
  z-index: 900; transition: var(--trans);
}
.wa-fab:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(37,211,102,.65); color: #fff; }
.wa-fab::before {
  content: '';
  position: absolute;
  width: 56px; height: 56px;
  background: #25D366; border-radius: 50%;
  animation: waPulse 2.5s ease infinite;
  z-index: -1;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  background: var(--dark);
  padding: 7rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .35;
}
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(12,26,7,.3), var(--dark));
}

/* ── Photo Strip ── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 220px;
  overflow: hidden;
}
.photo-strip-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.photo-strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
  filter: brightness(.85);
}
.photo-strip-item:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}
.photo-strip-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,26,7,.5) 0%, transparent 60%);
  transition: opacity .3s ease;
}
.photo-strip-item:hover::after { opacity: 0; }
@media (max-width: 768px) {
  .photo-strip { grid-template-columns: repeat(3, 1fr); height: 160px; }
  .photo-strip-item:nth-child(4),
  .photo-strip-item:nth-child(5) { display: none; }
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h6 { color: var(--green); font-size: .75rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; margin-bottom: .7rem; }
.page-hero h1 { font-family: 'Playfair Display', serif; color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); }

/* ================================================================
   ROOMS PAGE
   ================================================================ */
.rooms-page-section { padding: 4rem 0 5rem; background: var(--dark); min-height: 60vh; }
.rooms-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.room-nav-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,.06);
  transition: var(--trans);
  text-decoration: none;
}
.room-nav-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,.4); border-color: rgba(98,176,2,.25); }
.room-nav-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.room-nav-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.room-nav-card:hover .room-nav-img img { transform: scale(1.06); }
.room-nav-body {
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.room-nav-body h3 { color: #fff; font-size: .95rem; font-weight: 600; }

/* Rate + enquiry bar */
.rooms-footer {
  margin-top: 3rem; padding: 2rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.rooms-footer .rate-text h3 { color: #fff; font-family: 'Poppins', sans-serif; font-size: 1.3rem; font-weight: 700; margin-bottom: .3rem; }
.rooms-footer .rate-text p  { color: rgba(255,255,255,.55); font-size: .85rem; }
.rooms-footer .enquire-btns { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ================================================================
   EXPLORE PAGE
   ================================================================ */
.explore-page-section { padding: 4rem 0 5rem; background: var(--dark); }
.explore-page-sidebar h4 { color: #fff; font-family: 'Poppins', sans-serif; font-size: .95rem; font-weight: 700; margin-bottom: 1.2rem; }
.explore-page-sidebar ul { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 2rem; }
.explore-page-sidebar li a {
  display: flex; align-items: center; gap: .7rem;
  color: rgba(255,255,255,.65); font-size: .85rem; padding: .6rem 1rem;
  border-radius: var(--radius); border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.03); transition: var(--trans);
}
.explore-page-sidebar li a:hover { color: #fff; background: rgba(98,176,2,.12); border-color: rgba(98,176,2,.25); }
.explore-page-sidebar li a i { color: var(--green); width: 16px; }
.explore-page-grid { display: grid; grid-template-columns: 280px 1fr; gap: 2.5rem; align-items: start; }
.explore-cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.explore-full-card {
  background: var(--dark-card);
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,.06); transition: var(--trans);
}
.explore-full-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,.4); border-color: rgba(98,176,2,.2); }
.explore-full-card-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.explore-full-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.explore-full-card:hover .explore-full-card-img img { transform: scale(1.06); }
.explore-full-card-num {
  position: absolute; top: .9rem; left: .9rem;
  background: var(--green); color: #fff;
  font-size: .68rem; font-weight: 700; padding: .25rem .75rem; border-radius: 50px;
}
.explore-full-card-body { padding: 1.4rem; }
.explore-full-card-body h3 { color: #fff; font-family: 'Poppins', sans-serif; font-size: .95rem; font-weight: 600; margin-bottom: .5rem; }
.explore-full-card-body p  { color: rgba(255,255,255,.5); font-size: .8rem; line-height: 1.6; margin-bottom: 1.2rem; }

/* ================================================================
   SPECIALS PAGE
   ================================================================ */
.specials-page-section { padding: 4rem 0 5rem; background: var(--dark); }
.specials-intro { color: rgba(255,255,255,.6); font-size: .9rem; margin-bottom: 2.5rem; max-width: 600px; line-height: 1.65; }
.specials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.special-card {
  background: var(--dark-card);
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,.06); transition: var(--trans);
}
.special-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,.4); border-color: rgba(98,176,2,.2); }
.special-card img { width: 100%; display: block; }
.special-card-cta { padding: 1rem 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.special-card-cta p { color: rgba(255,255,255,.55); font-size: .8rem; }
.specials-cta-bar {
  margin-top: 3rem; padding: 2rem;
  background: linear-gradient(135deg, rgba(98,176,2,.15) 0%, rgba(98,176,2,.05) 100%);
  border: 1px solid rgba(98,176,2,.2);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.specials-cta-bar h3 { color: #fff; font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: .3rem; }
.specials-cta-bar p  { color: rgba(255,255,255,.55); font-size: .85rem; }

/* ================================================================
   ROOM DETAIL PAGE
   ================================================================ */
.room-detail-section { padding: 4rem 0 5rem; background: var(--dark); }
.room-back-link {
  display: inline-flex; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.5); font-size: .82rem; margin-bottom: 2rem;
  transition: var(--trans);
}
.room-back-link:hover { color: var(--green-light); }
.room-detail-grid { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
.room-detail-main h1 {
  font-family: 'Playfair Display', serif; color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1rem; line-height: 1.25;
}
.room-detail-main .room-lead {
  color: rgba(255,255,255,.65); font-size: .92rem; line-height: 1.8; margin-bottom: 2rem;
}
.room-meta-tags { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.room-meta-tag {
  background: rgba(98,176,2,.12); border: 1px solid rgba(98,176,2,.25);
  color: var(--green-light); font-size: .72rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .28rem .8rem; border-radius: 50px;
}
.amenities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; margin-bottom: 2rem; }
.amenity-chip {
  display: flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius); padding: .65rem .9rem;
  color: rgba(255,255,255,.75); font-size: .82rem;
}
.amenity-chip i { color: var(--green); width: 15px; text-align: center; flex-shrink: 0; }
.room-photo-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .65rem; margin-top: 2.5rem;
}
.room-photo-gallery .gallery-item { aspect-ratio: 4/3; border-radius: var(--radius); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .45rem .7rem;
  background: linear-gradient(to top, rgba(0,0,0,.72), transparent);
  color: rgba(255,255,255,.9); font-size: .68rem; font-weight: 500;
}
.booking-panel {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg); padding: 1.8rem; position: sticky; top: 5rem;
}
.booking-panel-title {
  color: var(--green-light); font-size: .72rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; margin-bottom: 1.4rem;
}
.booking-row { display: flex; align-items: flex-start; gap: .8rem; margin-bottom: .9rem; }
.booking-icon {
  width: 34px; height: 34px; background: rgba(98,176,2,.14); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: .8rem; flex-shrink: 0;
}
.booking-row-text label {
  display: block; color: rgba(255,255,255,.4); font-size: .65rem;
  font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .1rem;
}
.booking-row-text span, .booking-row-text a { color: rgba(255,255,255,.85); font-size: .84rem; }
.booking-divider { border: none; border-top: 1px solid rgba(255,255,255,.07); margin: 1.2rem 0; }
.booking-actions { display: flex; flex-direction: column; gap: .55rem; }
.booking-actions .btn { justify-content: center; width: 100%; }

@media (max-width: 900px) {
  .room-detail-grid { grid-template-columns: 1fr; }
  .booking-panel { position: static; }
  .room-photo-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .amenities-grid { grid-template-columns: 1fr; }
  .room-photo-gallery { grid-template-columns: 1fr; }
}

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }
.fade-up:nth-child(5) { transition-delay: .4s; }
.fade-up:nth-child(6) { transition-delay: .5s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .features-grid  { grid-template-columns: repeat(3, 1fr); }
  .feature-card:nth-child(n+4) { border-top: 1px solid rgba(255,255,255,.07); }
  .rooms-grid     { grid-template-columns: repeat(2, 1fr); }
  .explore-grid   { grid-template-columns: repeat(2, 1fr); }
  .contact-grid   { grid-template-columns: 1fr; }
  .rooms-nav-grid { grid-template-columns: repeat(2, 1fr); }
  .explore-page-grid { grid-template-columns: 1fr; }
  .explore-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .specials-grid  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-menu {
    position: fixed; top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--dark); flex-direction: column;
    align-items: flex-start; justify-content: flex-start;
    padding: 5rem 2rem 2rem; gap: .4rem;
    transition: right .35s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,.35);
    z-index: 998;
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { width: 100%; padding: .75rem 1rem; border-radius: var(--radius); }
  .nav-toggle  { display: flex; z-index: 999; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-stack { padding-right: 0; padding-bottom: 4rem; }
  .about-img-accent { right: 0; }
  .about-stat   { right: 0; }
  .rooms-grid   { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 1; grid-row: span 1; }
  .explore-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
  .rooms-nav-grid { grid-template-columns: 1fr; }
  .explore-cards-grid { grid-template-columns: 1fr; }
  .specials-grid { grid-template-columns: 1fr; }
  .rooms-footer  { flex-direction: column; align-items: flex-start; }
  .specials-cta-bar { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-actions  { flex-direction: column; align-items: center; }
  .gallery-grid  { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .top-bar .container { justify-content: center; text-align: center; }
}

/* ================================================================
   EXPLORE DETAIL PAGE
   ================================================================ */
.explore-detail-section { padding: 4rem 0 5rem; background: var(--dark); }
.explore-detail-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
.explore-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  aspect-ratio: 16/9;
}
.explore-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.explore-detail-main > h2 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-bottom: 1.2rem;
}
.explore-detail-main > p {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}
.explore-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.explore-info-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 1.3rem;
}
.explore-info-card h5 {
  color: var(--green-light);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .7rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.explore-info-card h5 i { width: 14px; flex-shrink: 0; }
.explore-info-card p { color: rgba(255,255,255,.65); font-size: .83rem; line-height: 1.65; }
.explore-info-card a { color: var(--green-light); transition: var(--trans); }
.explore-info-card a:hover { color: #fff; }
.explore-sidebar-nav {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 1.2rem;
}
.explore-sidebar-nav h4 { color: #fff; font-size: .82rem; font-weight: 700; margin-bottom: 1rem; }
.explore-sidebar-nav ul { display: flex; flex-direction: column; gap: .4rem; }
.explore-sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.6);
  font-size: .82rem;
  padding: .55rem .85rem;
  border-radius: var(--radius);
  transition: var(--trans);
}
.explore-sidebar-nav li a:hover { color: #fff; background: rgba(98,176,2,.12); }
.explore-sidebar-nav li a i { color: var(--green); width: 14px; font-size: .75rem; flex-shrink: 0; }
.explore-sidebar-nav li.active a { color: var(--green-light); background: rgba(98,176,2,.1); }
.explore-detail-grid > aside {
  position: sticky;
  top: 5rem;
}
.explore-detail-grid > aside .booking-panel {
  position: static;
}
@media (max-width: 900px) {
  .explore-detail-grid { grid-template-columns: 1fr; }
  .explore-detail-grid > aside { position: static; }
  .explore-info-grid { grid-template-columns: 1fr; }
}
