/* ============================================================
   MY NEST AGRO FARM RESORT — Premium Stylesheet
   Theme: Luxury Nature | Palette: Forest Green, Warm Beige, Ivory
   ============================================================ */

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

/* ─── CSS Variables ─── */
:root {
  --forest: #2C4A2E;
  --forest-dark: #1a2e1b;
  --forest-light: #3d6b40;
  --sage: #6B8F71;
  --sage-light: #a8c5aa;
  --beige: #F5EFE0;
  --beige-dark: #e8dfc8;
  --ivory: #FDFAF4;
  --gold: #C9A84C;
  --gold-light: #e2c97e;
  --text-dark: #1E2D1F;
  --text-mid: #4a5c4b;
  --text-light: #8a9e8c;
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(44,74,46,0.08);
  --shadow-md: 0 8px 32px rgba(44,74,46,0.14);
  --shadow-lg: 0 20px 60px rgba(44,74,46,0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Typography ─── */
h1,h2,h3,h4,h5 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
.section-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}
.section-title { color: var(--forest); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  font-weight: 300;
  margin-top: 0.75rem;
  max-width: 560px;
}

/* ─── Layout ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 0; }
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0.75rem auto 0; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
/* New CSS for embedded WhatsApp icons */
.whatsapp-icon {
  display: inline-block;
  width: 18px; /* Standard icon size */
  height: 18px;
  vertical-align: middle;
  margin-right: 0.4rem; /* Spacing from text */
}
.whatsapp-icon svg { width: 100%; height: 100%; fill: currentColor; }

.btn-primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(44,74,46,0.3);
}
.btn-primary:hover { background: var(--forest-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(44,74,46,0.38); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: white; }
.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-gold:hover { background: #b8962e; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.45); }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.82rem; }
.btn-lg { padding: 1.05rem 2.6rem; font-size: 0.95rem; }

/* ─── Navbar ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.1rem 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(26,46,27,0.97);
  backdrop-filter: blur(14px);
  padding: 0.7rem 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.22);
}
.navbar.light {
  background: rgba(253,250,244,0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 14px rgba(44,74,46,0.08);
}
.navbar.light .nav-logo, .navbar.light .nav-link { color: var(--forest); }
.navbar.light .nav-cta { background: var(--forest); color: white; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--white);
  line-height: 1;
}
.nav-logo span { color: var(--gold); }
.nav-logo small { display: block; font-size: 0.55rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.75; margin-top: 2px; font-family: var(--font-body); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  color: rgba(255,255,255,0.88);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  font-weight: 400;
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1.5px; background: var(--gold);
  transform: scaleX(0); transition: transform var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--gold);
  color: var(--white);
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: all var(--transition);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.hamburger {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}
.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}
.hamburger span:nth-child(1) { top: 0px; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }
.navbar.light .hamburger:not(.open) span { background: var(--forest); }
.hamburger.open span:nth-child(1) { top: 9px; transform: rotate(135deg); background: var(--white); }
.hamburger.open span:nth-child(2) { opacity: 0; left: -60px; }
.hamburger.open span:nth-child(3) { top: 9px; transform: rotate(-135deg); background: var(--white); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed; top: 0; right: 0; bottom: 0; width: min(300px, 85vw);
  background: var(--forest-dark);
  z-index: 999;
  padding: 6rem 2.5rem 2rem;
  transform: translateX(100%);
  transition: transform var(--transition);
  box-shadow: -8px 0 40px rgba(0,0,0,0.3);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav .nav-link {
  display: block;
  font-size: 1.4rem;
  font-family: var(--font-display);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.88);
}
.mobile-nav .btn { margin-top: 1.5rem; width: 100%; justify-content: center; }
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 998;
}
.nav-overlay.open { display: block; }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a2e1b 0%, #2c4a2e 50%, #3d5e3f 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-img {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom right, rgba(26,46,27,0.55), rgba(44,74,46,0.4));
  z-index: 1;
}
/* Simulated scenic bg using CSS gradient */
.hero-scenic {
  position: absolute; inset: 0;
  background-image: linear-gradient(to bottom, rgba(26,46,27,0.3), rgba(26,46,27,0.6)), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?q=80&w=2000&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 10s ease-out; /* Slow zoom effect */
  z-index: 0;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 7rem 1.25rem 4rem;
  color: var(--white);
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  animation: fadeInDown 0.8s ease both;
}
.hero-tag::before { content: '✦'; color: var(--gold); font-size: 0.7rem; }
.hero h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
  animation: fadeInUp 0.9s ease 0.1s both;
}
.hero h1 em { color: var(--gold-light); font-style: italic; }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  margin-bottom: 2.2rem;
  max-width: 540px;
  animation: fadeInUp 0.9s ease 0.2s both;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp 0.9s ease 0.3s both;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.4s both;
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--gold-light); }
.hero-stat span { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.65); }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  animation: bounce 2s ease infinite;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); }

/* ─── About Preview ─── */
.about-preview {
  background: var(--beige);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #3d6b40, #2c4a2e);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main .img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  background: linear-gradient(145deg, #3d6b40 0%, #2c4a2e 60%, #1a2e1b 100%);
}
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--gold);
  color: white;
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge strong { display: block; font-family: var(--font-display); font-size: 2.2rem; line-height: 1; }
.about-badge span { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.9; }
.about-content { padding: 1rem 0; }
.about-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin: 2rem 0;
}
.about-feat {
  display: flex; gap: 0.75rem; align-items: flex-start;
  padding: 1rem;
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.about-feat-icon { font-size: 1.5rem; flex-shrink: 0; }
.about-feat h4 { font-family: var(--font-body); font-size: 0.88rem; font-weight: 600; color: var(--forest); margin-bottom: 0.2rem; }
.about-feat p { font-size: 0.78rem; color: var(--text-light); }

/* ─── Featured Rooms Preview ─── */
.rooms-preview { background: var(--ivory); }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.room-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.room-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.room-thumb .img-ph, .room-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  transition: transform 0.5s ease;
}
.room-card:hover .img-ph { transform: scale(1.06); }
.room-badge {
  position: absolute; top: 0.8rem; left: 0.8rem;
  background: var(--gold);
  color: white;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
}
.room-info { padding: 1.4rem; }
.room-info h3 { font-size: 1.2rem; color: var(--forest); margin-bottom: 0.4rem; }
.room-info p { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 1rem; }
.room-meta {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 1rem;
}
.room-meta span {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.78rem; color: var(--text-light);
}

/* ─── Amenities ─── */
.amenities { background: var(--forest); }
.amenities .section-label { color: var(--gold-light); }
.amenities .section-title { color: var(--white); }
.amenities .section-subtitle { color: rgba(255,255,255,0.65); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.amenity-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.8rem 1.2rem;
  text-align: center;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.amenity-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.4);
}
.amenity-icon { font-size: 2rem; margin-bottom: 0.8rem; display: block; }
.amenity-card h4 { font-family: var(--font-body); font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.9); }
.amenity-card p { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 0.3rem; }

/* ─── Testimonials ─── */
.testimonials { background: var(--beige); overflow: hidden; }
.testimonial-slider { position: relative; overflow: hidden; margin-top: 2.5rem; }
.testimonial-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 680px;
  width: 100%;
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: 1rem; left: 2rem;
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--beige-dark);
  line-height: 1;
}
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 0.75rem; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--forest);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: white;
}
.author-info strong { display: block; font-size: 0.9rem; color: var(--forest); }
.author-info span { font-size: 0.75rem; color: var(--text-light); }
.testimonial-dots {
  display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.8rem;
}
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--beige-dark);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.t-dot.active { background: var(--forest); width: 24px; border-radius: 4px; }

/* ─── CTA Banner ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.15), transparent 60%);
}
.cta-banner .section-title { color: white; }
.cta-banner p { color: rgba(255,255,255,0.72); font-size: 1.05rem; margin: 1rem auto 2rem; max-width: 500px; }
.cta-banner .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── Footer ─── */
.footer {
  background: var(--forest-dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { color: white; font-size: 1.7rem; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; }
.footer-col h5 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; font-weight: 600; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-col a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 0.8rem; font-size: 0.88rem; }
.footer-contact-item .icon { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-rating {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--gold);
  font-size: 0.82rem;
}

/* ─── Floating Buttons ─── */
.float-btns {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  z-index: 900;
  display: flex; flex-direction: column; gap: 0.75rem;
  align-items: flex-end;
}
.float-wa {
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: all var(--transition);
  cursor: pointer;
  animation: pulse-green 2.5s ease infinite;
}
.float-wa svg { width: 32px; height: 32px; fill: white; }
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.float-call {
  background: var(--forest);
  color: white;
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 1.2rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: all var(--transition);
}
.float-call:hover { background: var(--forest-light); transform: scale(1.04); }

/* ─── Page Hero (sub-pages) ─── */
.page-hero {
  padding: 9rem 0 5rem;
  background: linear-gradient(135deg, var(--forest-dark), var(--forest));
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.12), transparent 60%);
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { color: white; }
.page-hero p { color: rgba(255,255,255,0.72); max-width: 560px; margin: 1rem auto 0; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-size: 0.8rem; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { opacity: 0.5; }

/* ─── Rooms Page ─── */
.rooms-list { background: var(--ivory); }
.room-full-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transition: box-shadow var(--transition);
}
.room-full-card:hover { box-shadow: var(--shadow-md); }
.room-full-card:nth-child(even) { direction: rtl; }
.room-full-card:nth-child(even) > * { direction: ltr; }
.room-slider-wrap { position: relative; overflow: hidden; min-height: 340px; }
.room-slider { display: flex; transition: transform 0.5s ease; height: 100%; }
.room-slide {
  min-width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none; border-radius: 50%;
  width: 38px; height: 38px;
  cursor: pointer;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
}
.slider-btn:hover { background: white; box-shadow: var(--shadow-md); }
.slider-prev { left: 0.75rem; }
.slider-next { right: 0.75rem; }
.room-full-info { padding: 2.5rem; }
.room-full-info .room-type {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 0.5rem; display: block;
}
.room-full-info h2 { color: var(--forest); margin-bottom: 0.75rem; font-size: 1.9rem; }
.room-full-info p { color: var(--text-mid); margin-bottom: 1.5rem; font-size: 0.95rem; }
.room-features-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.6rem; margin-bottom: 1.8rem;
}
.room-features-list li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; color: var(--text-mid);
}
.room-features-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.room-price {
  display: flex; align-items: baseline; gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.room-price strong { font-family: var(--font-display); font-size: 2rem; color: var(--forest); }
.room-price span { font-size: 0.82rem; color: var(--text-light); }
.room-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ─── Gallery ─── */
.gallery-section { background: var(--ivory); }
.gallery-filters {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  margin-bottom: 3rem;
  justify-content: center;
}
.filter-btn {
  padding: 0.6rem 1.6rem;
  border-radius: 50px;
  border: 1px solid var(--beige-dark);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text-mid);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--forest);
  border-color: var(--forest);
  color: white;
  box-shadow: var(--shadow-sm);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 1.5rem;
  grid-auto-flow: dense;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform var(--transition);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.big { grid-column: span 2; grid-row: span 2; }

.gallery-item .g-ph {
  width: 100%; height: 100%;
  object-fit: cover;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.5s ease;
}
.gallery-item:hover .g-ph { transform: scale(1.07); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,46,27,0.8) 0%, rgba(26,46,27,0) 50%);
  opacity: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-top: 1rem;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-item-overlay span { transform: translateY(0); }
.gallery-item-overlay svg { color: white; width: 28px; height: 28px; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 2000;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lb-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 2001;
}
.lb-nav-btn:hover { background: rgba(255,255,255,0.25); }
.lb-prev { left: -4rem; }
.lb-next { right: -4rem; }

.lightbox-inner {
  position: relative;
  max-width: 70vw;
  max-height: 85vh;
  text-align: center;
}
.lightbox-content {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 50px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute; top: -2.5rem; right: 0;
  background: none; border: none;
  color: white; font-size: 2rem;
  cursor: pointer; opacity: 0.7;
  transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }
.lightbox-caption { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin-top: 1rem; }

/* Back to Top */
.back-to-top {
  width: 44px; height: 44px;
  background: var(--forest);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }

/* ─── About Page ─── */
.about-full { background: var(--ivory); }
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.about-img-block {
  position: relative;
}
.about-img-stack {
  position: relative;
}
.img-main-about, .img-secondary-about {
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.img-main-about {
  aspect-ratio: 3/4;
  font-size: 5rem;
  background: linear-gradient(135deg, #3d6b40, #1a2e1b);
  box-shadow: var(--shadow-lg);
}
.img-secondary-about {
  position: absolute;
  bottom: -2rem; right: -2rem;
  width: 55%;
  aspect-ratio: 1;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--gold), #8b6914);
  border: 4px solid white;
  box-shadow: var(--shadow-md);
}
.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  background: var(--forest);
  border-radius: var(--radius);
  padding: 3rem;
  margin: 3rem 0;
}
.stat-item { text-align: center; }
.stat-item .num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.stat-item .label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.5rem;
  display: block;
}
.values-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  transition: all var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.value-card h3 { font-size: 1.2rem; color: var(--forest); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.88rem; color: var(--text-mid); }

/* ─── Contact Page ─── */
.contact-section { background: var(--ivory); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-card {
  background: var(--forest);
  border-radius: var(--radius);
  padding: 2.5rem;
  color: white;
  position: sticky; top: 7rem;
}
.contact-info-card h3 { font-size: 1.6rem; color: white; margin-bottom: 0.5rem; }
.contact-info-card > p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-size: 0.9rem; }
.cinfo-item {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.cinfo-item:last-of-type { border-bottom: none; }
.cinfo-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.cinfo-text strong { display: block; color: var(--gold-light); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.3rem; font-family: var(--font-body); }
.cinfo-text span { font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.contact-form-card {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 { font-size: 1.7rem; color: var(--forest); margin-bottom: 0.4rem; }
.contact-form-card > p { color: var(--text-mid); margin-bottom: 2rem; font-size: 0.9rem; }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 0.45rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--beige-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--ivory);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--forest); background: white; }
.form-group textarea { resize: vertical; min-height: 110px; }
.map-wrap {
  margin-top: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 340px;
  background: var(--beige);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ─── Animations ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.65), 0 0 0 10px rgba(37,211,102,0.1); }
}
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .about-grid, .about-intro-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 480px; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .amenities-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .room-full-card { grid-template-columns: 1fr; direction: ltr !important; }
  .room-full-card:nth-child(even) { direction: ltr; }
  .room-slider-wrap { min-height: 260px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(7) { grid-column: span 1; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .section { padding: 3.5rem 0; }
  h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  h2 { font-size: clamp(1.8rem, 6vw, 2.5rem); }
  
  .hero-content { padding: 6rem 1.25rem 3rem; }
  .hero-sub { font-size: 1rem; margin-bottom: 1.5rem; }
  .hero-stats { margin-top: 2rem; gap: 1rem; }
  .hero-stat strong { font-size: 1.5rem; }
  
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .rooms-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .about-features { grid-template-columns: 1fr; }
  .room-features-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .cta-banner .cta-btns { flex-direction: column; align-items: center; }
  .stats-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .values-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .room-full-info { padding: 1.5rem; }
  .contact-info-card, .contact-form-card { padding: 1.5rem; }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
  .section { padding: 3rem 0; }
  .container { padding: 0 1rem; }
  .about-badge { right: 0; }
  .img-secondary-about { right: 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(7) { grid-column: span 1; }
  .float-btns { bottom: 1rem; right: 1rem; gap: 0.5rem; }
  .float-wa { width: 50px; height: 50px; }
  .float-wa svg { width: 24px; height: 24px; }
  .float-call { padding: 0.5rem 1rem; font-size: 0.75rem; }
  .amenities-grid { grid-template-columns: repeat(2,1fr); gap: 0.75rem; }
  .hero-tag { font-size: 0.65rem; padding: 0.3rem 0.8rem; }
}
