/*
Theme Name:  KWC – Kota Wisata Cibubur
Theme URI:   https://kotawisatacibubur.com
Description: Custom marketing theme for Kota Wisata Cibubur. Single-page layout: sticky navbar, hero, about, fasilitas slider, cluster sections, product cards, special offer, location, footer.
Version:     2.0.0
Author:      Marketing Kota Wisata Cibubur
Author URI:  https://kotawisatacibubur.com
License:     Proprietary
Text Domain: cge-theme
*/

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; }
ul  { list-style: none; padding: 0; margin: 0; }

/* ============================================
   TOKENS
============================================ */
:root {
  --green-dark:   #0e4372;
  --green-teal:   #0e4372;
  --green-mid:    #0e4372;
  --gold-primary: #0e4372;
  --gold-light:   #0e4372;
  --gold-warm:    #0e4372;
  --gold-amber:   #0e4372;
  --text-mid:     #4e4e4e;
  --text-light:   #5a5a5a;
  --text-faint:   #939292;
  --white:        #ffffff;
  --shadow:       0 4px 20px rgba(0,0,0,0.10);
  --radius-card:  20px;
  --radius-btn:   25px;
}

/* ============================================
   NAVBAR
============================================ */
.cge-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}

.cge-navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 50px;
  max-width: 1400px;
  margin: 0 auto;
}

.cge-navbar__logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.cge-navbar__menu ul {
  display: flex;
  gap: 0;
  align-items: center;
}

.cge-navbar__menu ul li a {
  position: relative;
  display: inline-block;
  padding: 10px 16px;
  color: var(--text-mid);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.cge-navbar__menu ul li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: #686868;
  width: 0;
  transition: width 0.3s;
}

.cge-navbar__menu ul li a:hover { color: var(--green-dark); }
.cge-navbar__menu ul li a:hover::after { width: calc(100% - 32px); }

.cge-navbar__cta .btn-nav {
  display: inline-block;
  background: var(--green-dark);
  color: var(--white);
  border: 1px solid var(--green-dark);
  border-radius: var(--radius-btn);
  padding: 11px 28px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.cge-navbar__cta .btn-nav:hover {
  background: transparent;
  color: var(--green-dark);
}

.cge-navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.cge-navbar__hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: #292929;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================
   HERO
============================================ */
.cge-hero {
  position: relative;
  width: 100%;
  margin: 0 auto;
  min-height: 100vh;
  border-radius: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


.cge-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  max-width: 800px;
}

.cge-hero__badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50px;
  padding: 7px 22px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: #f5e9c4;
}

.cge-hero__title {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.cge-hero__title span { color: var(--green-dark); }

.cge-hero__subtitle {
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 36px;
  color: #888888;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.cge-hero__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cge-hero__stats {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 2;
  flex-wrap: wrap;
  justify-content: center;
}

.cge-hero__stat {
  background: #ffffff;
  border-radius: 14px;
  padding: 12px 22px;
  text-align: center;
  color: var(--green-dark);
  min-width: 120px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.cge-hero__stat .stat-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}

.cge-hero__stat .stat-label {
  font-size: 11px;
  font-weight: 400;
  margin-top: 4px;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================
   BUTTONS
============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-teal);
  color: var(--white);
  border: 1px solid var(--green-teal);
  border-radius: var(--radius-btn);
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s;
}

.btn-primary:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--white);
  color: var(--green-dark);
  border: 1px solid var(--white);
  border-radius: var(--radius-btn);
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s, color 0.3s ease;
}

.btn-outline:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-wa {
  display: block;
  margin: 18px auto 0;
  background: var(--green-mid);
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: var(--radius-btn);
  padding: 11px 24px;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  transition: background 0.5s ease, color 0.5s ease, border-color 0.5s ease;
}

.btn-wa:hover {
  background: transparent;
  border-color: var(--green-mid);
  color: var(--green-mid);
}

/* ============================================
   SECTION BASE
============================================ */
.cge-section {
  padding: 80px 0;
}

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

.cge-section-title {
  color: var(--green-mid);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  margin-bottom: 10px;
}

.cge-section-subtitle {
  color: var(--text-light);
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 50px;
}

/* ============================================
   ABOUT
============================================ */
.cge-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.cge-about__description {
  font-size: 16px;
  line-height: 2;
  color: var(--text-light);
  margin-bottom: 28px;
}

.cge-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.cge-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-mid);
  font-size: 15px;
}

.cge-feature-list li i {
  color: var(--green-teal);
  font-size: 18px;
  flex-shrink: 0;
}

.btn-about {
  display: inline-block;
  background: var(--green-dark);
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: var(--radius-btn);
  padding: 13px 32px;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-about:hover {
  background: transparent;
  border-color: var(--green-dark);
  color: var(--green-dark);
}

.cge-about__image {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cge-about__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-card);
  transition: transform 0.5s ease;
}

.cge-about__image:hover img { transform: scale(1.03); }

/* ============================================
   PRODUCTS
============================================ */
.cge-promo {
  background: linear-gradient(135deg, #f9f5ee 0%, #f0ebe0 100%);
}

.cge-promo__header {
  text-align: center;
  margin-bottom: 50px;
}

.cge-promo__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cge-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: 5px 5px 20px rgba(58,58,58,0.12);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cge-card:hover {
  transform: translateY(-6px);
  box-shadow: 5px 12px 30px rgba(58,58,58,0.18);
}

.cge-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.cge-card__body { padding: 24px; }

.cge-card__name {
  color: var(--green-mid);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}

.cge-card__location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #4b4b4b;
  font-size: 14px;
  margin-bottom: 14px;
}

.cge-card__location i { color: var(--green-teal); }

.cge-card__price {
  border-top: 1px solid #f0e8d5;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.price-label { font-size: 12px; color: var(--green-mid); font-weight: 400; }
.price-value { font-size: 20px; font-weight: 600; color: var(--green-mid); }
.price-unit  { font-size: 10px; font-weight: 500; color: var(--text-light); }

.cge-card__specs {
  display: flex;
  gap: 14px;
  padding: 12px 0 0;
  border-top: 1px solid #f0e8d5;
  margin-top: 12px;
  flex-wrap: wrap;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #091c34;
}

.spec-item i { color: var(--green-teal); font-size: 14px; }

/* ============================================
   OFFER STRIP
============================================ */
.cge-offer {
  background: var(--green-teal);
  padding: 70px 0;
}

.cge-offer__inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.cge-offer__image {
  flex: 1;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.cge-offer__image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-card);
}

.cge-offer__text { flex: 1; color: var(--white); }

.cge-offer__text .cge-section-title { color: var(--white); margin-bottom: 6px; }

.cge-offer__text .offer-subtitle {
  color: var(--white);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 24px;
}

.cge-offer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.cge-offer__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  color: var(--white);
}

.btn-offer {
  display: inline-block;
  background: var(--white);
  color: var(--green-teal);
  border: 1px solid var(--white);
  border-radius: var(--radius-btn);
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-offer:hover {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

/* ============================================
   LOCATION
============================================ */
.cge-location__header {
  text-align: center;
  margin-bottom: 50px;
}

.cge-location__map {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 48px;
}

.cge-location__map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.cge-location__benefits {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.cge-benefit-group h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-teal);
}

.cge-benefit-group ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #535353;
  padding: 6px 0;
}

.cge-benefit-group ul li i { color: var(--green-teal); font-size: 14px; }

/* ============================================
   FOOTER
============================================ */
.cge-footer { background: #fff; box-shadow: 0 0 5px 0 rgba(0,0,0,0.1); }

.cge-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  padding: 60px 0 40px;
}

.cge-footer__logo-col { flex: 0 0 220px; }

.cge-footer__logo-col img {
  height: 70px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

.cge-footer__logo-col p {
  font-size: 13px;
  color: var(--text-faint);
  line-height: 1.7;
}

.cge-footer__address h2 {
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 4px;
}

.cge-footer__address h3 {
  color: var(--green-mid);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 14px;
}

.cge-footer__address p {
  font-size: 14px;
  color: #545454;
  line-height: 1.8;
  margin-bottom: 6px;
}

.cge-footer__contact h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.cge-footer__contact .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #1c244b;
  margin-bottom: 10px;
}

.cge-footer__contact .contact-item a { color: #1c244b; }
.cge-footer__contact .contact-item i { color: var(--green-teal); font-size: 16px; }

.cge-footer__hr {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 0 40px;
}

.cge-footer__bottom {
  background: var(--green-mid);
  color: var(--white);
  text-align: center;
  padding: 16px 20px;
}

.cge-footer__bottom .rights  { font-size: 15px; font-weight: 400; }
.cge-footer__bottom .powered { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* ============================================
   FLOATING WHATSAPP
============================================ */
.cge-float-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 14px rgba(37,211,102,0.45);
  z-index: 9999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cge-float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,211,102,0.55);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 768px) {
  .cge-navbar__inner { padding: 0 20px; }

  .cge-navbar__menu {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.88);
    border-radius: 0 0 14px 14px;
    padding: 0 0 16px;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    z-index: 999;
  }

  .cge-navbar__menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .cge-navbar__menu ul { flex-direction: column; align-items: center; }
  .cge-navbar__menu ul li a { color: var(--white); display: block; padding: 14px 16px; }
  .cge-navbar__menu ul li a::after { display: none; }
  .cge-navbar__cta { display: none; }
  .cge-navbar__hamburger { display: flex; }

  .cge-hero {
    width: 100%;
    margin: 0;
    height: auto;
    min-height: 100svh;
    border-radius: 0;
    padding-top: 120px;
    padding-bottom: 220px;
    align-items: center;
  }
  .cge-hero::before { border-radius: 0; }
  .cge-hero__stats { gap: 10px; bottom: 30px; width: 100%; padding: 0 15px; }
  .cge-hero__stat { padding: 12px 14px; flex: 1 1 calc(50% - 20px); min-width: 0; }
  .cge-hero__stat .stat-value { font-size: 19px; }

  .cge-about__grid { grid-template-columns: 1fr; gap: 40px; }
  .cge-about__image img { height: 280px; }

  .cge-promo__cards { grid-template-columns: 1fr; }

  .cge-offer__inner { flex-direction: column; gap: 36px; }
  .cge-offer__image img { height: 260px; }

  .cge-footer__top { flex-direction: column; gap: 36px; }
  .cge-footer__logo-col { flex: none; }

  .cge-location__benefits { gap: 36px; flex-direction: column; align-items: flex-start; }

  .cge-container { padding: 0 20px; }
  .cge-section   { padding: 56px 0; }
}

/* ============================================
   PRODUCT IMAGE SLIDER
============================================ */
.cge-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  background: #e8e8e8;
}

.cge-slider__track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.cge-slider__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 0;   /* parent clips corners */
}

/* Prev / Next buttons */
.cge-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(4px);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.cge-slider__btn:hover {
  background: rgba(255,255,255,0.97);
  transform: translateY(-50%) scale(1.08);
}

.cge-slider__btn--prev { left: 10px; }
.cge-slider__btn--next { right: 10px; }

/* Dot indicators */
.cge-slider__dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.cge-slider__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.cge-slider__dot.active {
  background: var(--white);
  transform: scale(1.3);
}

/* ============================================
   FACILITIES SLIDER (full-width, tall slides)
============================================ */
.cge-facilities {
  padding-bottom: 0;
}

.cge-facilities__header {
  text-align: center;
  margin-bottom: 40px;
}

/* Override default slider height for facility slides */
.cge-slider--fac {
  border-radius: 0;
  margin: 0;
}

.cge-fac-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex !important;
  align-items: flex-end;
}

.cge-fac-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.15) 60%,
    transparent 100%
  );
}

.cge-fac-slide__caption {
  position: relative;
  z-index: 2;
  padding: 40px 60px;
  color: var(--white);
  max-width: 700px;
}

.cge-fac-slide__caption h3 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.cge-fac-slide__caption p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin: 0;
}

/* Larger arrows for facilities slider */
.cge-slider--fac .cge-slider__btn {
  width: 46px;
  height: 46px;
  font-size: 26px;
}

/* ============================================
   CLUSTER SECTIONS
============================================ */
.cge-cluster-section {
  background: #fff;
}

.cge-cluster-section--alt {
  background: linear-gradient(135deg, #f9f5ee 0%, #f0ebe0 100%);
}

.cge-cluster__header {
  text-align: center;
  margin-bottom: 40px;
}

.cge-cluster__cicilan {
  font-size: 18px;
  color: var(--text-mid);
  margin-top: 6px;
}

.cge-cluster__cicilan strong {
  color: var(--green-mid);
  font-weight: 700;
}

/* 2-column: image left, description right */
.cge-cluster__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.cge-cluster__img {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cge-cluster__img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-card);
  transition: transform 0.5s ease;
  display: block;
}

.cge-cluster__img:hover img { transform: scale(1.03); }

.cge-cluster__desc {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cge-cluster__content {
  font-size: 16px;
  line-height: 2;
  color: var(--text-light);
}

.cge-cluster__content ul {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
  color: var(--text-mid);
}

/* Sub-heading for unit cards inside cluster */
.cge-cluster__units-header {
  margin-bottom: 28px;
  padding-top: 16px;
  border-top: 2px solid #f0e8d5;
}

.cge-cluster__units-header h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--green-mid);
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 768px) {
  .cge-fac-slide { height: 320px; }
  .cge-fac-slide__caption { padding: 24px 20px; }
  .cge-fac-slide__caption h3 { font-size: 22px; }

  .cge-cluster__intro { grid-template-columns: 1fr; gap: 32px; }
  .cge-cluster__img img { height: 260px; }
}
