/* ===================================================
   PESONA KAHURIPAN — Premium Property Website CSS
   Theme: Fresh, Elegant, Luxury, Modern
   =================================================== */

/* ----------- CSS VARIABLES ----------- */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #A07930;
  --emerald: #1A5C45;
  --emerald-light: #2D8C6A;
  --forest: #0D3D2C;
  --cream: #FAF7F2;
  --cream-dark: #F0EBE0;
  --bg-light: #F5F3ED;
  --white: #FFFFFF;
  --text-dark: #1A1A2E;
  --text-mid: #4A4A6A;
  --text-light: #8A8AAA;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.14);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --font-body: 'Outfit', sans-serif;
  --font-display: 'Cormorant Garamond', serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----------- RESET & BASE ----------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* ----------- SECTION COMMON ----------- */
section { padding: 96px 0; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header.sub-header {
  margin-bottom: 32px;
}
.section-header.sub-header .section-title {
  margin-bottom: 0;
}
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  color: var(--gold-dark);
  border: 1px solid rgba(201,168,76,0.35);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  color: var(--emerald);
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
}

/* ----------- BUTTONS ----------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(201,168,76,0.4);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}
.btn-secondary {
  background: rgba(255,255,255,0.18);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(12px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.28);
  transform: translateY(-3px);
}
.btn-outline {
  background: transparent;
  color: var(--emerald);
  border: 2px solid var(--emerald);
}
.btn-outline:hover {
  background: var(--emerald);
  color: var(--white);
  transform: translateY(-3px);
}
.btn-white {
  background: var(--white);
  color: var(--text-dark);
  font-weight: 700;
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}
.btn-full { width: 100%; justify-content: center; }

/* ----------- NAVBAR ----------- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.8rem; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s;
}
#navbar.scrolled .logo-main { color: var(--text-dark); }
.logo-sub {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--white); }
#navbar.scrolled .nav-link { color: var(--text-mid); }
#navbar.scrolled .nav-link:hover { color: var(--text-dark); }
.cta-nav {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600 !important;
  box-shadow: var(--shadow-gold);
}
.cta-nav::after { display: none !important; }
.cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.45);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
#navbar.scrolled .hamburger span { background: var(--text-dark); }
#navbar.menu-open {
  background: var(--white) !important;
  box-shadow: var(--shadow-sm) !important;
  padding: 12px 0 !important;
}
#navbar.menu-open .logo-main {
  color: var(--text-dark) !important;
}
#navbar.menu-open .hamburger span {
  background: var(--text-dark) !important;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------- HERO ----------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13,61,44,0.75) 0%,
    rgba(26,92,69,0.60) 40%,
    rgba(201,168,76,0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.7;
}
.hero-subtitle strong { color: var(--gold-light); }
.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.wa-icon { font-size: 1.1em; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat-item { text-align: left; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(0.6); opacity: 1; }
}

/* ----------- TICKER ----------- */
.ticker-wrap {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--forest) 100%);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.ticker-wrap::before, .ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--emerald), transparent); }
.ticker-wrap::after { right: 0; background: linear-gradient(to left, var(--forest), transparent); }
.ticker {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker span {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0 48px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.ticker span:last-child { border-right: none; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ----------- ABOUT ----------- */
.about {
  background: var(--white);
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 520px;
}
.about-img-main {
  width: 80%;
  height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; }
.about-img-overlay {
  position: absolute;
  bottom: 20px;
  right: 0;
  width: 55%;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-img-overlay img { width: 100%; height: 100%; }
.about-badge-float {
  position: absolute;
  top: 30px;
  right: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.float-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.float-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
}
.about-content { }
.about-desc {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 1.02rem;
}
.about-points {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.point-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 2px;
}
.about-points li div strong {
  display: block;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.about-points li div p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ----------- PRODUCTS ----------- */
.products {
  background: var(--cream);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.card-featured {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
}
.card-featured:hover {
  box-shadow: 0 24px 64px rgba(201,168,76,0.3);
}
.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(201,168,76,0.4);
}
.card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.card-img {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}
.product-card:hover .card-img { transform: scale(1.06); }
.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}
.card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.card-type {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.card-desc {
  color: var(--text-mid);
  font-size: 0.92rem;
  margin-bottom: 20px;
  line-height: 1.6;
}
.card-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--cream);
  border-radius: var(--radius-sm);
}
.card-specs li {
  font-size: 0.88rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 10px;
}
.spec-icon { font-size: 1rem; flex-shrink: 0; }
.card-price {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--cream-dark);
  margin-top: auto;
}
.price-label {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.price-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--emerald);
  line-height: 1.2;
}
.price-per { font-size: 1rem; color: var(--text-mid); }
.card-btn { width: 100%; justify-content: center; }

/* ----------- KEUNGGULAN ----------- */
.keunggulan {
  background: linear-gradient(160deg, var(--forest) 0%, var(--emerald) 100%);
  position: relative;
  overflow: hidden;
}
.keunggulan::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.12), transparent 70%);
  border-radius: 50%;
}
.keunggulan .section-tag {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.4);
  color: var(--gold-light);
}
.keunggulan .section-title { color: var(--white); }
.keunggulan .section-title em { color: var(--gold-light); }
.keunggulan .section-desc { color: rgba(255,255,255,0.65); }
.keunggulan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.keunggulan-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.keunggulan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.keunggulan-card:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.3);
}
.keunggulan-card:hover::before { transform: scaleX(1); }
.k-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
  display: block;
}
.keunggulan-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.keunggulan-card p {
  color: rgba(255,255,255,0.60);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ----------- CLUSTER SECTION ----------- */
.cluster { background: var(--white); }
.cluster-timeline { margin: 48px 0; }
.cluster-items {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 8px;
}
.cluster-item {
  flex: 1;
  min-width: 80px;
  text-align: center;
  padding: 16px 12px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}
.cluster-item::after {
  content: '';
  position: absolute;
  bottom: 50%;
  right: -1px;
  width: 2px;
  height: 30px;
  transform: translateY(50%);
  background: var(--cream-dark);
}
.cluster-item:last-child::after { display: none; }
.cluster-num {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-mid);
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 10px 6px;
  transition: var(--transition);
}
.cluster-label {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-top: 8px;
  font-weight: 600;
}
.cluster-item.active .cluster-num,
.cluster-item:hover .cluster-num {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
}
.cluster-item.cluster-new .cluster-num {
  background: linear-gradient(135deg, var(--emerald-light), var(--emerald));
  color: var(--white);
  animation: pulse-green 2s ease-in-out infinite;
}
.cluster-item.cluster-new .cluster-label { color: var(--emerald); font-weight: 700; }
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(45,140,106,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(45,140,106,0); }
}
.cluster-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,168,76,0.2);
}
.cluster-cta p {
  color: var(--text-mid);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

/* ----------- GALERI ----------- */
.galeri { background: var(--cream); }
.galeri-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.galeri-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}
.galeri-item.galeri-large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}
.galeri-item.galeri-wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}
.galeri-item img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}
.galeri-item:hover img { transform: scale(1.08); }
.galeri-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,61,44,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.galeri-item:hover .galeri-overlay { opacity: 1; }
.galeri-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

/* ----------- LOKASI ----------- */
.lokasi { background: var(--white); }
.lokasi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lokasi-info .section-title { margin-bottom: 16px; }
.lokasi-info .section-desc { 
  max-width: 100%;
  text-align: left;
  color: var(--text-mid);
  margin-bottom: 32px;
}
.lokasi-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.lokasi-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.lokasi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.lokasi-map { }
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 460px;
  box-shadow: var(--shadow-lg);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ----------- TESTIMONIAL ----------- */
.testimonial {
  background: var(--cream);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(201,168,76,0.15);
  line-height: 1;
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testi-text {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; color: var(--text-dark); font-weight: 700; }
.testi-author span { color: var(--text-light); font-size: 0.85rem; }

/* ----------- CTA BANNER ----------- */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
}
.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-position: center 30%;
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,61,44,0.88) 0%,
    rgba(26,92,69,0.82) 100%
  );
}
.cta-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}
.cta-banner-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner-content h2 em {
  font-style: italic;
  color: var(--gold-light);
}
.cta-banner-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 40px;
}
.cta-banner-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ----------- KONTAK ----------- */
.kontak { background: var(--white); }
.kontak-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.kontak-info .section-title { margin-bottom: 12px; }
.kontak-info p { color: var(--text-mid); margin-bottom: 32px; }
.kontak-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.kontak-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.kontak-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.kontak-item strong {
  display: block;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 4px;
}
.kontak-item span, .kontak-item a {
  color: var(--text-mid);
  font-size: 0.95rem;
}
.kontak-item a:hover { color: var(--emerald); }
.social-links {
  display: flex;
  gap: 12px;
}
.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  transition: var(--transition);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover {
  background: var(--emerald);
  color: var(--white);
  transform: translateY(-3px);
}

/* CONTACT FORM */
.kontak-form {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.kontak-form h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 32px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid transparent;
  background: var(--white);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}
.form-group textarea { resize: vertical; }
.form-group select { cursor: pointer; }

/* ----------- FOOTER ----------- */
.footer {
  background: var(--forest);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand .logo-main { color: var(--white); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.55); }
.footer-links h4,
.footer-kontak h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-kontak p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-kontak a { color: rgba(255,255,255,0.55); transition: color 0.25s; }
.footer-kontak a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.4); }

/* ----------- FLOATING WA BUTTON ----------- */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 14px 22px;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  animation: wa-bounce 2.5s ease-in-out infinite;
}
.wa-float svg { width: 22px; height: 22px; flex-shrink: 0; }
.wa-float:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 16px 48px rgba(37,211,102,0.5);
  animation: none;
}
@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ----------- ANIMATIONS ----------- */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate="fadeInDown"] {
  transform: translateY(-20px);
}
[data-animate="fadeInLeft"] {
  transform: translateX(-40px);
}
[data-animate="fadeInRight"] {
  transform: translateX(40px);
}
[data-animate="zoomIn"] {
  transform: scale(0.85);
}
[data-animate].visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* ----------- RESPONSIVE ----------- */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
  .products-grid .product-card:nth-child(3) { grid-column: span 2; max-width: 50%; }
  .about-grid { gap: 48px; }
  .keunggulan-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    padding: 16px 0;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--cream);
  }
  .nav-links.open { display: flex; }
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  .nav-link { 
    display: block;
    color: var(--text-dark) !important;
    padding: 16px 24px;
    width: 100%;
    border-bottom: 1px solid var(--cream);
    font-size: 1.02rem;
    font-weight: 500;
  }
  .nav-link::after { display: none !important; }
  .nav-link.active {
    color: var(--emerald) !important;
    font-weight: 700;
  }
  .cta-nav {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: auto;
    min-width: 200px;
    margin: 20px auto 12px;
    border-bottom: none !important;
  }
  .hamburger { display: flex; }
  .hero-title { font-size: clamp(2.4rem, 8vw, 3.5rem); }
  .hero-subtitle { font-size: 1rem; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .about-grid { grid-template-columns: 1fr; }
  
  /* About Image Mobile Fixing */
  .about-images { height: 360px; }
  .about-img-main { width: 85%; height: 300px; }
  .about-img-overlay { height: 160px; width: 50%; bottom: 10px; right: 0; }
  .about-badge-float { top: 15px; right: 5px; padding: 10px 16px; border-radius: var(--radius-sm); }
  .float-num { font-size: 1.5rem; }
  .float-label { font-size: 0.62rem; letter-spacing: 1px; }

  .products-grid { grid-template-columns: 1fr; }
  .products-grid .product-card:nth-child(3) { grid-column: span 1; max-width: 100%; }
  .keunggulan-grid { grid-template-columns: 1fr; }
  .lokasi-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .kontak-grid { grid-template-columns: 1fr; }
  .galeri-grid { grid-template-columns: repeat(2, 1fr); }
  .galeri-item.galeri-large { grid-column: span 2; }
  .galeri-item.galeri-wide { grid-column: span 2; }
  .galeri-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(13,61,44,0.85) 0%, transparent 70%);
  }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  
  /* Cluster slider scrollbar styling */
  .cluster-items {
    gap: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }
  .cluster-items::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
  }

  .hero-scroll { display: none; }
  .wa-float-text { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
  .kontak-form { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-divider { display: none; }
  .galeri-grid { grid-template-columns: 1fr; }
  .galeri-item.galeri-large, .galeri-item.galeri-wide { grid-column: span 1; }
  .cta-banner-btns { flex-direction: column; width: 100%; }
  .cta-banner-btns .btn { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 16px; }
}

/* ----------- FAQ SECTION ----------- */
.faq-section { background: var(--white); }
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open {
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 4px 24px rgba(201,168,76,0.12);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 28px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}
.faq-question:hover { background: var(--cream); }
.faq-item.open .faq-question { color: var(--emerald); background: var(--cream); }
.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-mid);
  transition: var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer.open { max-height: 600px; }
.faq-answer > div {
  padding: 0 28px 24px;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
}
.faq-answer p { margin-bottom: 12px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul {
  padding-left: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0 12px;
}
.faq-answer ul li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-mid);
}
.faq-answer a { color: var(--emerald); font-weight: 600; }
.faq-answer a:hover { text-decoration: underline; }

/* ----------- ABOUT AWARDS ----------- */
.about-awards-section {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.about-awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.award-card {
  cursor: pointer;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.award-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.award-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-light);
}
.award-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.award-card:hover .award-img-wrapper img {
  transform: scale(1.05);
}
.award-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 92, 69, 0.85); /* Emerald overlay with transparency */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.award-card:hover .award-overlay {
  opacity: 1;
}
.award-zoom-icon {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 16px;
  border: 1.5px solid var(--white);
  border-radius: 50px;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}
.award-card:hover .award-zoom-icon {
  background: var(--white);
  color: var(--emerald);
}

/* ----------- ABOUT OFFICES ----------- */
.about-offices-section {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.about-offices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 32px;
}
.office-card {
  background: linear-gradient(145deg, #1f2937, #111827); /* Dark premium background */
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(201, 168, 76, 0.15); /* Soft gold border */
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.office-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
}
.office-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}
.office-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.office-icon {
  font-size: 1.8rem;
}
.office-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}
.office-desc {
  color: #9ca3af;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.office-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.office-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.office-info-item .info-icon {
  font-size: 1.1rem;
  margin-top: 2px;
}
.office-info-item .info-text {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #d1d5db;
}

/* ----------- RESPONSIVE FOR NEW SECTIONS ----------- */
@media (max-width: 980px) {
  .about-awards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .about-offices-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .office-card {
    padding: 30px;
  }
}
@media (max-width: 480px) {
  .about-awards-grid {
    grid-template-columns: 1fr;
  }
}

/* ----------- LOKASI PROJECTS LIST ----------- */
.lokasi-projects-block {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
}
.projects-block-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.projects-block-subtitle {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 28px;
}
.projects-badge-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.project-badge-btn {
  background: var(--bg-light);
  color: var(--text-dark);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  outline: none;
}
.project-badge-btn:hover {
  background: var(--emerald-light);
  color: var(--emerald);
  border-color: var(--emerald);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(26, 92, 69, 0.1);
}
.project-badge-btn.active-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}
.project-badge-btn.active-badge:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--white);
}

/* ----------- PROJECT DETAILS MODAL ----------- */
.project-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  transition: opacity 0.3s ease;
}
.project-modal.open {
  opacity: 1;
  pointer-events: all;
}
.project-modal-content {
  background: var(--white);
  width: 90%;
  max-width: 580px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 40px;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.project-modal.open .project-modal-content {
  transform: scale(1) translateY(0);
}
.project-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-light);
  border: none;
  color: var(--text-mid);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.project-modal-close:hover {
  background: #fee2e2;
  color: #ef4444;
  transform: rotate(90deg);
}
.project-modal-header {
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-bottom: 20px;
}
.project-modal-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.project-modal-badge.status-soldout {
  background: #f3f4f6;
  color: #6b7280;
  border: 1px solid #e5e7eb;
}
.project-modal-badge.status-active {
  background: var(--emerald-light);
  color: var(--emerald);
  border: 1px solid rgba(26, 92, 69, 0.2);
}
.project-modal-badge.status-featured {
  background: #fef3c7;
  color: #d97706;
  border: 1px solid #fde68a;
}
.project-modal-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
}
.project-modal-info-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.modal-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.modal-info-icon {
  font-size: 1.4rem;
  background: var(--bg-light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.modal-info-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.modal-info-item p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.5;
}
.project-modal-cta {
  text-align: center;
}
.project-modal-cta .btn {
  display: inline-block;
  width: 100%;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(26, 92, 69, 0.15);
}

/* Responsive modal adjustments */
@media (max-width: 580px) {
  .project-modal-content {
    padding: 30px 24px;
    width: 95%;
  }
  .project-modal-title {
    font-size: 1.5rem;
  }
}

/* ----------- SYARAT & KETENTUAN KPR ----------- */
.requirements-section {
  padding: 100px 0;
  background: var(--bg-light); /* Clean grey background to contrast white sections */
}
.requirements-tabs-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201, 168, 76, 0.15);
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
}
.requirements-tabs-headers {
  display: flex;
  background: #f9fafb;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.06);
}
.req-tab-header-btn {
  flex: 1;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-mid);
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}
.req-tab-header-btn:hover {
  color: var(--emerald);
  background: rgba(26, 92, 69, 0.02);
}
.req-tab-header-btn.active {
  color: var(--emerald);
  background: var(--white);
  font-weight: 700;
}
.req-tab-header-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1.5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--emerald);
}
.requirements-tabs-content {
  padding: 40px;
}
.requirements-tab-pane {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.requirements-tab-pane.active {
  display: block;
  opacity: 1;
  animation: fadeInPane 0.4s forwards;
}
@keyframes fadeInPane {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.req-content-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: start;
}
.req-info-summary {
  background: linear-gradient(135deg, #111827, #1f2937); /* Dark premium card */
  color: var(--white);
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(201, 168, 76, 0.2);
  box-shadow: var(--shadow-sm);
}
.req-summary-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 16px;
}
.req-info-summary h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.req-info-summary p {
  color: #9ca3af;
  font-size: 0.92rem;
  line-height: 1.6;
}
.req-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}
.req-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.req-checklist li .chk-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--emerald-light);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  margin-top: 2px;
  border: 1px solid rgba(26, 92, 69, 0.1);
}
.req-checklist li span {
  font-size: 0.98rem;
  color: var(--text-dark);
  line-height: 1.5;
}
.req-checklist li span strong {
  color: var(--emerald);
  font-weight: 600;
}

/* ----------- RESPONSIVE ADJUSTMENTS FOR REQUIREMENTS ----------- */
@media (max-width: 900px) {
  .req-content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .req-tab-header-btn {
    padding: 16px 12px;
    font-size: 0.95rem;
  }
}
@media (max-width: 640px) {
  .requirements-tabs-headers {
    flex-direction: column;
  }
  .req-tab-header-btn {
    text-align: left;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .req-tab-header-btn:last-child {
    border-bottom: none;
  }
  .req-tab-header-btn.active::after {
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    height: 100%;
  }
}
@media (max-width: 480px) {
  .requirements-tabs-content {
    padding: 24px 16px;
  }
  .req-tab-header-btn {
    font-size: 0.85rem;
  }
}

/* ----------- NEWS & EVENTS SECTION ----------- */
.news-section {
  padding: 100px 0;
  background: var(--white);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.news-img-wrapper {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background: var(--bg-light);
}
.news-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-img-wrapper img {
  transform: scale(1.06);
}
.news-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.news-date {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: inline-block;
}
.news-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.45;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-excerpt {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-more-btn {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--emerald);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease, color 0.2s ease;
  width: fit-content;
  margin-top: auto;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
}
.news-more-btn:hover {
  color: var(--emerald-dark);
  gap: 12px;
}

/* ----------- RESPONSIVE ADJUSTMENTS FOR NEWS ----------- */
@media (max-width: 980px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .news-body {
    padding: 24px;
  }
}
@media (max-width: 640px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ─── NEWS DETAIL MODAL ─── */
.news-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  transition: opacity 0.3s ease;
}
.news-modal.open {
  opacity: 1;
  pointer-events: all;
}
.news-modal-content {
  background: var(--white);
  width: 92%;
  max-width: 680px;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(201, 168, 76, 0.2);
  position: relative;
  overflow-y: auto;
  transform: scale(0.92) translateY(24px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.news-modal.open .news-modal-content {
  transform: scale(1) translateY(0);
}
.news-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s, transform 0.2s;
}
.news-modal-close:hover {
  background: var(--white);
  transform: scale(1.1);
}
.news-modal-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.news-modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-modal-body {
  padding: 32px 36px 36px;
}
.news-modal-date {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: inline-block;
  background: rgba(201, 168, 76, 0.12);
  padding: 4px 14px;
  border-radius: 100px;
}
.news-modal-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 20px;
}
.news-modal-text {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.news-modal-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 640px) {
  .news-modal-content {
    width: 96%;
    max-height: 92vh;
  }
  .news-modal-body {
    padding: 24px 20px 28px;
  }
  .news-modal-title {
    font-size: 1.2rem;
  }
}

/* ----------- PRODUCT DETAILS MODAL ----------- */
.product-detail-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 61, 44, 0.45); /* Elegant dark forest transparent backdrop */
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  padding: 20px;
}
.product-detail-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.product-detail-modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.92) translateY(20px);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(201, 168, 76, 0.2);
}
.product-detail-modal.open .product-detail-modal-content {
  transform: scale(1) translateY(0);
}
.product-detail-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  z-index: 10;
}
.product-detail-modal-close:hover {
  background: var(--emerald);
  color: var(--white);
  transform: rotate(90deg);
}

.product-detail-modal-header {
  padding: 40px 40px 20px;
  border-bottom: 1px solid var(--cream-dark);
}
.product-detail-badge {
  display: inline-block;
  background: var(--gold-light);
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.product-detail-type {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--emerald-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.product-detail-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--forest);
  line-height: 1.2;
  margin-top: 4px;
}

.product-detail-modal-body {
  padding: 30px 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}
.product-detail-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product-detail-img-wrap {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.product-detail-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail-desc {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}
.product-detail-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 10px;
}
.product-detail-specs li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
}
.product-detail-specs .spec-icon {
  font-size: 1.2rem;
  background: var(--cream);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.product-detail-pricing {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pricing-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--cream-dark);
}
.pricing-header {
  border-bottom: 2px dashed var(--cream-dark);
  padding-bottom: 16px;
  margin-bottom: 20px;
  text-align: center;
}
.pricing-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pricing-value {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-dark);
  font-weight: 800;
  margin-top: 4px;
}
.installments-section h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.installments-table {
  width: 100%;
  border-collapse: collapse;
}
.installments-table th {
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 8px 12px;
  border-bottom: 2px solid var(--cream-dark);
}
.installments-table td {
  padding: 12px;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.9rem;
}
.installments-table tr:last-child td {
  border-bottom: none;
}
.installment-amount {
  font-weight: 700;
  color: var(--emerald-light);
}

.product-detail-modal-cta {
  padding: 24px 40px 40px;
  text-align: center;
  border-top: 1px solid var(--cream-dark);
}
.product-detail-modal-cta .btn {
  width: 100%;
  max-width: 400px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/* Responsive modal adjustments */
@media (max-width: 768px) {
  .product-detail-modal-body {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 24px 20px;
  }
  .product-detail-modal-header {
    padding: 30px 20px 15px;
  }
  .product-detail-title {
    font-size: 1.6rem;
  }
  .product-detail-modal-cta {
    padding: 20px;
  }
  .product-detail-modal-content {
    max-height: 95vh;
  }
}

/* ----------- CARD KPR SUMMARY ----------- */
.card-kpr-summary {
  background: rgba(201, 168, 76, 0.04); /* very light gold cream tint */
  border: 1px dashed rgba(201, 168, 76, 0.25);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin: 14px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.kpr-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.kpr-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.kpr-value {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gold-dark);
}
.kpr-divider {
  height: 1px;
  background: rgba(201, 168, 76, 0.15);
}
.kpr-installments-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kpr-inst-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-dark);
}
.kpr-inst-years {
  font-weight: 600;
  color: var(--text-mid);
}
.kpr-inst-value {
  font-weight: 700;
  color: var(--emerald-light);
}

/* ----------- CARD TABS ----------- */
.card-tabs {
  display: flex;
  border-bottom: 2px solid var(--cream-dark);
  margin: 16px 0 12px;
  gap: 16px;
}
.card-tab-btn {
  padding: 6px 2px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  transition: var(--transition);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.card-tab-btn:hover {
  color: var(--emerald);
}
.card-tab-btn.active {
  color: var(--emerald);
  border-bottom: 2px solid var(--gold);
}
.card-tab-content {
  animation: tabFadeIn 0.3s ease;
}
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}
