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

:root {
  --pink:        #e8739a;
  --pink-dark:   #c4527a;
  --pink-pale:   #fce8f0;
  --green-dark:  #0f0f0f;
  --green-mid:   #222222;
  --green-light: #444444;
  --green-pale:  #e8e8e8;
  --amber:       #e9a84c;
  --cream:       #faf8f5;
  --white:       #ffffff;
  --text-dark:   #1a2420;
  --text-mid:    #3a4a40;
  --text-light:  #7a8a80;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.18);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --transition:  0.3s ease;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text-dark); background: var(--white); overflow-x: hidden; }

img { width: 100%; height: 100%; object-fit: cover; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

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

/* ========== TYPOGRAPHY ========== */
.section-tag {
  display: inline-block;
  background: var(--pink-pale);
  color: var(--pink-dark);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.tag-light { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.92); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header.light .section-title,
.section-header.light .section-desc { color: var(--white); }
.section-desc { font-size: 1rem; color: var(--text-light); max-width: 540px; margin: 0 auto; line-height: 1.7; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 30px; border-radius: 100px;
  font-size: 0.92rem; font-weight: 600; cursor: pointer;
  transition: all var(--transition); border: 2px solid transparent;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--pink); color: var(--white);
  box-shadow: 0 4px 18px rgba(232,115,154,0.35);
}
.btn-primary:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,115,154,0.45); }
.btn-outline  { border-color: rgba(255,255,255,0.7); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-white    { background: var(--white); color: var(--green-dark); }
.btn-white:hover { background: var(--cream); }
.btn-sm   { padding: 8px 20px; font-size: 0.82rem; }
.btn-full { width: 100%; padding: 15px; font-size: 1rem; }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm); padding: 10px 0;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.95);
  border-radius: 10px;
  padding: 5px 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: box-shadow var(--transition);
}
.navbar.scrolled .nav-logo { box-shadow: none; background: transparent; padding: 0; }
.nav-logo-img { height: 50px; width: auto; object-fit: contain; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.92); transition: color var(--transition); }
.navbar.scrolled .nav-links a { color: var(--text-dark); }
.nav-links a:hover { color: var(--pink); }
.navbar.scrolled .nav-links a:hover { color: var(--pink); }

.nav-book-btn {
  background: var(--pink) !important; color: var(--white) !important;
  padding: 9px 22px; border-radius: 100px;
}
.nav-book-btn:hover { background: var(--pink-dark) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.navbar.scrolled .hamburger span { background: var(--text-dark); }

/* ========== HERO SLIDER ========== */
.hero { min-height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }

.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(5,15,10,0.68) 0%, rgba(10,25,15,0.52) 50%, rgba(5,12,8,0.70) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--white);
  max-width: 780px; padding: 0 24px; padding-top: 90px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.13); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.24);
  color: var(--white); font-size: 0.75rem; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 7px 18px; border-radius: 100px;
  margin-bottom: 22px; animation: fadeDown 0.8s ease forwards;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.2rem); line-height: 1.1;
  margin-bottom: 22px; animation: fadeDown 0.8s 0.2s ease both;
}
.hero-accent { color: var(--pink); }

.hero-desc {
  font-size: clamp(0.95rem, 2vw, 1.15rem); color: rgba(255,255,255,0.85);
  line-height: 1.8; margin-bottom: 38px; animation: fadeDown 0.8s 0.4s ease both;
}
.hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 52px; animation: fadeDown 0.8s 0.6s ease both;
}
.hero-stats {
  display: inline-flex; align-items: center; gap: 28px;
  background: rgba(255,255,255,0.10); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.20); border-radius: var(--radius-md);
  padding: 18px 36px; animation: fadeDown 0.8s 0.8s ease both;
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.stat-num  { font-family: 'Playfair Display', serif; font-size: 1.55rem; font-weight: 700; color: var(--pink); }
.stat-label{ font-size: 0.74rem; color: rgba(255,255,255,0.72); letter-spacing: 0.04em; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.28); }

.slide-dots {
  position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 2;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.7);
  background: transparent; cursor: pointer; transition: all var(--transition);
}
.dot.active { background: var(--pink); border-color: var(--pink); transform: scale(1.2); }

.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  color: rgba(255,255,255,0.65); font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; z-index: 2; cursor: pointer;
  animation: fadeDown 1s 1.2s ease both;
}
.scroll-arrow { animation: bounce 2s infinite; font-size: 1.1rem; }

@keyframes bounce  { 0%,100%{transform:translateY(0)}50%{transform:translateY(6px)} }
@keyframes fadeDown{ from{opacity:0;transform:translateY(-18px)}to{opacity:1;transform:translateY(0)} }

/* ========== ABOUT ========== */
.about { padding: 110px 0; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.about-images { position: relative; }
.about-img-main { width: 100%; height: 460px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-secondary {
  position: absolute; bottom: -36px; right: -32px;
  width: 210px; height: 170px; border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-md); border: 4px solid var(--white);
}
.about-badge-float {
  position: absolute; top: 28px; left: -22px;
  background: var(--pink); color: var(--white);
  border-radius: var(--radius-md); padding: 14px 18px;
  display: flex; flex-direction: column; align-items: center; box-shadow: var(--shadow-md);
}
.badge-num  { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; line-height: 1; }
.badge-text { font-size: 0.68rem; font-weight: 600; text-align: center; margin-top: 4px; max-width: 72px; }

.about-content .section-title { margin-bottom: 20px; }
.about-text { font-size: 0.96rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 16px; }
.about-features { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.feature-item { display: flex; align-items: flex-start; gap: 14px; }
.feature-icon {
  font-size: 1.5rem; width: 46px; height: 46px;
  background: var(--pink-pale); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feature-item h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 3px; }
.feature-item p  { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }

/* ========== ROOMS ========== */
.rooms { padding: 110px 0; background: var(--white); }
.rooms-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.room-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.room-img-wrap { height: 230px; position: relative; overflow: hidden; }
.room-img-wrap img { transition: transform 0.5s ease; }
.room-card:hover .room-img-wrap img { transform: scale(1.06); }

.room-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--pink); color: var(--white);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 4px 12px; border-radius: 100px;
}
.room-number {
  position: absolute; bottom: 14px; right: 14px;
  background: rgba(0,0,0,0.55); color: var(--white);
  font-size: 0.72rem; font-weight: 600; padding: 3px 10px; border-radius: 100px;
}
.room-info { padding: 22px; }
.room-info h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 8px; }
.room-info p  { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.room-amenities { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.room-amenities span { background: var(--cream); font-size: 0.75rem; padding: 4px 10px; border-radius: 100px; color: var(--text-mid); }
.room-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(0,0,0,0.06); padding-top: 14px; }
.room-price { font-size: 0.82rem; color: var(--text-light); }
.room-price span { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--pink-dark); font-weight: 700; }

/* ========== PACKAGES ========== */
.packages { padding: 110px 0; position: relative; overflow: hidden; }
.pkg-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}
.packages .container { position: relative; z-index: 2; }

.pkg-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 28px; }

.pkg-card {
  background: rgba(255,255,255,0.06); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg);
  overflow: hidden; transition: all var(--transition);
}
.pkg-card:hover { background: rgba(255,255,255,0.11); transform: translateY(-5px); }
.pkg-featured {
  background: rgba(232,115,154,0.15); border-color: rgba(232,115,154,0.4);
}
.pkg-img { height: 190px; overflow: hidden; }
.pkg-img img { object-fit: contain; background: var(--green-dark); }
.pkg-info { padding: 20px; color: var(--white); }
.pkg-duration {
  display: inline-block; background: var(--pink); color: var(--white);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 3px 12px; border-radius: 100px; margin-bottom: 8px;
}
.pkg-info h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 12px; }
.pkg-routes { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.pkg-routes li { font-size: 0.78rem; color: rgba(255,255,255,0.8); line-height: 1.4; }
.pkg-note { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-bottom: 14px; font-style: italic; }
.pkg-btn { padding: 9px 20px; font-size: 0.82rem; width: 100%; }

.pkg-cta-note {
  text-align: center; color: rgba(255,255,255,0.65);
  font-size: 0.88rem; margin-top: 4px;
}
.pkg-cta-note strong { color: var(--pink); }

/* ========== DESTINATIONS ========== */
.destinations { padding: 110px 0; background: var(--cream); }
.dest-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.dest-card { position: relative; border-radius: var(--radius-md); overflow: hidden; cursor: pointer; }
.dest-poster { height: 480px; }
.dest-photo  { height: 480px; }
.dest-card img { transition: transform 0.6s ease; }
.dest-card:hover img { transform: scale(1.05); }

.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,25,15,0.88) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 28px;
  transition: background var(--transition);
}
.dest-card:hover .dest-overlay { background: linear-gradient(to top, rgba(10,25,15,0.92) 0%, rgba(10,25,15,0.18) 100%); }
.dest-info { color: var(--white); }
.dest-info h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; margin-bottom: 6px; }
.dest-info p  { font-size: 0.83rem; color: rgba(255,255,255,0.78); margin-bottom: 14px; line-height: 1.5; }

/* ========== GALLERY ========== */
.gallery { padding: 110px 0; background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-auto-rows: 200px;
  gap: 10px;
}
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; }
.gallery-item img { transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ========== SERVICES ========== */
.services { padding: 110px 0; background: var(--cream); }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.service-img { height: 260px; overflow: hidden; flex-shrink: 0; }
.service-img img { object-fit: contain; background: var(--cream); }
.service-img-stay img { object-fit: contain; }
.service-info { padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.service-info h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; }
.service-info p  { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }
.service-phones { display: flex; gap: 16px; flex-wrap: wrap; }
.service-phones a {
  font-size: 0.88rem; font-weight: 600; color: var(--pink-dark);
  display: flex; align-items: center; gap: 4px;
}
.service-phones a:hover { color: var(--pink); }
.service-badge {
  display: inline-block; background: var(--pink-pale); color: var(--pink-dark);
  font-size: 0.75rem; font-weight: 600; padding: 4px 12px; border-radius: 100px;
  align-self: flex-start;
}
.service-list { display: flex; flex-direction: column; gap: 6px; }
.service-list li { font-size: 0.88rem; color: var(--text-mid); }

/* ========== CONTACT ========== */
.contact { padding: 110px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 72px; align-items: start; }

.contact-info .section-title { margin-bottom: 14px; }
.contact-info > p { font-size: 0.96rem; color: var(--text-light); line-height: 1.7; margin-bottom: 32px; }

.contact-details { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon-img { width: 38px; height: 38px; object-fit: contain; flex-shrink: 0; border-radius: 8px; }
.contact-icon {
  font-size: 1.3rem; width: 38px; height: 38px;
  background: var(--pink-pale); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.contact-item a, .contact-item span { font-size: 0.9rem; color: var(--text-light); line-height: 1.5; }
.contact-item a:hover { color: var(--pink); }

.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  padding: 8px 18px; border: 2px solid var(--pink-pale);
  border-radius: 100px; font-size: 0.82rem; font-weight: 600;
  color: var(--pink-dark); display: flex; align-items: center; gap: 7px;
  transition: all var(--transition);
}
.social-btn:hover { background: var(--pink); border-color: var(--pink); color: var(--white); }
.social-icon { width: 18px; height: 18px; object-fit: contain; flex-shrink: 0; }

.contact-form-wrap { position: sticky; top: 96px; }
.booking-form { background: var(--cream); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); }
.booking-form h3 { font-family: 'Playfair Display', serif; font-size: 1.45rem; margin-bottom: 26px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group label { font-size: 0.78rem; font-weight: 600; color: var(--text-dark); letter-spacing: 0.02em; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px; border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm); background: var(--white);
  font-family: inherit; font-size: 0.88rem; color: var(--text-dark);
  transition: border-color var(--transition); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--pink); }
.form-group textarea { resize: vertical; }

.form-success {
  background: var(--pink-pale); color: var(--pink-dark);
  border-radius: var(--radius-sm); padding: 14px;
  text-align: center; font-weight: 600; margin-top: 14px;
  font-size: 0.9rem; display: none;
}

/* ========== FOOTER ========== */
.footer { background: var(--green-dark); color: rgba(255,255,255,0.72); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 52px; }

.footer-brand { max-width: 280px; }
.footer-logo { height: 60px; width: auto; object-fit: contain; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer-brand p  { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.58); }
.footer-phone { margin-top: 10px; font-size: 0.9rem; }
.footer-phone a { color: var(--pink); font-weight: 600; }

.footer-col h4 { color: var(--white); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul  { display: flex; flex-direction: column; gap: 9px; }
.footer-col a   { font-size: 0.85rem; color: rgba(255,255,255,0.58); transition: color var(--transition); }
.footer-col a:hover { color: var(--pink); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10); padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.38);
}

/* ========== SCROLL TOP ========== */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 42px; height: 42px;
  background: var(--pink); color: var(--white);
  border: none; border-radius: 50%; font-size: 1rem;
  cursor: pointer; opacity: 0; pointer-events: none;
  transition: all var(--transition); box-shadow: var(--shadow-md); z-index: 999;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--pink-dark); transform: translateY(-3px); }

/* ========== ROOM PRICE BANNER ========== */
.room-price-banner {
  text-align: center; margin-bottom: 36px;
  background: var(--pink-pale); border-radius: var(--radius-md);
  padding: 16px 24px; display: flex; align-items: center;
  justify-content: center; gap: 16px; flex-wrap: wrap;
}
.rpb-label { font-size: 0.9rem; color: var(--text-mid); }
.rpb-price { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--pink-dark); font-weight: 700; }
.rpb-price small { font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 400; color: var(--text-light); }

/* ========== ROOM SLIDER ========== */
.room-slider { position: relative; width: 100%; height: 100%; }
.room-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.4s ease; }
.room-slide.active { opacity: 1; position: relative; }
.rs-prev, .rs-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.85); border: none; cursor: pointer;
  width: 28px; height: 28px; border-radius: 50%;
  font-size: 1.1rem; line-height: 1; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.rs-prev:hover, .rs-next:hover { background: var(--white); }
.rs-prev { left: 8px; }
.rs-next { right: 8px; }

/* ========== AMENITIES STRIP ========== */
.amenities-strip { margin-top: 56px; text-align: center; }
.amenities-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; max-width: 800px; margin: 0 auto;
}
.amenity-item {
  background: var(--cream); border-radius: var(--radius-sm);
  padding: 12px 16px; font-size: 0.88rem; color: var(--text-mid);
  font-weight: 500; text-align: center;
}
.amenity-item small { font-size: 0.75rem; color: var(--text-light); }

/* ========== PKG BENEFITS ========== */
.pkg-benefits {
  margin-top: 40px; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-md);
  padding: 28px 32px;
}
.pkg-benefits h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--white); margin-bottom: 16px; text-align: center; }
.pkg-benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.pkg-benefit { font-size: 0.86rem; color: rgba(255,255,255,0.8); }

/* ========== DESTINATION TABS ========== */
.dest-tabs { display: flex; gap: 12px; justify-content: center; margin-bottom: 36px; flex-wrap: wrap; }
.dest-tab {
  padding: 10px 28px; border: 2px solid var(--pink-pale);
  border-radius: 100px; font-size: 0.88rem; font-weight: 600;
  color: var(--text-mid); background: var(--white);
  cursor: pointer; transition: all var(--transition);
}
.dest-tab.active, .dest-tab:hover {
  background: var(--pink); border-color: var(--pink); color: var(--white);
}
.dest-panel { display: none; }
.dest-panel.active { display: block; }
.dest-intro { display: flex; align-items: center; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; }
.dest-panel-img { width: 220px; height: 160px; object-fit: contain; border-radius: var(--radius-md); flex-shrink: 0; }
.dest-intro p { font-size: 1.05rem; color: var(--text-mid); font-style: italic; }
.dest-places { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.dest-place {
  background: var(--white); border-radius: var(--radius-md);
  padding: 22px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
}
.dest-place h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.dest-place p  { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 10px; }
.dest-place ul { list-style: disc; padding-left: 18px; }
.dest-place li { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; margin-bottom: 4px; }

/* ========== CONTACT MAP ========== */
.contact-map { margin-top: 24px; border-radius: var(--radius-md); overflow: hidden; }

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========== SCROLL PROGRESS BAR ========== */
#progressBar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--pink), var(--amber));
  z-index: 9999; transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(232,115,154,0.6);
}

/* ========== WHATSAPP FLOAT ========== */
.wa-float {
  position: fixed; bottom: 80px; right: 28px; z-index: 998;
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  animation: waPulse 2.5s ease infinite;
  transition: transform var(--transition);
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 54px; height: 54px; }

.wa-tooltip {
  position: absolute; right: 62px; top: 50%; transform: translateY(-50%);
  background: #0f0f0f; color: var(--white);
  font-size: 0.75rem; font-weight: 600; white-space: nowrap;
  padding: 5px 12px; border-radius: 100px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 4px 32px rgba(37,211,102,0.75), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* ========== GLASSMORPHISM CARDS ========== */
.glass-card {
  background: rgba(255,255,255,0.10) !important;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.20) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25) !important;
}

/* Room & destination cards — subtle glow on hover */
.room-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.room-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 20px 50px rgba(232,115,154,0.18) !important;
}

/* ========== WHY CHOOSE US ========== */
.why-us {
  padding: 110px 0; position: relative; overflow: hidden;
}
.why-us-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.08);
  transition: transform 0.1s linear;
}
.why-us-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,5,5,0.84) 0%, rgba(10,10,10,0.78) 100%);
}
.why-us .container { position: relative; z-index: 2; }

.why-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.why-card {
  border-radius: var(--radius-lg); padding: 36px 28px;
  text-align: center; color: var(--white);
  transition: transform var(--transition);
  position: relative; overflow: hidden;
}
.why-card:hover { transform: translateY(-6px); }
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 700; line-height: 1;
  color: rgba(232,115,154,0.20); position: absolute;
  top: 12px; right: 20px;
}
.why-icon { font-size: 2.6rem; margin-bottom: 14px; display: block; }
.why-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 12px; }
.why-card p  { font-size: 0.86rem; color: rgba(255,255,255,0.78); line-height: 1.7; }

/* ========== TESTIMONIALS ========== */
.testimonials { padding: 110px 0; background: var(--cream); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.review-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex; flex-direction: column; gap: 16px;
}
.review-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(232,115,154,0.14); }
.review-featured {
  background: #0f0f0f; color: var(--white);
  transform: scale(1.03);
}
.review-featured:hover { transform: scale(1.03) translateY(-6px); }
.review-stars { color: var(--amber); font-size: 1rem; letter-spacing: 2px; }
.review-text {
  font-size: 0.93rem; line-height: 1.8; color: var(--text-mid);
  font-style: italic; flex: 1;
}
.review-featured .review-text { color: rgba(255,255,255,0.82); }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px; background: var(--pink);
  color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.reviewer-name     { font-weight: 600; font-size: 0.92rem; }
.reviewer-location { font-size: 0.78rem; color: var(--text-light); margin-top: 2px; }
.review-featured .reviewer-location { color: rgba(255,255,255,0.5); }

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.95); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center;
  flex-direction: column;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 82vh;
  object-fit: contain; border-radius: var(--radius-sm);
  box-shadow: 0 20px 80px rgba(0,0,0,0.7);
  animation: lbFadeIn 0.3s ease;
  width: auto; height: auto;
}
@keyframes lbFadeIn { from{opacity:0;transform:scale(0.96)} to{opacity:1;transform:scale(1)} }

.lb-close {
  position: absolute; top: 20px; right: 24px;
  background: rgba(255,255,255,0.12); border: none; color: var(--white);
  font-size: 1.4rem; width: 42px; height: 42px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lb-close:hover { background: var(--pink); }

.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.10); border: none; color: var(--white);
  font-size: 2.5rem; width: 54px; height: 54px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lb-prev:hover, .lb-next:hover { background: var(--pink); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.lb-counter {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.55); font-size: 0.82rem; letter-spacing: 0.1em;
}

/* Gallery items — clickable cursor */
.gallery-item { cursor: zoom-in; }

/* ========== PARALLAX HERO ========== */
.hero-slides { will-change: transform; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .pkg-grid   { grid-template-columns: repeat(2,1fr); }
  .dest-grid  { grid-template-columns: 1fr 1fr; }
  .dest-photo { display: none; }
  .about-grid { gap: 40px; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; max-width: 100%; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed; top: 0; right: -100%; height: 100vh; width: 270px;
    background: var(--green-dark); flex-direction: column;
    justify-content: center; gap: 24px; padding: 80px 28px;
    transition: right 0.35s ease; z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.05rem; color: rgba(255,255,255,0.9) !important; }
  .navbar.scrolled .nav-links a { color: rgba(255,255,255,0.9) !important; }

  .about-grid,
  .contact-grid   { grid-template-columns: 1fr; gap: 40px; }
  .services-grid  { grid-template-columns: 1fr; }
  .rooms-grid     { grid-template-columns: 1fr; }
  .pkg-grid       { grid-template-columns: 1fr; }
  .dest-places       { grid-template-columns: 1fr; }
  .pkg-benefits-grid { grid-template-columns: 1fr; }
  .amenities-grid    { grid-template-columns: repeat(2, 1fr); }
  .dest-intro        { flex-direction: column; }
  .dest-panel-img    { width: 100%; height: 180px; }
  .why-grid          { grid-template-columns: 1fr; }
  .reviews-grid      { grid-template-columns: 1fr; }
  .review-featured   { transform: none; }
  .review-featured:hover { transform: translateY(-6px); }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .wa-float { bottom: 20px; right: 20px; }

  .about-img-secondary { right: 0; bottom: -18px; width: 150px; height: 120px; }
  .about-badge-float   { left: 0; }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .g-tall { grid-row: span 1; }
  .g-wide { grid-column: span 2; }

  .hero-stats { flex-direction: column; gap: 14px; padding: 18px 28px; }
  .stat-divider { width: 60px; height: 1px; }

  .contact-form-wrap { position: static; }
  .booking-form { padding: 22px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid   { grid-template-columns: 1fr; }
  .footer-brand  { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

  .dest-photo { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn          { max-width: 270px; width: 100%; }
  .gallery-grid { grid-template-columns: 1fr; }
  .g-wide       { grid-column: span 1; }
}
