/* =============================================
   KCG – Kost Citragrand Cibubur
   style.css
   ============================================= */

/* ---------- VARIABLES ---------- */
:root {
  --green:       #28B863;
  --green-dark:  #032C1B;
  --green-mid:   #1a7d44;
  --green-light: #e8f7ef;
  --pink:        #F7BAB7;
  --pink-light:  #fdf0ef;
  --white:       #FFFFFF;
  --off-white:   #f8f9f6;
  --gray-50:     #f9fafb;
  --gray-100:    #f1f2ee;
  --gray-200:    #e5e7e0;
  --gray-400:    #9ca38c;
  --gray-600:    #5a6355;
  --gray-800:    #2d3529;
  --black:       #111510;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  36px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
  --shadow-xl:  0 24px 64px rgba(0,0,0,.14);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- RESET ---------- */
*, *::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(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- UTILITY ---------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 96px 0; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  border: 1px solid rgba(40,184,99,.2);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
}

.section-desc {
  margin-top: 14px;
  font-size: 1.0625rem;
  color: var(--gray-600);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 0 0 0 rgba(40,184,99,.4);
}
.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(40,184,99,.35);
}

.btn-ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-outline:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

.btn-white {
  background: var(--white);
  color: var(--green-dark);
  font-weight: 600;
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.45);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.75);
  transform: translateY(-2px);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,.07);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.nav-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.logo-mark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -.01em;
}
.logo-sub {
  font-size: .75rem;
  font-weight: 500;
  color: var(--gray-600);
  letter-spacing: .02em;
}
.navbar.scrolled .logo-sub { color: var(--gray-600); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.navbar.scrolled .nav-link { color: var(--gray-800); }
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.1); }
.navbar.scrolled .nav-link:hover { color: var(--green); background: var(--green-light); }

.nav-cta {
  font-size: .875rem;
  font-weight: 600;
  color: var(--white);
  background: var(--green);
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  margin-left: 8px;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--green-mid); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--gray-800); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-dark);
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.hero-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--green) 0%, transparent 70%);
  top: -100px; left: -150px;
}
.hero-blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #1a5c38 0%, transparent 70%);
  bottom: -100px; right: 10%;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .4;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  width: 100%;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Cycling word */
.hero-word-wrap {
  display: inline;
  position: relative;
  height: 1.15em;
  overflow: hidden;
  vertical-align: bottom;
  min-width: 300px;
}

.hero-word {
  display: block;
  position: absolute;
  left: 0;
  font-style: italic;
  color: var(--pink);
  opacity: 0;
  transform: translateY(60%);
  transition: opacity .5s ease, transform .5s ease;
  white-space: nowrap;
}

.hero-word.active {
  opacity: 1;
  transform: translateY(0);
}

.hero-word.exit {
  opacity: 0;
  transform: translateY(-60%);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 22px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-number {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .02em;
}
.stat-divider {
  width: 1px; height: 36px;
  background: rgba(255,255,255,.15);
}

.hero-image-col {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-img-frame {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,.08);
}
.hero-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ---------- KEUNGGULAN ---------- */
.keunggulan { background: var(--off-white); }

.keunggulan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.keunggulan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.keunggulan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.keunggulan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.keunggulan-card:hover::before { transform: scaleX(1); }

.k-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.k-icon--pink { background: var(--pink-light); color: #d9534f; }
.k-icon--dark { background: rgba(3,44,27,.07); color: var(--green-dark); }

.k-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.k-desc {
  font-size: .9375rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ---------- HIGHLIGHTS ---------- */
.highlights { background: var(--green-dark); }
.highlights .section-tag { background: rgba(40,184,99,.15); border-color: rgba(40,184,99,.3); }
.highlights .section-title { color: var(--white); }

.highlights-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.highlight-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.highlight-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-4px);
}

.hl-icon {
  flex-shrink: 0;
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  background: rgba(40,184,99,.18);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hl-title {
  display: block;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.hl-sub {
  display: block;
  font-size: .8125rem;
  color: rgba(255,255,255,.5);
}

/* ---------- KAMAR ---------- */
.kamar { background: var(--white); }

.kamar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.kamar-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.kamar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.kamar-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.kamar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.kamar-card:hover .kamar-img { transform: scale(1.06); }

.kamar-status {
  position: absolute;
  top: 14px; left: 14px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 4px 10px;
  border-radius: 100px;
}
.status-available {
  background: rgba(40,184,99,.9);
  color: var(--white);
  backdrop-filter: blur(4px);
}
.status-limited {
  background: rgba(247,186,183,.9);
  color: #8b1c1a;
  backdrop-filter: blur(4px);
}

.kamar-body { padding: 24px; }

.kamar-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 8px;
}
.kamar-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--green-dark);
}
.kamar-price {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}
.kamar-price small {
  font-size: .75rem;
  font-weight: 400;
  color: var(--gray-400);
}

.kamar-facilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
  margin-bottom: 20px;
}
.kamar-facilities li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8125rem;
  color: var(--gray-600);
}
.kamar-facilities svg { color: var(--green); flex-shrink: 0; }

/* ---------- FASILITAS BERSAMA ---------- */
.fasilitas { background: var(--gray-50); }

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

.fasilitas-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  background: var(--white);
  transition: var(--transition);
  cursor: pointer;
}
.fasilitas-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.fas-img-wrap {
  height: 180px;
  overflow: hidden;
}
.fas-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease-out);
}
.fasilitas-card:hover .fas-img { transform: scale(1.08); }

.fas-name {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: var(--green-dark);
  text-align: center;
  padding: 14px 12px;
}

/* ---------- LINGKUNGAN ---------- */
.lingkungan { background: var(--white); }

.lingkungan-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.lingkungan-text .section-tag { display: block; text-align: left; width: fit-content; }
.lingkungan-text .section-title { text-align: left; }

.lingkungan-desc {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-top: 16px;
  margin-bottom: 24px;
}

.lingkungan-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lingkungan-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9375rem;
  color: var(--gray-800);
}
.lingkungan-list svg { color: var(--green); flex-shrink: 0; }

.lingkungan-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 180px;
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
}
.gallery-big {
  grid-column: 1 / -1;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.06); }

/* ---------- INFORMASI ---------- */
.informasi { background: var(--off-white); }

.informasi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.info-img-wrap { height: 200px; overflow: hidden; }
.info-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease-out);
}
.info-card:hover .info-img { transform: scale(1.05); }

.info-body { padding: 24px; }
.info-date {
  font-size: .75rem;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: .04em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.info-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.4;
  margin-bottom: 10px;
}
.info-desc {
  font-size: .875rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 16px;
}
.info-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--green);
  transition: var(--transition);
}
.info-link:hover { color: var(--green-mid); letter-spacing: .01em; }

/* ---------- CTA ---------- */
.cta { background: var(--white); }

.cta-card {
  position: relative;
  background: var(--green-dark);
  border-radius: var(--radius-xl);
  padding: 80px 64px;
  overflow: hidden;
  text-align: center;
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.cta-blob-1 {
  width: 400px; height: 400px;
  background: rgba(40,184,99,.3);
  top: -100px; left: -80px;
}
.cta-blob-2 {
  width: 300px; height: 300px;
  background: rgba(247,186,183,.15);
  bottom: -80px; right: -40px;
}

.cta-content { position: relative; z-index: 2; }

.cta-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(40,184,99,.15);
  border: 1px solid rgba(40,184,99,.3);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.6);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--green-dark);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo .logo-sub { color: rgba(255,255,255,.4); }

.footer-tagline {
  font-size: .9rem;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
  margin-top: 14px;
  max-width: 280px;
}

.footer-heading {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 14px;
}

.footer-text {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
}

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--green);
  transition: var(--transition);
}
.footer-wa:hover { color: #45d97a; }

.footer-bottom {
  padding: 20px 0;
  font-size: .8125rem;
  color: rgba(255,255,255,.3);
  text-align: center;
}

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: var(--transition);
}
.wa-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,.55);
}

.wa-float-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--green-dark);
  background: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.wa-float:hover .wa-float-tooltip { opacity: 1; }
.wa-float-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 6px solid var(--white);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */

/* --- Tablet landscape --- */
@media (max-width: 1024px) {
  .hero-container {
    gap: 40px;
    padding: 80px 24px;
  }
  .keunggulan-grid { grid-template-columns: 1fr 1fr; }
  .fasilitas-grid  { grid-template-columns: repeat(2, 1fr); }
  .informasi-grid  { grid-template-columns: 1fr 1fr; }
}

/* --- Tablet portrait + mobile --- */
@media (max-width: 768px) {
  /* Global spacing */
  .section-pad { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }

  /* ---- NAVBAR ---- */
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(3,44,27,.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 32px;
    overflow-y: auto;
    /* Hide off-screen above */
    clip-path: inset(0 0 100% 0);
    transition: clip-path .4s var(--ease-out);
    z-index: 99;
  }
  .nav-links.open {
    clip-path: inset(0 0 0 0);
  }
  .nav-link {
    padding: 15px 28px;
    border-radius: 0;
    color: rgba(255,255,255,.8);
    font-size: 1.0625rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav-link:hover {
    background: rgba(255,255,255,.06);
    color: var(--white);
  }
  .nav-cta {
    margin: 20px 28px 0;
    width: calc(100% - 56px);
    text-align: center;
    justify-content: center;
    padding: 14px 20px;
    font-size: 1rem;
  }

  /* ---- HERO ---- */
  .hero {
    min-height: auto;
    padding-top: 72px;
  }
  .hero-container {
    grid-template-columns: 1fr;
    padding: 48px 20px 56px;
    gap: 36px;
  }
  /* image goes BELOW text on mobile */
  .hero-image-col { order: 2; }
  .hero-text-col  { order: 1; }
  .hero-img-frame { max-width: 100%; border-radius: var(--radius-lg); }
  .hero-img { height: 260px; }
  .hero-headline { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-word-wrap { min-width: 160px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats {
    flex-wrap: wrap;
    gap: 12px 20px;
    padding: 14px 16px;
  }
  .stat-divider { display: none; }

  /* ---- KEUNGGULAN ---- */
  .keunggulan-grid { grid-template-columns: 1fr; gap: 16px; }
  .keunggulan-card { padding: 28px 24px; }

  /* ---- HIGHLIGHTS ---- */
  .highlights-row { grid-template-columns: 1fr; gap: 14px; }
  .highlight-card { padding: 22px 20px; }

  /* ---- KAMAR ---- */
  .kamar-grid { grid-template-columns: 1fr; gap: 20px; }

  /* ---- FASILITAS ---- */
  .fasilitas-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .fas-img-wrap { height: 140px; }

  /* ---- LINGKUNGAN ---- */
  .lingkungan-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .lingkungan-text .section-tag { margin-bottom: 10px; }
  .lingkungan-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 140px;
  }
  .gallery-big { grid-column: 1 / -1; }

  /* ---- INFORMASI ---- */
  .informasi-grid { grid-template-columns: 1fr; gap: 20px; }

  /* ---- CTA ---- */
  .cta-card { padding: 48px 24px; border-radius: var(--radius-lg); }
  .cta-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .cta-desc { font-size: .9375rem; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* ---- FOOTER ---- */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 32px;
  }
  .footer-tagline { max-width: 100%; }
}

/* --- Mobile small --- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-pad { padding: 48px 0; }

  /* Hero */
  .hero-container { padding: 40px 16px 48px; }
  .hero-badge { font-size: .75rem; }
  .hero-img { height: 300px; }
  .hero-img-badge { font-size: .75rem; padding: 6px 11px; }

  /* Cards padding */
  .kamar-body { padding: 18px; }
  .kamar-facilities { gap: 5px 10px; }

  /* Fasilitas to single col on very small */
  .fasilitas-grid { grid-template-columns: 1fr 1fr; }

  /* Gallery stacks */
  .lingkungan-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 10px;
  }
  .gallery-big { grid-column: 1; }
  .gallery-item { height: 180px; }

  /* Keunggulan icon smaller */
  .k-icon { width: 48px; height: 48px; margin-bottom: 14px; }

  /* WA float smaller */
  .wa-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }

  /* Stat font */
  .stat-number { font-size: 1.2rem; }
  .stat-label  { font-size: .7rem; }
}
/* =========================
   SURVEY FLOATING BUTTON
========================= */

.survey-float{
    position:fixed;
    right:24px;
    bottom:24px;
    z-index:9999;

    display:flex;
    align-items:center;
    gap:10px;

    padding:14px 18px;

    background:#28B863;
    color:#fff;

    text-decoration:none;
    border-radius:999px;

    font-size:14px;
    font-weight:600;

    box-shadow:0 10px 30px rgba(3,44,27,.18);

    transition:all .25s ease;
}

.survey-float:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 40px rgba(3,44,27,.25);
}

.survey-float svg{
    flex-shrink:0;
}

.survey-float span{
    white-space:nowrap;
}

@media (max-width:768px){

    .survey-float{
        width:60px;
        height:60px;
        padding:0;
        justify-content:center;
        border-radius:50%;
    }

    .survey-float span{
        display:none;
    }

}
.seo-keywords{
    margin-top:20px;
    font-size:13px;
    color: #fff;
    opacity:.7;
    line-height:1.8;
    text-align: center;
}
.footer-bottom a{
    color: inherit;
    font-weight: 600;
    text-decoration: none;
}

.footer-bottom a:hover{
    text-decoration: underline;
}
.status-occupied{
  color: #FFFFFF;
  background-color: #8b1c1a;
}
