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

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; background: #FAF9F6; color: #2C2C2C; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Design Tokens ── */
:root {
  --green: #1E4D3A;        /* Premium deep jungle green */
  --green-light: #2D6A4F;  /* Medium active green */
  --green-dark: #113024;   /* Very dark background green */
  --gold: #C5A880;         /* Warm premium gold accent */
  --gold-dark: #A6875B;    /* Hover gold */
  --beige: #F4EFE6;        /* Soft sand/warm background */
  --cream: #FAF9F6;        /* Light clean base */
  --text: #2C2C2C;         /* Charcoal text */
  --text-muted: #5C6370;   /* Slate gray text */
  --white: #FFFFFF;
  --shadow-sm: 0 4px 12px rgba(30, 77, 58, 0.04);
  --shadow-md: 0 12px 36px rgba(30, 77, 58, 0.08);
  --shadow-lg: 0 24px 72px rgba(30, 77, 58, 0.12);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ── Typography ── */
.serif { font-family: 'Cormorant Garamond', serif; }
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; line-height: 1.2; color: var(--green-dark); }
h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); font-weight: 300; }
h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 300; }
h3 { font-size: 1.5rem; font-weight: 400; }
p { font-size: 1rem; color: var(--text-muted); line-height: 1.8; }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }
.text-center { text-align: center; }
.tag { display: inline-block; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; color: var(--green); background: rgba(30, 77, 58, 0.08); padding: 6px 14px; border-radius: 50px; margin-bottom: 18px; }
.section-title { margin-bottom: 12px; }
.section-sub { font-size: 1.1rem; color: var(--text-muted); max-width: 580px; margin: 0 auto 56px; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 50px; font-size: 0.9rem; font-weight: 600; cursor: pointer; border: none; transition: var(--transition); letter-spacing: 0.02em; }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30, 77, 58, 0.25); }
.btn-outline { background: transparent; color: var(--green); border: 1.5px solid var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; transform: translateY(-2px); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(197, 168, 128, 0.3); }
.btn-lg { padding: 18px 36px; font-size: 1rem; }

/* ── Header ── */
#header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 24px 0; transition: var(--transition); }
#header.scrolled { background: rgba(250, 249, 246, 0.96); backdrop-filter: blur(20px); padding: 16px 0; box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; color: #fff; letter-spacing: 0.04em; transition: var(--transition); }
#header.scrolled .logo { color: var(--green-dark); }
.nav { display: flex; align-items: center; gap: 36px; }
.nav a { font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.9); transition: var(--transition); }
.nav a:hover { color: #fff; }
#header.scrolled .nav a { color: var(--text-muted); }
#header.scrolled .nav a:hover { color: var(--green); }
.header-cta { display: flex; gap: 12px; align-items: center; }
.header-cta .btn { padding: 11px 22px; font-size: 0.85rem; }
.header-wa { display: flex; align-items: center; gap: 6px; background: rgba(37,211,102,0.18); color: #fff; border-radius: 50px; padding: 11px 20px; font-size: 0.85rem; font-weight: 600; transition: var(--transition); }
.header-wa:hover { background: #25D366; color: #fff; }
#header.scrolled .header-wa { background: rgba(37,211,102,0.12); color: #1da851; }
#header.scrolled .header-wa:hover { background: #25D366; color: #fff; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.menu-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }
#header.scrolled .menu-toggle span { background: var(--text); }

/* ── Hero ── */
#hero { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; padding-top: 100px; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(17,48,36,0.85) 0%, rgba(30,77,58,0.45) 100%); z-index: 1; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-content { position: relative; z-index: 2; max-width: 800px; padding-bottom: 60px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: rgba(255,255,255,0.6); }
.hero-title { color: #fff; margin-bottom: 20px; text-shadow: 0 2px 24px rgba(0,0,0,0.15); }
.hero-subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.88); max-width: 620px; line-height: 1.8; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-badge { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.22); border-radius: 50px; padding: 8px 18px; font-size: 0.82rem; color: #fff; font-weight: 500; }
.trust-badge svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── Booking Strip ── */
.booking-strip-container {
  margin-top: -60px;
  position: relative;
  z-index: 10;
  margin-bottom: 40px;
}
.booking-strip-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 24px 32px;
  border: 1px solid rgba(30, 77, 58, 0.06);
}
.booking-strip-form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
}
.booking-strip-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 140px;
  position: relative;
}
.booking-strip-group.pref-group {
  flex: 1.5;
  min-width: 180px;
}
.booking-strip-group label {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.booking-strip-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.booking-strip-input-wrap svg {
  position: absolute;
  left: 14px;
  color: var(--green);
  pointer-events: none;
  width: 16px;
  height: 16px;
}
.booking-strip-group input, .booking-strip-group select {
  width: 100%;
  padding: 12px 12px 12px 38px;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #FAFAF9;
  outline: none;
  transition: var(--transition);
  appearance: none;
}
.booking-strip-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E4D3A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 36px;
}
.booking-strip-group input:focus, .booking-strip-group select:focus {
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(30, 77, 58, 0.08);
}
.booking-strip-btn {
  padding: 13px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  height: 48px;
  background: var(--green);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(30, 77, 58, 0.15);
  min-width: 160px;
}
.booking-strip-btn:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(30, 77, 58, 0.25);
}

/* ── Review Score Section ── */
.reviews-score-bar-section {
  background: #fff;
  padding: 64px 0;
  border-bottom: 1px solid rgba(30, 77, 58, 0.05);
}
.review-score-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.review-score-title-row h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
}
.review-score-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--beige);
  padding: 6px 16px;
  border-radius: 50px;
}
.review-score-badge {
  background: var(--green);
  color: #fff;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
}
.review-score-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
}
.review-score-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.review-score-bars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px 40px;
}
.review-score-bar-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.review-score-bar-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 500;
}
.review-score-bar-name {
  color: var(--text);
}
.review-score-bar-value {
  font-weight: 600;
  color: var(--green);
}
.review-score-bar-track {
  height: 6px;
  background: #ECECE9;
  border-radius: 10px;
  overflow: hidden;
}
.review-score-bar-fill {
  height: 100%;
  background: var(--green);
  border-radius: 10px;
}

/* ── Why Book Direct ── */
#benefits { background: var(--beige); }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-bottom: 40px; }
.benefit-card { background: #fff; border-radius: var(--radius); padding: 36px 30px; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid rgba(30, 77, 58, 0.05); }
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit-icon { width: 56px; height: 56px; background: rgba(30, 77, 58, 0.06); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.benefit-icon svg { width: 26px; height: 26px; color: var(--green); }
.benefit-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; font-family: 'Inter', sans-serif; color: var(--green-dark); }
.benefit-card p { font-size: 0.88rem; margin: 0; color: var(--text-muted); }
.benefits-note { text-align: center; font-size: 1rem; color: var(--text-muted); max-width: 580px; margin: 0 auto 36px; }

/* ── Rooms ── */
#rooms { background: var(--cream); }
.rooms-section-intro { margin-bottom: 56px; }
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 32px; }
.room-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid rgba(30, 77, 58, 0.05); display: flex; flex-direction: column; }
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.room-img-wrap { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.room-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.room-card:hover .room-img-wrap img { transform: scale(1.05); }
.room-price-badge { position: absolute; top: 16px; right: 16px; background: rgba(17,48,36,0.92); backdrop-filter: blur(8px); color: #fff; padding: 8px 18px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; border: 1px solid rgba(255,255,255,0.15); }
.room-body { padding: 32px; display: flex; flex-direction: column; flex-grow: 1; }
.room-body h3 { margin-bottom: 8px; font-size: 1.6rem; }
.room-price-text { font-size: 0.9rem; color: var(--green); font-weight: 600; margin-bottom: 24px; font-family: 'Inter', sans-serif; }
.room-amenities { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; margin-bottom: 24px; }
.room-amenities li { font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.room-amenities li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 0.85rem; }
.room-pay-note { font-size: 0.78rem; color: var(--text-muted); background: var(--beige); border-radius: var(--radius-sm); padding: 12px 16px; margin-top: auto; margin-bottom: 24px; font-style: italic; text-align: left; }

/* ── Grouped Amenities ── */
#facilities { background: var(--green-dark); }
#facilities .section-title { color: #fff; }
#facilities .section-sub { color: rgba(255,255,255,0.65); }
.amenities-groups-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.amenities-group-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 28px; text-align: left; transition: var(--transition); }
.amenities-group-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-3px); }
.amenities-group-card h3 { font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 600; color: var(--gold); margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.12); padding-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.amenity-list-items { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.amenity-list-items li { font-size: 0.85rem; color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 10px; }
.amenity-item-icon { font-size: 1.1rem; width: 22px; text-align: center; }

/* ── Perfect For Section ── */
#perfect-for { background: var(--beige); }
.perfect-for-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.perfect-for-card { background: #fff; border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow-sm); border: 1px solid rgba(30, 77, 58, 0.05); text-align: center; transition: var(--transition); }
.perfect-for-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.perfect-for-icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.perfect-for-card h3 { font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--green-dark); margin-bottom: 8px; }
.perfect-for-card p { font-size: 0.85rem; margin: 0; color: var(--text-muted); }
.perfect-for-mention { margin-top: 48px; font-style: italic; font-size: 0.92rem; color: var(--text-muted); font-weight: 500; }

/* ── Reviews ── */
#reviews { background: var(--cream); }
.rating-summary { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-bottom: 56px; }
.rating-pill { display: flex; align-items: center; gap: 14px; background: #fff; border-radius: 50px; padding: 16px 28px; box-shadow: var(--shadow-sm); border: 1px solid rgba(30, 77, 58, 0.05); }
.rating-score { font-size: 2rem; font-weight: 700; color: var(--green); font-family: 'Cormorant Garamond', serif; }
.rating-info small { display: block; font-size: 0.75rem; color: var(--text-muted); }
.rating-info strong { font-size: 0.88rem; color: var(--green-dark); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.review-card { background: #fff; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); border: 1px solid rgba(30, 77, 58, 0.04); position: relative; transition: var(--transition); text-align: left; }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-stars { color: #F59E0B; font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: 0.92rem; line-height: 1.8; color: var(--text); margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--green), var(--gold)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 600; font-size: 0.9rem; flex-shrink: 0; }
.review-name { font-weight: 600; font-size: 0.88rem; color: var(--green-dark); }
.review-source { font-size: 0.75rem; color: var(--text-muted); }

/* ── Gallery ── */
#gallery { background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item:first-child { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.07); }

/* ── Location ── */
#location { background: var(--beige); }
.location-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.location-points { list-style: none; margin: 28px 0 36px; display: flex; flex-direction: column; gap: 14px; }
.location-points li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.92rem; color: var(--text-muted); }
.location-points li::before { content: '📍'; font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.location-cards-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
.location-card-mini { background: #fff; padding: 16px; border-radius: var(--radius-sm); border: 1px solid rgba(30, 77, 58, 0.05); }
.location-card-mini h4 { font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 600; color: var(--green-dark); margin-bottom: 4px; }
.location-card-mini p { font-size: 0.78rem; color: var(--text-muted); margin: 0; line-height: 1.4; }
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid rgba(30, 77, 58, 0.06); }
.map-placeholder { height: 420px; background: linear-gradient(135deg, #d4edda, #a8d5ba); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.map-placeholder iframe { width: 100%; height: 100%; border: none; }

/* ── Final CTA ── */
#final-cta { background: var(--green-dark); color: #fff; text-align: center; }
#final-cta h2 { color: #fff; margin-bottom: 12px; }
#final-cta p { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto 36px; font-size: 1.1rem; }

/* ── Footer ── */
#footer { background: #121815; padding: 80px 0 40px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 600; color: #fff; margin-bottom: 12px; }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.5); margin-bottom: 24px; }
.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-contact li { font-size: 0.88rem; color: rgba(255,255,255,0.6); display: flex; align-items: flex-start; gap: 8px; }
.footer-heading { font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; font-weight: 600; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links li a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 32px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin: 0; }

/* ── Mobile Sticky Bottom Bar & Floating Elements ── */
.mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: #fff; border-top: 1px solid #E5E7EB; padding: 12px 16px; gap: 12px; box-shadow: 0 -5px 25px rgba(0,0,0,0.08); }
.mobile-cta-bar .btn { flex: 1; justify-content: center; font-size: 0.85rem; padding: 14px; border-radius: 10px; height: auto; }

.floating-whatsapp {
  position: fixed;
  bottom: 84px;
  right: 24px;
  z-index: 998;
  width: 52px;
  height: 52px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  outline: none;
}
.floating-whatsapp svg { width: 24px; height: 24px; }
.floating-whatsapp:hover {
  background: #1da851;
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

@media (min-width: 901px) {
  .floating-whatsapp {
    bottom: 24px;
  }
}

/* ── Animations ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive Rules ── */
@media (max-width: 900px) {
  .nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(17,48,36,0.98); flex-direction: column; align-items: center; justify-content: center; gap: 32px; z-index: 999; }
  .nav.open { display: flex; }
  .nav a { font-size: 1.5rem; color: #fff; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; z-index: 1000; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 80px; }
  .booking-strip-container { margin-top: -30px; }
  .booking-strip-card { padding: 20px; }
  .booking-strip-form { flex-direction: column; align-items: stretch; }
  .booking-strip-group { width: 100%; }
  .booking-strip-btn { width: 100%; margin-top: 8px; }
}

@media (max-width: 768px) {
  .location-layout { grid-template-columns: 1fr; gap: 36px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .booking-strip-container { margin-top: 20px; padding: 0; }
}

@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: 1; }
  .hero-actions .btn-lg { width: 100%; justify-content: center; }
  .trust-badges { gap: 8px; justify-content: center; }
  .trust-badge { font-size: 0.75rem; padding: 6px 14px; }
  /* Hide redundant trust badges to save mobile space */
  .trust-badges .trust-badge:nth-child(n+3) { display: none; }
  .location-cards-mini { grid-template-columns: 1fr; }
  
  /* Compact mobile hero content spacing */
  #hero { min-height: 80vh; padding-top: 80px; }
  .hero-title { font-size: 2.2rem !important; line-height: 1.3; }
  .hero-subtitle { font-size: 0.95rem !important; margin-bottom: 24px; line-height: 1.6; }
  .hero-actions { margin-bottom: 28px; }
}

/* ── Hero Entry Animations (Triggered after 2s Preloader) ── */
#hero .hero-eyebrow {
  opacity: 0;
  transform: translateY(15px);
  animation: heroFadeIn 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 2.2s forwards;
}
#hero .hero-title {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 2.4s forwards;
}
#hero .hero-subtitle {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 2.6s forwards;
}
#hero .hero-actions {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 2.8s forwards;
}
#hero .trust-badges {
  opacity: 0;
  transform: translateY(15px);
  animation: heroFadeIn 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 3s forwards;
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
