/* ============================================================
   THUMBE GOODU RESORT — Main Stylesheet
   Author: EchoPx Technologies, Bangalore
   Version: 2.0
   ============================================================ */

/* ── RESET & ROOT ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue:   #0099d8;
  --dblue:  #005f8a;
  --white:  #fff;
  --dark:   #111827;
  --gray:   #5a6475;
  --light:  #f4f8fb;
  --brown:  #6b4423;
  --gold:   #ffd700;
  --green:  #25d366;

  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   14px;
  --radius-full: 9999px;

  --shadow-sm:  0 2px 10px rgba(0,153,216,.07);
  --shadow-md:  0 8px 28px rgba(0,153,216,.12);
  --shadow-lg:  0 24px 50px rgba(0,153,216,.18);
  --shadow-card:0 4px 18px rgba(0,0,0,.06);

  --transition: all .25s ease;

  --fs-xs:  10px;
  --fs-sm:  11px;
  --fs-base:13px;
  --fs-md:  15px;
  --fs-lg:  20px;
  --fs-xl:  26px;
  --fs-2xl: 34px;
  --fs-3xl: 44px;
  --fs-4xl: 52px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--gray);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a { text-decoration: none; }

/* ── UTILITIES ── */
.sec-label {
  font-size: var(--fs-sm);
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 9px;
  display: block;
}

.sec-h {
  font-size: var(--fs-2xl);
  color: var(--dark);
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 8px;
}
.sec-h span { color: var(--blue); }

.sec-bar {
  width: 46px;
  height: 3px;
  background: var(--blue);
  margin: 0 auto 16px;
  border-radius: 2px;
}
.sec-bar.left { margin: 10px 0 18px; }

.sec-p {
  max-width: 640px;
  margin: 0 auto;
  font-size: var(--fs-base);
  line-height: 1.85;
  color: var(--gray);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  padding: 11px 26px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  display: inline-block;
}
.btn-blue:hover {
  background: var(--dblue);
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(0,153,216,.3);
}

/* REVEAL ANIMATION */
.rv {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.rv.in {
  opacity: 1;
  transform: none;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  padding: 13px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 1px 16px rgba(0,0,0,.07);
  transition: box-shadow .3s;
}

.logo {
  font-size: 19px;
  font-weight: 800;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 8px;
}

.logo-box {
  width: 33px;
  height: 33px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 22px;
  margin-left: 28px;
  flex: 1;
}

nav a {
  color: var(--gray);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: color .25s;
}
nav a:hover { color: var(--blue); }

.nav-r {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nbtn {
  background: var(--blue);
  color: var(--white);
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}
.nbtn:hover {
  background: var(--dblue);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,153,216,.3);
}

.wa-nav {
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: transform .25s;
}
.wa-nav:hover { transform: scale(1.1); }

/* ── HERO ── */
.hero {
  margin-top: 66px;
  height: 88vh;
  min-height: 540px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Very minimal shade — images stay fully visible */
  background: linear-gradient(
    90deg,
    rgba(0,15,30,.55) 0%,
    rgba(0,15,30,.25) 50%,
    rgba(0,15,30,.08) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,204,0,.15);
  border: 1.5px solid rgba(255,204,0,.55);
  border-radius: 4px;
  padding: 7px 15px;
  margin-bottom: 20px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  font-size: var(--fs-4xl);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}
.hero h1 em {
  display: block;
  font-style: normal;
  color: #7dd3fc;
  font-size: 43px;
}

.hero-sub {
  font-size: var(--fs-md);
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-chips {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.chip {
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}

.hero-btns { display: flex; gap: 12px; }

.hbtn {
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-family: 'Poppins', sans-serif;
  border: none;
}
.hbtn-solid { background: var(--white); color: var(--blue); }
.hbtn-solid:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,255,255,.25); }
.hbtn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.6); }
.hbtn-outline:hover { background: rgba(255,255,255,.1); }

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.1);
}
.hstat {
  padding: 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.hstat:last-child { border-right: none; }
.hstat-n { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 2px; }
.hstat-l { font-size: 9.5px; color: rgba(255,255,255,.6); font-weight: 500; text-transform: uppercase; letter-spacing: .5px; }

/* ── BOOKING FORM STRIP ── */
.book-strip {
  padding: 60px 48px;
  background: var(--white);
  border-bottom: 1px solid #e8f4fb;
}

.book-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
  align-items: start;
}

.book-left { color: var(--dark); }
.book-left .sec-label { color: var(--blue); }
.book-left h2 { font-size: 30px; font-weight: 800; color: var(--dark); letter-spacing: -.4px; margin-bottom: 10px; }
.book-left > p { font-size: var(--base); color: var(--gray); line-height: 1.75; margin-bottom: 20px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 16px;
}
.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.contact-text h4 {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 3px;
}
.contact-text p,
.contact-text a { font-size: 12.5px; color: var(--gray); text-decoration: none; }
.contact-text a:hover { color: var(--white); }

.timings-box {
  background: var(--light);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-top: 18px;
  border: 1px solid #d0e8f5;
}
.timings-box h4 {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 10px;
}
.timing-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 12px;
  color: var(--gray);
}
.timing-row:last-child { border-bottom: none; }
.timing-row span:last-child { font-weight: 600; color: var(--dark); }

/* FORM */
.booking-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,153,216,.12);
  border: 1.5px solid #d0e8f5;
}
.booking-form h3 { font-size: 18px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.form-sub { font-size: 11.5px; color: var(--gray); margin-bottom: 22px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.form-group { display: flex; flex-direction: column; margin-bottom: 12px; }
.form-group label {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 13px;
  border: 1.5px solid #e2e8f0;
  border-radius: 7px;
  font-size: 12.5px;
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  outline: none;
  transition: border-color .25s, box-shadow .25s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,153,216,.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235a6475' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 34px;
}
.req { color: var(--blue); }

.form-note {
  font-size: 10.5px;
  color: var(--gray);
  background: var(--light);
  padding: 9px 13px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--blue);
  margin-bottom: 16px;
}
.submit-btn {
  width: 100%;
  background: var(--blue);
  color: var(--white);
  padding: 13px;
  border-radius: 8px;
  border: none;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: .8px;
  font-family: 'Poppins', sans-serif;
}
.submit-btn:hover {
  background: var(--dblue);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,153,216,.35);
}
.wa-form-alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 13px;
  background: #f0fbf4;
  border: 1.5px solid var(--green);
  border-radius: 8px;
  padding: 10px;
  text-decoration: none;
  color: #1a7a3a;
  font-size: 11.5px;
  font-weight: 600;
  transition: var(--transition);
}
.wa-form-alt:hover { background: var(--green); color: var(--white); }

.form-success {
  display: none;
  text-align: center;
  padding: 28px;
}
.form-success .tick { font-size: 44px; margin-bottom: 10px; }
.form-success h4 { font-size: 17px; font-weight: 800; color: var(--dark); margin-bottom: 7px; }
.form-success p { font-size: 12.5px; color: var(--gray); line-height: 1.6; }

/* ── WELCOME ── */
.welcome {
  padding: 64px 48px 50px;
  background: var(--white);
  text-align: center;
}

/* ── ABOUT ── */
.about {
  padding: 78px 48px;
  background: linear-gradient(160deg, var(--white) 0%, #eef6fb 100%);
}
.about-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text p { font-size: var(--fs-base); line-height: 1.85; margin-bottom: 14px; }

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin: 22px 0 26px;
}
.highlight-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 15px;
  background: var(--white);
  border-radius: 8px;
  border-left: 4px solid var(--blue);
  box-shadow: var(--shadow-sm);
}
.highlight-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.highlight-info h3 {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.highlight-info p { font-size: 11px; line-height: 1.5; color: var(--gray); }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}
.about-stat {
  text-align: center;
  padding: 16px 10px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.about-stat-n { font-size: 26px; font-weight: 800; color: var(--blue); margin-bottom: 3px; }
.about-stat-l { font-size: 9.5px; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: .4px; }

.about-img-wrap { position: relative; }
.about-img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--white);
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 5px 18px rgba(0,0,0,.1);
  text-align: center;
}
.about-badge-n { font-size: 19px; font-weight: 800; color: var(--blue); }
.about-badge-t { font-size: 9px; color: var(--gray); font-weight: 600; text-transform: uppercase; }

/* ── EXPERIENCE ── */
.experience {
  padding: 78px 48px;
  background: #f0f8fc;
}
.experience-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.experience-img {
  width: 100%;
  height: 345px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0,153,216,.16);
}
.experience-content h2 { font-size: var(--fs-2xl); color: var(--dark); font-weight: 800; line-height: 1.2; letter-spacing: -.4px; margin-bottom: 13px; }
.experience-content h2 span { color: var(--blue); }
.experience-content p { font-size: var(--fs-base); line-height: 1.85; margin-bottom: 13px; }

/* ── ACTIVITIES ── */
.activities {
  padding: 78px 48px;
  background: var(--white);
}
.activities-inner { max-width: 1140px; margin: 0 auto; }
.activities-header { text-align: center; margin-bottom: 46px; }

.act-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.act-card:hover { transform: translateY(-5px); box-shadow: 0 16px 36px rgba(0,0,0,.16); }
.act-card img { width: 100%; object-fit: cover; transition: transform .4s; display: block; }
.act-card:hover img { transform: scale(1.05); }
.act-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,.65));
}
.act-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 18px; color: var(--white); }
.act-tag { font-size: 9.5px; opacity: .85; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 3px; color: #7dd3fc; }
.act-name { font-size: 15px; font-weight: 700; }
.act-desc { font-size: 11px; opacity: .82; margin-top: 3px; line-height: 1.4; }

.rain-row { display: grid; grid-template-columns: 1.3fr 1fr; gap: 18px; margin-bottom: 18px; }
.rain-row .act-card img { height: 300px; }

.act-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 18px; }
.act-grid-3 .act-card img { height: 220px; }

.act-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.act-grid-2 .act-card img { height: 230px; }

/* ── AWARDS ── */
.awards {
  padding: 78px 48px;
  background: linear-gradient(160deg, var(--white) 0%, #f8fbfe 100%);
}
.awards-inner { max-width: 1140px; margin: 0 auto; }
.awards-header { text-align: center; margin-bottom: 50px; }

.award-main {
  background: var(--white);
  border-radius: 16px;
  padding: 46px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-md);
  margin-bottom: 54px;
  border: 1.5px solid rgba(0,153,216,.1);
}
.award-images { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.award-images img { width: 100%; height: 185px; object-fit: cover; border-radius: 9px; box-shadow: 0 4px 13px rgba(0,0,0,.12); }
.award-images .award-img-big { grid-column: 1 / -1; height: 215px; }

.award-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #7a5900;
  padding: 6px 15px;
  border-radius: 4px;
  font-size: 10.5px;
  font-weight: 700;
  margin-bottom: 13px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.award-title { font-size: 25px; color: var(--dark); font-weight: 800; letter-spacing: -.3px; margin-bottom: 5px; }
.award-subtitle { font-size: var(--fs-base); color: var(--blue); font-weight: 600; margin-bottom: 13px; }
.award-desc { font-size: var(--fs-base); line-height: 1.85; margin-bottom: 20px; color: var(--gray); }

.award-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.award-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: var(--light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--blue);
}
.award-check-item .check { color: var(--blue); font-weight: 700; font-size: 13px; }
.award-check-item span:last-child { font-size: 11.5px; color: var(--gray); font-weight: 500; }

.award-ceremony-header { text-align: center; margin-bottom: 28px; }
.award-ceremony-header h3 { font-size: 22px; color: var(--dark); font-weight: 800; margin-bottom: 5px; }
.award-ceremony-header p { font-size: 12.5px; color: var(--gray); }

.award-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.award-gallery-card {
  position: relative;
  height: 215px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.award-gallery-card:hover { transform: translateY(-6px); box-shadow: 0 14px 28px rgba(0,0,0,.18); }
.award-gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.award-gallery-card:hover img { transform: scale(1.05); }
.award-gallery-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  color: var(--white);
  padding: 20px 11px 10px;
  font-size: 10.5px;
  font-weight: 600;
  text-align: center;
}

/* ── WAVE SEPARATOR ── */
.wave-sep {
  height: 65px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* ── ROOMS ── */
.rooms {
  background: linear-gradient(135deg, var(--blue), var(--dblue));
  padding: 78px 48px;
  text-align: center;
  color: var(--white);
}
.rooms-label { font-size: var(--fs-sm); color: rgba(255,255,255,.7); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 9px; }
.rooms h2 { font-size: 34px; font-weight: 800; letter-spacing: -.4px; margin-bottom: 6px; }
.rooms-bar { width: 46px; height: 3px; background: rgba(255,255,255,.5); margin: 12px auto 42px; border-radius: 2px; }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.room-card {
  position: relative;
  height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.room-card:hover { transform: translateY(-7px); box-shadow: 0 20px 44px rgba(0,0,0,.25); }
.room-card img { width: 100%; height: 100%; object-fit: cover; }
.room-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,.65));
}
.room-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 18px; }
.room-tag { font-size: 9.5px; opacity: .85; margin-bottom: 3px; letter-spacing: .5px; text-transform: uppercase; font-weight: 500; }
.room-name { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .3px; line-height: 1.3; }

/* ── WHY CHOOSE ── */
.why-choose {
  padding: 78px 48px;
  background: var(--light);
  text-align: center;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1040px;
  margin: 42px auto 0;
}
.why-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.why-item:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.why-item img { width: 100%; height: 178px; object-fit: cover; }
.why-body { padding: 17px 17px 19px; }
.why-title { font-size: 12.5px; font-weight: 700; color: var(--dark); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .4px; }
.why-desc { font-size: 11.5px; line-height: 1.65; color: var(--gray); }

/* ── GALLERY ── */
.gallery {
  padding: 78px 48px;
  background: var(--white);
  text-align: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1140px;
  margin: 36px auto 34px;
}
.gallery-item {
  position: relative;
  height: 200px;
  border-radius: 9px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.03); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  color: var(--white);
  padding: 22px 10px 9px;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ── LAKE BANNER ── */
.lake-banner { padding: 0 48px 60px; background: var(--light); }
.lake-inner {
  position: relative;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.lake-inner img { width: 100%; height: 100%; object-fit: cover; }
.lake-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,30,55,.65) 0%, rgba(0,30,55,.2) 60%, transparent 100%);
}
.lake-text {
  position: absolute;
  top: 50%;
  left: 56px;
  transform: translateY(-50%);
  color: var(--white);
  z-index: 2;
}
.lake-text h3 { font-size: 30px; font-weight: 800; margin-bottom: 10px; letter-spacing: -.3px; }
.lake-text h3 span { color: var(--gold); }
.lake-text p { font-size: var(--fs-base); color: rgba(255,255,255,.85); max-width: 400px; line-height: 1.7; margin-bottom: 20px; }

/* ── STATS ── */
.stats-section { padding: 58px 48px; background: var(--light); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 940px;
  margin: 0 auto;
}
.stat-box {
  background: var(--white);
  padding: 24px 16px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-card);
}
.stat-number { font-size: 32px; font-weight: 800; color: var(--blue); margin-bottom: 5px; }
.stat-label { font-size: 9.5px; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }

/* ── ATTRACTIONS ── */
.attractions {
  padding: 78px 48px;
  background: var(--white);
  text-align: center;
}
.attractions-card {
  max-width: 450px;
  margin: 36px auto 0;
  background: var(--light);
  padding: 34px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.attractions-img {
  width: 175px;
  height: 175px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  display: block;
  box-shadow: 0 8px 22px rgba(0,153,216,.2);
}
.attractions-title { font-size: 13.5px; color: var(--dark); font-weight: 700; text-transform: uppercase; margin-bottom: 7px; }
.attractions-desc { font-size: 12px; line-height: 1.65; margin-bottom: 16px; }

/* ── FOOTER CTA ── */
.footer-cta {
  padding: 60px 48px;
  background: linear-gradient(135deg, #0078a8, var(--dblue));
  text-align: center;
  color: var(--white);
}
.footer-cta h2 { font-size: 28px; font-weight: 800; margin-bottom: 10px; letter-spacing: -.3px; }
.footer-cta p { font-size: var(--fs-base); max-width: 520px; margin: 0 auto 24px; line-height: 1.8; color: rgba(255,255,255,.82); }
.footer-cta-btns { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; }
.fcta-btn {
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-family: 'Poppins', sans-serif;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.fcta-btn-white { background: var(--white); color: var(--blue); }
.fcta-btn-white:hover { transform: translateY(-2px); }
.fcta-btn-ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.fcta-btn-ghost:hover { background: rgba(255,255,255,.1); }

/* ── FOOTER ── */
footer {
  background: #0f1923;
  color: #9ca3af;
  padding: 0;
}

.footer-top {
  background: #0a1118;
  padding: 36px 48px 28px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-logo { height: 48px; width: auto; }
.footer-tagline {
  font-size: 13px;
  color: #c9a227;
  font-style: italic;
  letter-spacing: .5px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px 48px 36px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.1fr 1.2fr;
  gap: 40px;
}

.footer-col-icon {
  font-size: 22px;
  margin-bottom: 10px;
}
.footer-col h3 {
  color: var(--white);
  font-size: 12px;
  margin-bottom: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col p {
  font-size: 12.5px;
  line-height: 1.9;
  color: #9ca3af;
}

.footer-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  background: var(--blue);
  color: var(--white);
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.footer-map-btn:hover { background: var(--dblue); }
.footer-map-btn svg { flex-shrink: 0; }

.footer-link-row {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: #9ca3af;
  text-decoration: none;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .25s;
}
.footer-link-row:hover { color: var(--white); }
.footer-link-row svg { flex-shrink: 0; color: var(--blue); }
.footer-wa-row { color: #4ade80; }
.footer-wa-row:hover { color: #86efac; }

.footer-timing {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 12px;
  color: #9ca3af;
}
.footer-timing span:last-child { color: var(--white); font-weight: 500; }
.footer-pricing span:first-child { color: #fbbf24; }
.footer-pricing span:last-child { color: #4ade80; font-weight: 700; }

.footer-map-col {}
.footer-map-thumb {
  display: block;
  text-decoration: none;
}
.footer-map-placeholder {
  background: linear-gradient(135deg, #1a2d3a, #0f2030);
  border: 1.5px solid rgba(0,153,216,.2);
  border-radius: 10px;
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.footer-map-thumb:hover .footer-map-placeholder {
  border-color: var(--blue);
  background: linear-gradient(135deg, #1e3548, #0f2435);
}
.footer-map-placeholder span {
  display: block;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  margin: 10px 0 6px;
}
.footer-map-placeholder small {
  display: block;
  color: var(--blue);
  font-size: 10.5px;
}

.footer-nav {
  padding: 18px 48px;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.footer-nav a {
  color: #6b7280;
  text-decoration: none;
  padding: 4px 12px;
  transition: color .25s;
}
.footer-nav a:hover { color: var(--white); }
.footer-nav span { color: rgba(255,255,255,.15); }

.footer-bottom {
  font-size: 11px;
  padding: 16px 48px;
  text-align: center;
  color: #4b5563;
}
.footer-bottom a {
  color: var(--blue);
  text-decoration: none;
}
.footer-bottom a:hover { color: #7dd3fc; }

/* ── STICKY WHATSAPP ── */
.sticky-wa {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 50px;
  height: 50px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,.45);
  animation: wa-pulse 2.4s infinite;
}
.sticky-wa:hover { transform: scale(1.1); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 4px 28px rgba(37,211,102,.7); }
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.94);
  z-index: 4000;
  align-items: center;
  justify-content: center;
}
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: 8px; }
.lightbox-close {
  position: absolute;
  top: 14px;
  right: 20px;
  color: var(--white);
  font-size: 34px;
  cursor: pointer;
  line-height: 1;
}

/* ── RESPONSIVE ── */
/* Mobile contact bar — hidden on desktop, shown on mobile via media query */
.mobile-contact-bar { display: none; }

/* ── TABLET ── */
@media (max-width: 1024px) {
  .hero { padding: 0 32px; }
  .about-inner,
  .experience-inner,
  .award-main,
  .rooms-grid,
  .why-grid,
  .stats-grid,
  .footer-grid,
  .book-inner { grid-template-columns: 1fr; }
  .award-gallery,
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .act-grid-3 { grid-template-columns: 1fr 1fr; }
  .rain-row, .act-grid-2 { grid-template-columns: 1fr; }
  .highlights-grid, .about-stats, .award-checklist { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .lake-banner { padding: 0 32px 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; padding: 36px 32px; }
  .footer-top { padding: 28px 32px; }
  .footer-nav, .footer-bottom { padding-left: 32px; padding-right: 32px; }
}

/* ── MOBILE ── */
@media (max-width: 768px) {

  /* NAV */
  nav { padding: 10px 18px; flex-wrap: wrap; }
  nav ul { display: none; flex-direction: column; gap: 7px; width: 100%; margin-left: 0; }
  nav ul.open { display: flex; }
  .hamburger { display: flex !important; }

  /* ══════════════════════════════════════════
     FIX 1: HERO — full image first, text below
  ══════════════════════════════════════════ */
  .hero {
    height: auto;
    min-height: auto;
    flex-direction: column;
    padding: 0;
    align-items: stretch;
  }

  /* Image takes full width at top, no overlay darkening it */
  .hero-bg {
    position: relative;
    width: 100%;
    height: 260px;
    flex-shrink: 0;
  }
  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  /* Overlay only on bottom portion where text sits */
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      transparent 0%,
      transparent 40%,
      rgba(0,15,30,.7) 100%
    );
  }

  /* Hero content sits BELOW the image in normal flow */
  .hero-content {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #0099d8, #005f8a);
    padding: 28px 20px 24px;
    max-width: 100%;
  }

  .hero-badge {
    font-size: 9.5px;
    padding: 6px 12px;
    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: 28px;
    letter-spacing: -.5px;
    margin-bottom: 10px;
  }
  .hero h1 em { font-size: 26px; }

  .hero-sub {
    font-size: 13.5px;
    margin-bottom: 18px;
    max-width: 100%;
  }

  .hero-chips { display: none; }

  .hero-btns { gap: 10px; }
  .hbtn { padding: 11px 20px; font-size: 11.5px; }
  .hbtn-outline { border-color: rgba(255,255,255,.7); }

  /* Stats strip sits below hero content */
  .hero-stats {
    position: relative;
    grid-template-columns: repeat(2, 1fr);
    background: rgba(0,0,0,.85);
  }
  .hstat { padding: 14px 10px; }
  .hstat-n { font-size: 19px; }

  /* ══════════════════════════════════════════
     FIX 2: BOOKING FORM — hide contact left side on mobile
  ══════════════════════════════════════════ */
  .book-strip { padding: 36px 20px; }
  .book-inner { grid-template-columns: 1fr; gap: 0; }

  /* Hide the entire left contact info column on mobile */
  .book-left { display: none; }

  /* Form gets full width + compact heading */
  .booking-form h3 { font-size: 20px; }
  .booking-form { padding: 24px 18px; border-radius: 12px; }
  .form-row { grid-template-columns: 1fr; }

  /* Show a compact contact bar above the form instead */
  .mobile-contact-bar {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    background: #f4f8fb;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 20px;
    border: 1.5px solid #d0e8f5;
    gap: 12px;
  }
  .mobile-contact-bar a {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    flex: 1;
  }
  .mobile-contact-bar a:last-child { color: #1a7a3a; }
  .mobile-contact-bar span { color: #d0e8f5; font-size: 18px; }

  /* ══════════════════════════════════════════
     FIX 3: ROOMS — fix tent image crop on mobile
  ══════════════════════════════════════════ */
  .rooms-grid { grid-template-columns: 1fr; gap: 16px; }

  /* All room cards: taller, object-position shows content correctly */
  .room-card { height: 220px; border-radius: 10px; }
  .room-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%; /* show upper portion of portrait images */
  }

  /* Tent stay specifically — orange tent is in center/upper */
  .room-card:nth-child(3) img { object-position: center 20%; }

  /* ══════════════════════════════════════════
     FIX 4: STATS — 2 boxes per row
  ══════════════════════════════════════════ */
  .stats-section { padding: 40px 20px; }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px;
    max-width: 100%;
  }
  .stat-box { padding: 22px 12px; border-radius: 10px; }
  .stat-number { font-size: 28px; }
  .stat-label { font-size: 9px; }

  /* Other sections */
  .welcome, .about, .experience, .activities, .awards,
  .why-choose, .gallery, .attractions, .footer-cta { padding: 48px 20px; }
  .rooms { padding: 48px 20px; }
  .lake-banner { padding: 0 20px 48px; }
  .lake-inner { height: 260px; border-radius: 10px; }
  .lake-text { left: 20px; top: 50%; transform: translateY(-50%); }
  .lake-text h3 { font-size: 20px; }
  .lake-text p { font-size: 12px; display: none; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-item { height: 160px; }
  .award-gallery { grid-template-columns: repeat(2, 1fr); }
  .agc, .award-gallery-card { height: 160px; }
  .act-grid-3 { grid-template-columns: 1fr; }
  .sec-h { font-size: 26px; }

  .footer-grid { grid-template-columns: 1fr; padding: 28px 20px; gap: 28px; }
  .footer-top { padding: 20px; }
  .footer-nav { padding: 14px 20px; font-size: 10px; }
  .footer-bottom { padding: 14px 20px; }
}

/* ── SMALL MOBILE ── */
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-item { height: 140px; }
  .award-gallery { grid-template-columns: 1fr; }
  .hero h1 { font-size: 24px; }
  .hero h1 em { font-size: 22px; }
  .hbtn { padding: 10px 16px; font-size: 11px; }
}


/* ── REAL WHATSAPP ICON ── */
.wa-nav,
.sticky-wa {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGNpcmNsZSBjeD0iMjQiIGN5PSIyNCIgcj0iMjQiIGZpbGw9IiMyNUQzNjYiLz48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMzYuNSAxMS41QzMzLjIgOC4yIDI4LjggNi4zIDI0IDYuM2MtOS42IDAtMTcuNCA3LjgtMTcuNCAxNy40IDAgMy4xLjggNiAyLjMgOC42TDYuMyA0MS43bDkuNi0yLjVjMi41IDEuNCA1LjMgMi4xIDguMSAyLjEgOS42IDAgMTcuNC03LjggMTcuNC0xNy40IDAtNC43LTEuOC05LTUuMS0xMi40ek0yNCAzOC42Yy0yLjYgMC01LjItLjctNy40LTIuMWwtLjUtLjMtNS43IDEuNSAxLjUtNS41LS4zLS42Yy0xLjUtMi4zLTIuMy01LTIuMy03LjggMC04IDYuNS0xNC42IDE0LjYtMTQuNiAzLjkgMCA3LjYgMS41IDEwLjMgNC4zIDIuOCAyLjggNC4zIDYuNCA0LjMgMTAuMy4xIDgtNi41IDE0LjgtMTQuNSAxNC44em04LTExYy0uNC0uMi0yLjUtMS4yLTIuOS0xLjQtLjQtLjEtLjctLjItMSAuMi0uMy40LTEuMSAxLjQtMS40IDEuNi0uMy4zLS41LjMtLjkuMXMtMS44LS43LTMuNS0yLjFjLTEuMy0xLjEtMi4yLTIuNS0yLjQtMi45LS4zLS40IDAtLjYuMi0uOC4yLS4yLjQtLjUuNi0uNy4yLS4yLjMtLjQuNC0uNy4xLS4zLjEtLjUgMC0uNy0uMS0uMi0xLTIuNC0xLjQtMy4zLS40LS45LS43LS44LTEtLjhoLS44Yy0uMyAwLS43LjEtMS4xLjUtLjQuNC0xLjQgMS40LTEuNCAzLjRzMS41IDMuOSAxLjcgNC4yYy4yLjMgMi45IDQuNSA3LjEgNi4zIDEgLjQgMS44LjcgMi40LjkgMSAuMyAxLjkuMyAyLjYuMi44LS4xIDIuNS0xIDIuOC0ycy4zLTEuOC4yLTJjLS4xLS4xLS40LS4yLS44LS40eiIvPjwvc3ZnPg==");
  background-size: 100% 100%;
  background-color: transparent;
  font-size: 0;          /* hide emoji fallback */
}
.wa-nav { width: 38px; height: 38px; background-color: transparent; }
.sticky-wa { width: 54px; height: 54px; background-color: transparent; }


/* ═══════════════════════════════════════════════
   INFLUENCER / YOUTUBE REVIEWS SECTION
   ═══════════════════════════════════════════════ */
.influencer-sec {
  background: #070f1a;
  padding: 80px 48px;
  text-align: center;
}
.influencer-wrap { max-width: 1100px; margin: 0 auto; }

.influencer-header { margin-bottom: 48px; }
.influencer-header .sec-label { color: #e00 !important; }
.influencer-header .sec-h { color: #fff; }
.influencer-header .sec-h span { color: #7dd3fc; }
.influencer-header .sec-bar { background: #e00; margin: 0 auto 20px; }
.influencer-header .sec-p { color: rgba(255,255,255,.6); max-width: 560px; margin: 0 auto; }

.yt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  text-align: left;
}

.yt-card {
  background: #0c1825;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
}
.yt-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(0,0,0,.55);
  border-color: rgba(125,211,252,.2);
}

/* Responsive 16:9 iframe */
.yt-iframe-box {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}
.yt-iframe-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.yt-body {
  padding: 22px 24px 26px;
}

.yt-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(220,0,0,.14);
  border: 1px solid rgba(220,0,0,.3);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: #ff5a5a;
  margin-bottom: 12px;
}

.yt-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 9px;
  line-height: 1.35;
}

.yt-body p {
  font-size: 13.5px;
  color: rgba(255,255,255,.58);
  line-height: 1.72;
  margin-bottom: 18px;
}

.yt-watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e00;
  color: #fff;
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .3px;
  transition: background .2s, transform .2s;
}
.yt-watch-btn:hover { background: #b30000; transform: translateY(-1px); }

/* Responsive */
@media (max-width: 900px) {
  .yt-grid { grid-template-columns: 1fr; }
  .influencer-sec { padding: 60px 32px; }
}
@media (max-width: 600px) {
  .influencer-sec { padding: 52px 20px; }
  .yt-body h3 { font-size: 16px; }
}
