:root {
  --green: #0f766e;
  --green-dark: #064e3b;
  --green-soft: #ecfdf5;
  --gold: #facc15;
  --pink: #db2777;
  --ink: #0f172a;
  --text: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(15, 23, 42, .16);
  --radius: 28px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fffaf0;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1140px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, .9);
}
.nav-wrap { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.brand-mark {
  width: 44px; height: 44px; border-radius: 15px;
  background: linear-gradient(135deg, var(--green), #16a34a);
  color: #fff; display: grid; place-items: center; font-weight: 900;
  box-shadow: 0 10px 24px rgba(15, 118, 110, .24);
}
.brand strong { display: block; font-size: 17px; letter-spacing: -.02em; }
.brand small { display: block; color: var(--muted); font-size: 12px; margin-top: -2px; }
.nav-links { display: flex; align-items: center; gap: 22px; font-size: 14px; font-weight: 700; }
.nav-links a { color: #1e293b; }
.nav-links a:hover { color: var(--green); }
.nav-cta {
  background: #25d366;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(37, 211, 102, .22);
}
.menu-toggle { display: none; border: 0; background: var(--green); color: #fff; border-radius: 12px; font-size: 22px; padding: 7px 11px; }

.hero { min-height: 88vh; position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('../images/banner.png') center/cover no-repeat; transform: scale(1.03); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5, 46, 22, .86), rgba(6, 78, 59, .55), rgba(15, 23, 42, .16)); }
.hero-content { position: relative; color: #fff; padding: 130px 0 80px; max-width: 760px; margin-left: max(16px, calc((100vw - 1140px) / 2)); }
.hero-badge, .eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px;
  font-weight: 900; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold); font-size: 13px;
}
.hero h1 { font-size: clamp(42px, 7vw, 82px); line-height: .98; letter-spacing: -.06em; margin-bottom: 22px; color: #fff; }
.hero p { font-size: clamp(17px, 2vw, 21px); color: rgba(255, 255, 255, .92); max-width: 690px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; border-radius: 999px;
  padding: 14px 22px; font-weight: 900; transition: .25s ease; border: 0; cursor: pointer;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: #25d366; color: #fff; box-shadow: 0 16px 30px rgba(37, 211, 102, .28); }
.btn-light { background: #fff; color: var(--green-dark); }
.btn-card { background: var(--green); color: #fff; width: 100%; margin-top: 14px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 44px; max-width: 670px; }
.hero-stats div { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22); border-radius: 22px; padding: 18px; backdrop-filter: blur(8px); }
.hero-stats strong { display: block; color: #fff; font-size: 23px; }
.hero-stats span { color: rgba(255,255,255,.78); font-size: 13px; }

.section { padding: 90px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.section-head h2, .about-text h2, .location-grid h2, .cta-box h2 { color: var(--ink); font-size: clamp(32px, 4vw, 52px); line-height: 1.08; letter-spacing: -.04em; margin-bottom: 14px; }
.section-head p, .about-text p, .location-grid p, .cta-box p { color: var(--muted); font-size: 17px; }

.stay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.stay-card { position: relative; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 18px 45px rgba(15, 23, 42, .12); border: 1px solid rgba(226,232,240,.9); }
.stay-card.featured { transform: translateY(-14px); border: 3px solid var(--gold); }
.popular-ribbon { position: absolute; top: 18px; right: 18px; background: var(--gold); color: #422006; z-index: 2; padding: 8px 14px; border-radius: 999px; font-size: 12px; font-weight: 900; }
.stay-image-wrap { position: relative; height: 280px; overflow: hidden; }
.stay-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: .45s ease; }
.stay-card:hover .stay-image-wrap img { transform: scale(1.06); }
.price-tag { position: absolute; left: 18px; bottom: 18px; background: var(--pink); color: #fff; padding: 10px 15px; border-radius: 999px; font-weight: 900; box-shadow: 0 12px 25px rgba(219, 39, 119, .24); }
.stay-body { padding: 26px; }
.stay-body h3 { color: var(--ink); font-size: 26px; margin-bottom: 8px; }
.stay-body p { color: var(--muted); margin-bottom: 16px; }
.stay-body ul { padding-left: 20px; color: #334155; }
.stay-body li { margin-bottom: 8px; }

.about-section { background: var(--green-soft); }
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.about-image { position: relative; }
.about-image img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.floating-card { position: absolute; left: 24px; bottom: 24px; background: #fff; border-radius: 22px; padding: 18px 22px; box-shadow: 0 20px 38px rgba(15,23,42,.2); }
.floating-card strong { display: block; color: var(--green); font-size: 34px; line-height: 1; }
.floating-card span { color: var(--muted); font-size: 13px; font-weight: 700; }
.check-list { display: grid; gap: 12px; margin-top: 24px; }
.check-list p { background: #fff; border-radius: 16px; padding: 13px 15px; color: #1f2937; font-weight: 700; }

.facility-section { background: linear-gradient(135deg, var(--green-dark), var(--green)); color: #fff; }
.light-head h2, .light-head p { color: #fff; }
.facility-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.facility-card { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); border-radius: 24px; padding: 24px; min-height: 170px; backdrop-filter: blur(8px); }
.facility-card span { font-size: 34px; display: block; margin-bottom: 12px; }
.facility-card h3 { color: #fff; font-size: 19px; margin-bottom: 8px; }
.facility-card p { color: rgba(255,255,255,.82); font-size: 14px; }

.location-section { background: #fff; }
.location-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 34px; align-items: start; }
.nearby-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.nearby-list div { background: #fff7ed; border: 1px solid #fed7aa; border-radius: 18px; padding: 16px; font-weight: 800; color: #7c2d12; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-grid img { width: 100%; height: 270px; object-fit: cover; border-radius: 22px; box-shadow: 0 14px 34px rgba(15,23,42,.14); cursor: pointer; transition: .25s ease; }
.gallery-grid img:hover { transform: translateY(-5px); }

.testimonial-section { background: #f8fafc; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card { background: #fff; border-radius: 24px; overflow: hidden; box-shadow: 0 16px 38px rgba(15,23,42,.1); }
.testimonial-card img { width: 100%; height: 230px; object-fit: cover; }
.testimonial-content { padding: 22px; }
.testimonial-content p { color: #475569; margin-bottom: 16px; }
.testimonial-content strong { display: block; color: var(--ink); }
.testimonial-content span { color: var(--muted); font-size: 14px; }
.review-images { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: center; }
.review-images img { border-radius: 18px; box-shadow: 0 12px 30px rgba(15,23,42,.12); background: #fff; width: 100%; }

.cta-section { padding: 70px 0; background: #fffaf0; }
.cta-box { background: linear-gradient(135deg, #064e3b, #0f766e); border-radius: 34px; padding: 48px; color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 24px; box-shadow: var(--shadow); }
.cta-box h2, .cta-box p { color: #fff; }
.cta-box p { opacity: .86; max-width: 650px; }

.footer { background: #071b17; color: rgba(255,255,255,.78); padding: 58px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 35px; }
.footer-brand { color: #fff; margin-bottom: 18px; }
.footer h3 { color: #fff; margin-bottom: 15px; }
.footer a { display: block; margin-bottom: 8px; color: rgba(255,255,255,.78); }
.footer a:hover { color: #fff; }
.copyright { border-top: 1px solid rgba(255,255,255,.1); text-align: center; margin-top: 34px; padding-top: 22px; font-size: 14px; }

.floating-wa { position: fixed; right: 20px; bottom: 20px; z-index: 60; background: #25d366; color: #fff; font-weight: 900; border-radius: 999px; padding: 14px 18px; box-shadow: 0 16px 30px rgba(15,23,42,.25); }

.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,.88); display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-height: 88vh; max-width: 94vw; object-fit: contain; border-radius: 18px; }
.lightbox button { position: absolute; top: 18px; right: 18px; border: 0; border-radius: 999px; width: 44px; height: 44px; background: #fff; color: #111827; font-size: 24px; cursor: pointer; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav-links { display: none; position: absolute; left: 16px; right: 16px; top: 78px; background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 18px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .nav-links.active { display: flex; }
  .nav-links a { padding: 8px; }
  .hero-content { margin: 0 auto; width: min(1140px, calc(100% - 32px)); }
  .stay-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .stay-card.featured { transform: none; }
  .about-grid, .location-grid, .footer-grid { grid-template-columns: 1fr; }
  .facility-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .hero { min-height: 760px; }
  .hero-stats, .facility-grid, .gallery-grid, .nearby-list, .review-images { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .stay-image-wrap { height: 230px; }
  .cta-box { flex-direction: column; align-items: flex-start; padding: 32px 24px; }
  .btn { width: 100%; }
  .floating-wa { left: 16px; right: 16px; text-align: center; justify-content: center; }
}
