/* ========================================================
   SUARDI - MUTIARA PROPERTY WEBSITE
   Premium Sage Green Theme
   ======================================================== */

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --bg-primary: #F5F8F4;
  --sage-green: #A8C3A0;
  --soft-olive: #8DAA7B;
  --mint-green: #DDE8D7;
  --white: #FFFFFF;
  --dark-green: #3E5C46;
  --darker-green: #2C4232;
  --accent-gold: #C7A76C;
  --accent-gold-light: #E8C990;
  --text-dark: #1A2E1F;
  --text-body: #4A5E50;
  --text-muted: #7A9082;
  --shadow-sm: 0 2px 8px rgba(62, 92, 70, 0.08);
  --shadow-md: 0 8px 30px rgba(62, 92, 70, 0.12);
  --shadow-lg: 0 20px 60px rgba(62, 92, 70, 0.18);
  --shadow-xl: 0 30px 80px rgba(62, 92, 70, 0.22);
  --border-radius: 16px;
  --border-radius-sm: 10px;
  --border-radius-lg: 24px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-main); }
input, select, textarea { font-family: var(--font-main); outline: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--mint-green); }
::-webkit-scrollbar-thumb { background: var(--sage-green); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--soft-olive); }

/* ===== UTILITIES ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 100px 0; }
.bg-mint { background: var(--mint-green); }
.bg-dark { background: var(--darker-green); }
.text-center { text-align: center; }
.text-accent { color: var(--soft-olive); }
.text-gold { color: var(--accent-gold); }

.glass {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(168,195,160,0.25);
}
.glass-dark {
  background: rgba(44, 66, 50, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(168,195,160,0.2);
}

/* ===== SECTION LABELS & TITLES ===== */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--soft-olive);
  background: rgba(168,195,160,0.15);
  border: 1px solid rgba(168,195,160,0.4);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-label.light { color: var(--sage-green); background: rgba(168,195,160,0.1); border-color: rgba(168,195,160,0.3); }
.section-title { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.2; color: var(--dark-green); margin-bottom: 1rem; }
.section-title.light { color: var(--white); }
.section-desc { font-size: 1rem; color: var(--text-body); max-width: 600px; }
.section-desc.light { color: rgba(255,255,255,0.75); }
.section-header { margin-bottom: 3.5rem; }
.section-header .section-desc { margin: 0 auto; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.revealed { opacity: 1 !important; transform: none !important; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--dark-green); color: var(--white);
  padding: 0.85rem 1.75rem; border-radius: 100px;
  font-weight: 600; font-size: 0.95rem;
  transition: var(--transition); box-shadow: 0 4px 16px rgba(62,92,70,0.3);
}
.btn-primary:hover { background: var(--soft-olive); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(62,92,70,0.4); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  padding: 0.85rem 1.75rem; border-radius: 100px;
  font-weight: 600; font-size: 0.95rem;
  transition: var(--transition);
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.8); transform: translateY(-2px); }
.btn-wa {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #25D366; color: var(--white);
  padding: 0.85rem 1.75rem; border-radius: 100px;
  font-weight: 600; font-size: 0.95rem;
  transition: var(--transition); box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-wa:hover { background: #1eb858; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.45); }
.btn-primary-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--accent-gold); color: var(--darker-green);
  padding: 0.85rem 1.75rem; border-radius: 100px;
  font-weight: 700; font-size: 0.95rem;
  transition: var(--transition); box-shadow: 0 4px 16px rgba(199,167,108,0.4);
}
.btn-primary-gold:hover { background: var(--accent-gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(199,167,108,0.5); }

/* ===== LOADING SCREEN ===== */
#loading-screen {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%; height: 100svh; z-index: 9999;
  background: var(--darker-green);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, transform 0.6s ease;
  overflow: hidden;
}
#loading-screen.hidden { opacity: 0; transform: scale(1.05); pointer-events: none; }
.loading-content { text-align: center; width: 100%; max-width: 320px; padding: 2rem; }
.loading-logo { position: relative; width: 80px; height: 80px; margin: 0 auto 1.5rem; }
.logo-ring {
  position: absolute; inset: -8px;
  border: 2px solid transparent;
  border-top-color: var(--sage-green);
  border-right-color: var(--accent-gold);
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}
.logo-inner { width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; }
.loading-logo-img { width: 48px; height: 48px; object-fit: contain; }
.loading-text {
  color: var(--sage-green); font-weight: 600; font-size: 1.1rem;
  letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.loading-bar {
  width: 200px; height: 3px; background: rgba(168,195,160,0.2);
  border-radius: 2px; margin: 0 auto; overflow: hidden;
}
.loading-progress {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--sage-green), var(--accent-gold));
  border-radius: 2px;
  animation: loadProgress 2s ease forwards;
}
@keyframes loadProgress { to { width: 100%; } }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0.75rem 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(62,92,70,0.12);
  border-bottom: 1px solid rgba(168,195,160,0.3);
}
.nav-container {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; gap: 2rem;
}
.nav-brand { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo-img { height: 38px; width: auto; object-fit: contain; flex-shrink: 0; }
.footer-logo-img { height: 44px; width: auto; object-fit: contain; flex-shrink: 0; }
.brand-logo-img { height: 42px; width: auto; object-fit: contain; margin-bottom: 0.75rem; display: block; }
.nav-brand-text { display: flex; flex-direction: column; }
.brand-name { font-size: 1rem; font-weight: 800; color: var(--dark-green); line-height: 1; }
.brand-sub { font-size: 0.7rem; color: var(--text-muted); font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; margin-left: auto; }
.nav-link {
  font-size: 0.88rem; font-weight: 500; color: var(--text-body);
  padding: 0.4rem 0.75rem; border-radius: 100px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--dark-green); background: var(--mint-green); }
.btn-wa-nav {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: #25D366; color: white;
  padding: 0.5rem 1.1rem; border-radius: 100px;
  font-size: 0.85rem; font-weight: 600;
  transition: var(--transition); flex-shrink: 0;
}
.btn-wa-nav:hover { background: #1eb858; transform: translateY(-1px); }
.btn-wa-nav i { width: 15px; height: 15px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark-green); border-radius: 2px; transition: var(--transition); }
.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 SECTION ===== */
.hero-section {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding: 140px 0 60px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-section:hover .hero-img { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(44,66,50,0.82) 0%, rgba(62,92,70,0.7) 50%, rgba(44,66,50,0.5) 100%);
}
.hero-gradient {
  position: absolute; bottom: 0; left: 0; right: 0; height: 300px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
}
.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(168,195,160,0.2); border: 1px solid rgba(168,195,160,0.5);
  color: var(--sage-green); padding: 0.4rem 1rem; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 7px; height: 7px; background: var(--sage-green);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: 0.7; } }
.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 800;
  line-height: 1.1; color: var(--white);
  margin-bottom: 1.5rem; letter-spacing: -0.02em;
}
.hero-accent { color: var(--accent-gold); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem; max-width: 600px; font-weight: 400; line-height: 1.7;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-stats {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 1.25rem 2rem; border-radius: var(--border-radius);
  width: fit-content;
}
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 2rem; font-weight: 800; color: var(--white); }
.hero-stat-num + span { color: var(--accent-gold); font-weight: 700; }
.hero-stat-label { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.65); font-weight: 500; margin-top: 0.2rem; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }
.hero-scroll-down {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.6); font-size: 0.75rem; z-index: 2;
  animation: bounce 2s ease infinite;
}
.scroll-dot {
  width: 8px; height: 8px; background: var(--sage-green); border-radius: 50%;
}
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--bg-primary); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center; margin-bottom: 5rem;
}
.about-img-wrap {
  position: relative; border-radius: var(--border-radius-lg);
  overflow: visible;
}
.about-img-frame {
  border-radius: var(--border-radius-lg);
  overflow: hidden; aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
}
.about-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-frame:hover .about-img { transform: scale(1.04); }
.about-badge-card {
  position: absolute; bottom: -20px; right: -20px;
  padding: 1rem 1.25rem; border-radius: var(--border-radius);
  display: flex; align-items: center; gap: 0.75rem;
  box-shadow: var(--shadow-lg);
}
.about-badge-card2 {
  position: absolute; top: 30px; left: -25px;
  padding: 1rem 1.25rem; border-radius: var(--border-radius);
  display: flex; align-items: center; gap: 0.75rem;
  box-shadow: var(--shadow-lg);
}
.badge-icon { width: 28px; height: 28px; }
.badge-icon.gold { color: var(--accent-gold); }
.badge-icon.green { color: var(--soft-olive); }
.badge-val { display: block; font-weight: 800; font-size: 1rem; color: var(--dark-green); }
.badge-desc { display: block; font-size: 0.72rem; color: var(--text-muted); }
.about-floating-shape {
  position: absolute; top: -30px; right: -30px;
  width: 150px; height: 150px;
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--mint-green) 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.25; z-index: -1;
  animation: morphShape 6s ease-in-out infinite;
}
@keyframes morphShape {
  0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}
.about-text { color: var(--text-body); margin-bottom: 1rem; line-height: 1.8; }
.about-highlights { margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.75rem; }
.highlight-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.92rem; color: var(--text-dark); font-weight: 500; }
.h-icon { color: var(--soft-olive); width: 18px; height: 18px; flex-shrink: 0; }
.about-contacts { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.contact-chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: 100px;
  border: 1.5px solid var(--mint-green); color: var(--dark-green);
  font-size: 0.82rem; font-weight: 500; transition: var(--transition);
}
.contact-chip:hover { background: var(--dark-green); color: white; border-color: var(--dark-green); }
.contact-chip i { width: 14px; height: 14px; }

/* Stats Row */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat-card {
  padding: 2rem 1.5rem; border-radius: var(--border-radius-lg);
  text-align: center; transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.stat-icon { color: var(--soft-olive); margin-bottom: 1rem; }
.stat-icon i { width: 32px; height: 32px; }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--dark-green); line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

/* ===== PROJECTS SECTION ===== */
.projects-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.project-card {
  background: var(--white); border-radius: var(--border-radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.project-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.project-img-wrap {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
}
.project-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.project-card:hover .project-img { transform: scale(1.06); }
.project-status {
  position: absolute; top: 1rem; left: 1rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 0.3rem 0.85rem; border-radius: 100px;
  text-transform: uppercase;
}
.project-status.available { background: var(--dark-green); color: white; }
.project-status.sold-out { background: var(--accent-gold); color: var(--darker-green); }
.project-overlay {
  position: absolute; inset: 0;
  background: rgba(44,66,50,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.project-card:hover .project-overlay { opacity: 1; }
.project-detail-btn {
  display: flex; align-items: center; gap: 0.5rem;
  background: white; color: var(--dark-green);
  padding: 0.7rem 1.5rem; border-radius: 100px;
  font-weight: 600; font-size: 0.9rem;
  transform: translateY(10px); transition: var(--transition);
}
.project-card:hover .project-detail-btn { transform: translateY(0); }
.project-body { padding: 1.5rem; }
.project-type { font-size: 0.75rem; font-weight: 600; color: var(--soft-olive); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.4rem; }
.project-name { font-size: 1.4rem; font-weight: 800; color: var(--dark-green); margin-bottom: 0.5rem; }
.project-location { display: flex; align-items: flex-start; gap: 0.4rem; color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0.75rem; }
.project-location i { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; color: var(--soft-olive); }
.project-desc { font-size: 0.9rem; color: var(--text-body); line-height: 1.7; margin-bottom: 1rem; }
.project-features { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.feat-tag {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: var(--mint-green); color: var(--dark-green);
  padding: 0.3rem 0.75rem; border-radius: 100px;
  font-size: 0.76rem; font-weight: 500;
}
.feat-tag i { width: 12px; height: 12px; }
.project-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--mint-green); padding-top: 1rem; }
.price-from { display: block; font-size: 0.72rem; color: var(--text-muted); }
.price-val { font-size: 1.25rem; font-weight: 800; color: var(--dark-green); }
.btn-detail {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--dark-green); color: white;
  padding: 0.55rem 1.2rem; border-radius: 100px;
  font-size: 0.85rem; font-weight: 600;
  transition: var(--transition);
}
.btn-detail:hover { background: var(--soft-olive); transform: scale(1.05); }
.btn-detail i { width: 14px; height: 14px; }

/* ===== PROJECT MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white); border-radius: var(--border-radius-lg);
  max-width: 800px; width: 100%; max-height: 90vh;
  overflow-y: auto; position: relative;
  transform: scale(0.9); transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-close {
  position: sticky; top: 1rem; float: right; margin: 1rem;
  width: 40px; height: 40px; background: var(--mint-green);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--dark-green); z-index: 10; transition: var(--transition);
}
.modal-close:hover { background: var(--dark-green); color: white; }
.modal-close i { width: 18px; height: 18px; }
.modal-hero { position: relative; height: 250px; overflow: hidden; margin: -0px; }
.modal-hero img { width: 100%; height: 100%; object-fit: cover; }
.modal-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(44,66,50,0.8), transparent); }
.modal-hero-title { position: absolute; bottom: 1.5rem; left: 1.5rem; color: white; }
.modal-hero-title h2 { font-size: 1.8rem; font-weight: 800; }
.modal-hero-title p { opacity: 0.85; font-size: 0.9rem; }
.modal-body { padding: 2rem; }
.modal-section { margin-bottom: 2rem; }
.modal-section h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark-green); margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--mint-green); }
.modal-features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.modal-feature { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--text-body); }
.modal-feature i { color: var(--soft-olive); width: 16px; height: 16px; }
.modal-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.spec-item { background: var(--mint-green); padding: 1rem; border-radius: var(--border-radius-sm); text-align: center; }
.spec-label { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; }
.spec-val { font-size: 1.1rem; font-weight: 700; color: var(--dark-green); }
.modal-promo {
  background: linear-gradient(135deg, var(--dark-green), var(--soft-olive));
  color: white; padding: 1.5rem; border-radius: var(--border-radius);
}
.modal-promo h4 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--accent-gold); }
.modal-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  background: #25D366; color: white;
  padding: 1rem; border-radius: var(--border-radius);
  font-weight: 700; font-size: 1rem; margin-top: 1.5rem;
  transition: var(--transition);
}
.modal-wa-btn:hover { background: #1eb858; transform: translateY(-2px); }
.modal-wa-btn i { width: 22px; height: 22px; }

/* ===== PRICE LIST ===== */
.filter-bar {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1rem; padding: 1.5rem; border-radius: var(--border-radius-lg);
  margin-bottom: 1.5rem;
}
.filter-group { display: flex; flex-direction: column; gap: 0.4rem; }
.filter-group label { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.input-icon { position: relative; }
.input-icon i { position: absolute; left: 0.85rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); width: 15px; height: 15px; pointer-events: none; }
.filter-group input, .filter-group select {
  width: 100%; padding: 0.65rem 0.85rem 0.65rem 2.5rem;
  border: 1.5px solid rgba(168,195,160,0.4); border-radius: var(--border-radius-sm);
  font-size: 0.9rem; color: var(--text-dark); background: var(--white);
  transition: var(--transition);
}
.filter-group input:focus, .filter-group select:focus { border-color: var(--sage-green); box-shadow: 0 0 0 3px rgba(168,195,160,0.2); }
.filter-group select { padding-left: 0.85rem; }
.table-wrap { border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: var(--shadow-md); overflow-x: auto; }
.price-table { width: 100%; border-collapse: collapse; min-width: 900px; }
.price-table thead { background: var(--dark-green); }
.price-table th { padding: 1rem 1.1rem; text-align: left; color: var(--white); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; white-space: nowrap; }
.price-table td { padding: 0.85rem 1.1rem; font-size: 0.88rem; color: var(--text-body); border-bottom: 1px solid rgba(168,195,160,0.2); }
.price-table tr:hover td { background: rgba(221,232,215,0.3); }
.price-table tr:last-child td { border-bottom: none; }
.status-badge {
  display: inline-block; padding: 0.25rem 0.65rem; border-radius: 100px;
  font-size: 0.72rem; font-weight: 700;
}
.status-badge.available { background: rgba(141,170,123,0.15); color: var(--soft-olive); }
.status-badge.limited { background: rgba(199,167,108,0.15); color: #9B7A2E; }
.status-badge.soldout { background: rgba(200,50,50,0.1); color: #c0392b; }
.price-note { margin-top: 1rem; font-size: 0.82rem; color: var(--text-muted); font-style: italic; }

/* Default: card grid hidden on desktop, table shown */
.price-cards-mobile { display: none; }

.contact-wa-btn {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: #25D366; color: white;
  padding: 0.3rem 0.75rem; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; transition: var(--transition);
}
.contact-wa-btn:hover { background: #1eb858; }
.contact-wa-btn i { width: 12px; height: 12px; }

/* ===== KPR CALCULATOR ===== */
.kpr-section { background: var(--darker-green); position: relative; overflow: hidden; }
.kpr-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(168,195,160,0.1) 0%, transparent 70%);
}
.kpr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.kpr-features { margin: 2rem 0; display: flex; flex-direction: column; gap: 1.5rem; }
.kpr-feat { display: flex; gap: 1rem; align-items: flex-start; }
.kpr-feat-icon {
  width: 48px; height: 48px; background: rgba(168,195,160,0.15);
  border-radius: var(--border-radius-sm); display: flex; align-items: center; justify-content: center;
  color: var(--sage-green); flex-shrink: 0;
}
.kpr-feat-icon i { width: 22px; height: 22px; }
.kpr-feat strong { display: block; color: var(--white); margin-bottom: 0.25rem; }
.kpr-feat p { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.kpr-calc { padding: 2rem; border-radius: var(--border-radius-lg); }
.calc-title { color: var(--white); font-size: 1.3rem; font-weight: 700; margin-bottom: 1.5rem; }
.calc-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.82rem; color: rgba(255,255,255,0.7); font-weight: 500; }
.form-group input[type="number"] {
  padding: 0.65rem 0.9rem 0.65rem 2.5rem;
  background: rgba(255,255,255,0.08); border: 1.5px solid rgba(168,195,160,0.2);
  border-radius: var(--border-radius-sm); color: var(--white); font-size: 0.95rem;
  transition: var(--transition);
}
.form-group input[type="number"]:focus { border-color: var(--sage-green); background: rgba(255,255,255,0.12); }

/* ----- Harga Rumah KPR Input (clean Rp prefix design) ----- */
.kpr-input-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(168,195,160,0.2);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.kpr-input-wrap:focus-within {
  border-color: var(--sage-green);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(168,195,160,0.15);
}
.kpr-rp-prefix {
  flex-shrink: 0;
  padding: 0 0.9rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--sage-green);
  background: rgba(168,195,160,0.15);
  border-right: 1.5px solid rgba(168,195,160,0.2);
  height: 100%;
  display: flex;
  align-items: center;
  min-height: 46px;
  letter-spacing: 0.02em;
  user-select: none;
}
.kpr-input-wrap input[type="text"] {
  flex: 1;
  padding: 0.75rem 0.9rem;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  width: 100%;
  min-width: 0;
}
.kpr-input-wrap input[type="text"]::placeholder {
  color: rgba(255,255,255,0.35);
  font-weight: 400;
  font-size: 0.88rem;
}

.range-slider {
  -webkit-appearance: none; width: 100%; height: 4px;
  background: rgba(168,195,160,0.2); border-radius: 2px; outline: none;
  margin-top: 0.4rem;
}
.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 16px; height: 16px;
  background: var(--sage-green); border-radius: 50%; cursor: pointer;
  border: 2px solid var(--white); box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: var(--transition);
}
.range-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.calc-results {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
  margin: 1.5rem 0;
}
.result-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(168,195,160,0.15);
  padding: 1rem; border-radius: var(--border-radius-sm);
  display: flex; flex-direction: column; gap: 0.3rem;
  transition: var(--transition);
}
.result-card.highlight {
  background: linear-gradient(135deg, rgba(199,167,108,0.2), rgba(199,167,108,0.1));
  border-color: rgba(199,167,108,0.4); grid-column: span 2;
}
.res-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); }
.res-val { font-size: 1.1rem; font-weight: 700; color: var(--white); }
.result-card.highlight .res-val { font-size: 1.4rem; color: var(--accent-gold); }
.btn-wa-calc {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: #25D366; color: white;
  padding: 0.9rem; border-radius: var(--border-radius-sm);
  font-weight: 600; font-size: 0.95rem; transition: var(--transition);
}
.btn-wa-calc:hover { background: #1eb858; transform: translateY(-2px); }

/* ===== GALLERY ===== */
.gallery-tabs {
  display: flex; gap: 0.5rem;
  margin-bottom: 2rem; justify-content: center;
  flex-wrap: wrap;
}
.gallery-tab {
  padding: 0.5rem 1.25rem; border-radius: 100px;
  font-size: 0.88rem; font-weight: 500;
  border: 1.5px solid rgba(168,195,160,0.4); color: var(--text-body);
  transition: var(--transition);
  white-space: nowrap; cursor: pointer;
}
.gallery-tab:hover, .gallery-tab.active { background: var(--dark-green); color: white; border-color: var(--dark-green); }
.gallery-masonry {
  columns: 3; column-gap: 1.25rem;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 1.25rem;
  border-radius: var(--border-radius); overflow: hidden;
  cursor: pointer; position: relative;
  transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; display: block; }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(44,66,50,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { color: white; width: 32px; height: 32px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(0,0,0,0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px; background: rgba(255,255,255,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.25rem; z-index: 10;
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; background: rgba(255,255,255,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; transition: var(--transition); z-index: 10;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }
.lightbox-content { max-width: 90vw; max-height: 85vh; text-align: center; }
.lightbox-content img { max-width: 100%; max-height: 80vh; border-radius: var(--border-radius); object-fit: contain; }
.lightbox-content p { color: rgba(255,255,255,0.7); margin-top: 1rem; }
.lightbox-close i, .lightbox-prev i, .lightbox-next i { width: 20px; height: 20px; }

/* ===== TESTIMONIALS ===== */
.testimonial-swiper { padding-bottom: 3rem !important; }
.testimonial-slide {
  background: var(--white); border-radius: var(--border-radius-lg);
  padding: 2rem; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 1.25rem;
}
.test-stars { color: #F4C430; display: flex; gap: 0.25rem; }
.test-stars i { width: 18px; height: 18px; fill: currentColor; }
.test-quote { font-size: 0.95rem; color: var(--text-body); line-height: 1.8; font-style: italic; }
.test-profile { display: flex; align-items: center; gap: 0.85rem; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--mint-green); }
.test-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-green), var(--soft-olive));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0;
}
.test-name { font-weight: 700; font-size: 0.95rem; color: var(--dark-green); }
.test-project { font-size: 0.78rem; color: var(--text-muted); }
.testimonial-nav {
  display: flex; gap: 1rem; justify-content: center; margin-top: 1rem;
}
.swiper-button-prev-custom, .swiper-button-next-custom {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--dark-green); color: white;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.swiper-button-prev-custom:hover, .swiper-button-next-custom:hover { background: var(--soft-olive); }
.swiper-button-prev-custom i, .swiper-button-next-custom i { width: 18px; height: 18px; }
.swiper-pagination-bullet { background: var(--sage-green) !important; opacity: 0.4; }
.swiper-pagination-bullet-active { opacity: 1 !important; }

/* ===== FAQ ===== */
.faq-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border: 1.5px solid rgba(168,195,160,0.35); border-radius: var(--border-radius); overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: var(--sage-green); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.5rem; cursor: pointer;
  font-weight: 600; font-size: 0.95rem; color: var(--dark-green);
  transition: var(--transition);
}
.faq-question:hover { background: var(--mint-green); }
.faq-icon { width: 22px; height: 22px; color: var(--soft-olive); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 1.5rem 1.25rem; color: var(--text-body); font-size: 0.92rem; line-height: 1.8; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; }
.contact-card { border-radius: var(--border-radius-lg); overflow: hidden; }
.contact-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.5rem; transition: var(--transition);
  border-bottom: 1px solid rgba(168,195,160,0.1);
}
.contact-item:last-child { border-bottom: none; }
.contact-item:hover { background: rgba(168,195,160,0.1); }
.ci-icon {
  width: 44px; height: 44px; border-radius: var(--border-radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ci-icon i { width: 20px; height: 20px; color: white; }
.wa-icon { background: #25D366; }
.ig-icon { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.email-icon { background: var(--sage-green); }
.loc-icon { background: var(--accent-gold); }
.ci-body { flex: 1; }
.ci-label { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.55); }
.ci-val { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.9); font-weight: 500; }
.ci-arrow { color: rgba(255,255,255,0.3); width: 16px; height: 16px; }
.map-wrap { margin-top: 1.5rem; border-radius: var(--border-radius); overflow: hidden; }

.contact-form { padding: 2rem; border-radius: var(--border-radius-lg); }
.form-title { color: white; font-size: 1.3rem; font-weight: 700; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-section .form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.contact-section .form-group label { font-size: 0.82rem; color: rgba(255,255,255,0.65); font-weight: 500; }
.contact-section .form-group input,
.contact-section .form-group select,
.contact-section .form-group textarea {
  padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.08); border: 1.5px solid rgba(168,195,160,0.2);
  border-radius: var(--border-radius-sm); color: var(--white); font-size: 0.9rem;
  transition: var(--transition);
}
.contact-section .form-group input:focus,
.contact-section .form-group select:focus,
.contact-section .form-group textarea:focus { border-color: var(--sage-green); background: rgba(255,255,255,0.12); }
.contact-section .form-group input::placeholder,
.contact-section .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.contact-section select option { background: var(--darker-green); color: white; }
.btn-submit {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  width: 100%; background: #25D366; color: white;
  padding: 1rem; border-radius: var(--border-radius-sm);
  font-weight: 700; font-size: 1rem; transition: var(--transition);
}
.btn-submit:hover { background: #1eb858; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
.btn-submit i { width: 20px; height: 20px; }

/* ===== FOOTER ===== */
.footer { background: var(--darker-green); }
.footer-top { padding: 5rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-logo { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.25rem; }
.footer-logo-name { font-size: 1.1rem; font-weight: 800; color: white; }
.footer-logo-sub { font-size: 0.75rem; color: var(--sage-green); }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px; height: 38px; border-radius: var(--border-radius-sm);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-link i { width: 18px; height: 18px; color: white; }
.social-link.wa { background: #25D366; }
.social-link.ig { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.social-link.em { background: var(--sage-green); }
.social-link:hover { transform: translateY(-3px) scale(1.1); }
.footer-nav-title { font-size: 0.85rem; font-weight: 700; color: white; margin-bottom: 1.25rem; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-nav a:hover { color: var(--sage-green); padding-left: 4px; }
.fc-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.85rem; }
.fc-item i { width: 16px; height: 16px; color: var(--sage-green); flex-shrink: 0; margin-top: 2px; }
.fc-item span { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(168,195,160,0.1); padding: 1.5rem 0;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom strong { color: rgba(255,255,255,0.7); }
.heart { color: var(--accent-gold); }

/* ===== FLOATING WA BUTTON ===== */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 1500;
  width: 60px; height: 60px; background: #25D366; color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }
.wa-pulse {
  position: absolute; inset: -8px;
  border: 2px solid #25D366; border-radius: 50%;
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.5); opacity: 0; } }
.wa-tooltip {
  position: absolute; right: calc(100% + 12px);
  background: var(--darker-green); color: white;
  padding: 0.4rem 0.85rem; border-radius: 100px;
  font-size: 0.8rem; font-weight: 500; white-space: nowrap;
  opacity: 0; transform: translateX(5px);
  transition: var(--transition); pointer-events: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 6rem; right: 2rem; z-index: 1500;
  width: 44px; height: 44px; background: var(--dark-green); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); transition: var(--transition);
  opacity: 0; pointer-events: none;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--soft-olive); transform: translateY(-3px); }
.back-to-top i { width: 20px; height: 20px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ========================================
   TABLET SPECIFIC (601px – 900px)
   Covers: iPad Mini, iPad Air, Galaxy Tab,
   Xiaomi Pad, Redmi Pad, Tab S, Tab A, etc.
   ======================================== */
@media (min-width: 601px) and (max-width: 900px) {
  /* Navbar */
  #navbar { padding: 0.65rem 0; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(255,255,255,0.98); flex-direction: column; padding: 1.25rem 1.5rem; box-shadow: var(--shadow-lg); gap: 0.15rem; border-radius: 0 0 var(--border-radius) var(--border-radius); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .btn-wa-nav { display: none; }

  /* Hero */
  .hero-section { padding: 120px 0 50px; min-height: 85vh; }
  .hero-title { font-size: clamp(2.2rem, 5vw, 3rem); }
  .hero-subtitle { font-size: 1rem; max-width: 90%; }
  .hero-buttons { gap: 0.75rem; flex-wrap: wrap; }
  .hero-stats { gap: 1.5rem; padding: 1rem 1.5rem; flex-wrap: wrap; }
  .hero-stat-num { font-size: 1.6rem; }

  /* About – side by side on tablet */
  .about-grid { grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
  .about-img-wrap { max-width: 100%; }
  .about-img-frame { aspect-ratio: 3/4; }
  .about-badge-card { bottom: -12px; right: -12px; }
  .about-badge-card2 { top: 20px; left: -15px; }
  .about-title, .section-title { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
  .about-contacts { gap: 0.5rem; }
  .contact-chip { font-size: 0.78rem; padding: 0.4rem 0.75rem; }

  /* Stats Row */
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-card { padding: 1.5rem 1rem; }
  .stat-number { font-size: 2rem; }

  /* Projects – 2 columns on tablet */
  .projects-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .project-name { font-size: 1.1rem; }
  /* Always show overlay detail button on tablet (touch devices) */
  .project-overlay { opacity: 1; background: rgba(44,66,50,0.5); }
  .project-detail-btn { transform: translateY(0); font-size: 0.8rem; padding: 0.55rem 1.1rem; }

  /* KPR Calculator – stacked */
  .kpr-grid { grid-template-columns: 1fr; gap: 2rem; }
  .kpr-info { order: 2; }
  .kpr-calc { order: 1; }

  /* Filter Bar – 2x2 grid */
  .filter-bar { grid-template-columns: 1fr 1fr; gap: 0.85rem; padding: 1.25rem; }

  /* Gallery */
  .gallery-masonry { columns: 2; column-gap: 1rem; }
  .gallery-tabs { gap: 0.5rem; justify-content: center; }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  /* Modal */
  .modal-box { max-width: 90vw; max-height: 88vh; }
  .modal-hero { height: 200px; }
  .modal-hero-title h2 { font-size: 1.5rem; }
  .modal-specs { grid-template-columns: repeat(2, 1fr); }
  .modal-features-grid { grid-template-columns: 1fr 1fr; }
  .modal-body { padding: 1.5rem; }

  /* Price section */
  .price-cards-mobile { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

/* ====================================
   GENERAL MOBILE/SMALL (≤ 600px)
   ==================================== */
@media (max-width: 600px) {
  .section-pad { padding: 50px 0; }
  .hero-title { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-primary, .hero-buttons .btn-secondary, .hero-buttons .btn-wa { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .hero-stat-divider { width: 60px; height: 1px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { columns: 1; }
  .filter-bar { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .modal-features-grid { grid-template-columns: 1fr; }
  .modal-specs { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .about-badge-card, .about-badge-card2 { display: none; }
  .projects-grid { grid-template-columns: 1fr; }
  /* Always show overlay on small touch screens */
  .project-overlay { opacity: 1; background: rgba(44,66,50,0.45); }
  .project-detail-btn { transform: translateY(0); }
}

/* ====================================
   KEEP ≤900px GENERAL FIXES
   ==================================== */
@media (max-width: 900px) {
  .section-pad { padding: 70px 0; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; flex-direction: column; padding: 1.5rem; box-shadow: var(--shadow-lg); gap: 0.25rem; border-radius: 0 0 var(--border-radius) var(--border-radius); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .btn-wa-nav { display: none; }
  .hero-stats { gap: 1.25rem; padding: 1rem 1.5rem; }
  .modal-specs { grid-template-columns: repeat(2, 1fr); }
}


/* ===== PARTICLE DOTS ===== */
.particle {
  position: absolute; border-radius: 50%;
  animation: float linear infinite;
  pointer-events: none;
}
@keyframes float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* ===================================================
   ENHANCED MOBILE FIXES + IMPROVED COLOR/TYPOGRAPHY
   =================================================== */

/* ----- Better Typography Across Screen Sizes ----- */
:root {
  --font-size-base: 15px;
  --line-height-base: 1.72;
  --text-dark: #1B2E22;
  --text-body: #3D5247;
  --text-muted: #6B8278;
  --bg-primary: #F4F8F3;
  --mint-green: #E0ECDB;
  --card-bg: #FFFFFF;
  --border-light: rgba(141,170,123,0.2);
}

html { font-size: var(--font-size-base); }
body { line-height: var(--line-height-base); -webkit-font-smoothing: antialiased; }

/* ----- Improved Section Descriptions ----- */
.section-desc { color: var(--text-body); font-size: 1.0rem; line-height: 1.75; }
.section-title { color: var(--dark-green); }
p { color: var(--text-body); line-height: 1.75; }

/* ----- Better Card Backgrounds ----- */
.project-card { background: var(--card-bg); }

/* ----- Price Cards on Mobile (≤900px) - Premium Card Design ----- */
@media (max-width: 900px) {
  /* Hide the table wrapper border/overflow on mobile */
  .table-wrap {
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    background: transparent;
  }

  /* Hide the actual table */
  .price-table {
    display: none !important;
  }

  /* Show card grid instead */
  .price-cards-mobile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  /* Each price card */
  .price-card-m {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1.5px solid rgba(168,195,160,0.2);
    transition: var(--transition);
  }
  .price-card-m:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sage-green);
  }

  /* Card header - colored by project */
  .pcm-header {
    padding: 0.85rem 1rem;
    position: relative;
  }
  .pcm-header.type-springs   { background: linear-gradient(135deg, #3E5C46, #5a7a5f); }
  .pcm-header.type-lagoon    { background: linear-gradient(135deg, #2C4232, #3E5C46); }
  .pcm-header.type-ruko      { background: linear-gradient(135deg, #7a5c2c, #C7A76C); }
  .pcm-header.type-sapphire  { background: linear-gradient(135deg, #2c3e7a, #4a5fa8); }

  .pcm-project {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 0.2rem;
  }
  .pcm-type {
    font-size: 0.88rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
  }
  .pcm-status {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 100px;
    letter-spacing: 0.05em;
  }
  .pcm-status.available { background: rgba(255,255,255,0.2); color: #d4f7d4; }
  .pcm-status.limited   { background: rgba(255,200,0,0.25); color: #ffe68a; }
  .pcm-status.soldout   { background: rgba(255,60,60,0.25); color: #ffb3b3; }

  /* Card body */
  .pcm-body {
    padding: 0.85rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }

  /* Price highlight */
  .pcm-price {
    text-align: center;
    padding: 0.6rem;
    background: linear-gradient(135deg, rgba(199,167,108,0.12), rgba(199,167,108,0.05));
    border: 1px solid rgba(199,167,108,0.3);
    border-radius: var(--border-radius-sm);
  }
  .pcm-price-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .pcm-price-val {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark-green);
    display: block;
    margin-top: 0.1rem;
  }

  /* Specs grid 2x2 */
  .pcm-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 0.6rem;
  }
  .pcm-spec {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
  }
  .pcm-spec-label {
    font-size: 0.63rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-muted);
  }
  .pcm-spec-val {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
  }

  /* WA Button */
  .pcm-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: #25D366;
    color: white;
    padding: 0.65rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    margin-top: auto;
  }
  .pcm-btn:hover { background: #1eb858; }
  .pcm-btn svg, .pcm-btn i { width: 14px; height: 14px; color: white; }
}

/* On very small phones: 1 column card layout */
@media (max-width: 480px) {
  .price-cards-mobile {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .pcm-type { font-size: 0.85rem; }
  .pcm-price-val { font-size: 1rem; }
}

/* On tablets (641-900px): 2 columns work well, keep as-is */


/* ----- Improved Filter Bar Mobile ----- */
@media (max-width: 640px) {
  .filter-bar {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.25rem;
  }
  .filter-group { width: 100%; }
  .filter-group label { font-size: 0.75rem; }
  .filter-group input,
  .filter-group select {
    height: 42px;
    font-size: 0.9rem;
    padding: 0 0.85rem;
    border-radius: var(--border-radius-sm);
  }
}

/* ----- Mobile Hero Fixes ----- */
@media (max-width: 640px) {
  .hero-section { min-height: 100svh; }
  .hero-title { font-size: clamp(1.75rem, 7vw, 2.2rem); line-height: 1.25; }
  .hero-subtitle { font-size: 0.9rem; }
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
  }
  .hero-stat { min-width: calc(50% - 0.75rem); }
  .hero-stat-num { font-size: 1.5rem; }
  .hero-stat-divider { display: none; }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary,
  .hero-buttons .btn-wa {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.25rem;
    font-size: 0.92rem;
  }
}

/* ----- Mobile Navbar Improvements ----- */
@media (max-width: 900px) {
  #navbar { padding: 0.65rem 0; }
  .nav-logo-text { font-size: 1rem; }
  .nav-links {
    background: rgba(255,255,255,0.98);
    border-bottom: 2px solid var(--border-light);
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.1rem;
  }
  .nav-link {
    padding: 0.7rem 0.5rem;
    font-size: 0.97rem;
    border-bottom: 1px solid var(--border-light);
  }
  .nav-link:last-child { border-bottom: none; }
}

/* ----- Mobile About Section ----- */
@media (max-width: 640px) {
  .about-grid { gap: 2rem; }
  .about-img-wrap { max-width: 100%; border-radius: var(--border-radius); }
  .about-highlights { grid-template-columns: 1fr 1fr; }
  .about-title { font-size: 1.7rem; }
  .about-badge-card, .about-badge-card2 { display: none; }
}

/* ----- Mobile Projects Grid ----- */
@media (max-width: 640px) {
  .projects-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .project-name { font-size: 1.1rem; }
  .project-desc { font-size: 0.88rem; }
  .project-features { gap: 0.4rem; }
  .feat-tag { font-size: 0.75rem; padding: 0.25rem 0.55rem; }
  .price-val { font-size: 1rem; }
}

/* ----- Mobile Gallery ----- */
@media (max-width: 640px) {
  .gallery-masonry { columns: 1; gap: 0.75rem; }
  .gallery-tabs { gap: 0.4rem; flex-wrap: wrap; justify-content: center; }
  .gallery-tab { font-size: 0.78rem; padding: 0.35rem 0.75rem; }
}

/* ----- Mobile KPR Section ----- */
@media (max-width: 640px) {
  .kpr-grid { gap: 1.5rem; }
  .kpr-result-grid { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
  .result-card { padding: 0.85rem; }
  .result-num { font-size: 1rem; }
  .result-label { font-size: 0.72rem; }
  .kpr-note { font-size: 0.78rem; }
  .slider-group label { font-size: 0.82rem; }
}

/* ----- Mobile FAQ ----- */
@media (max-width: 640px) {
  .faq-question { font-size: 0.92rem; padding: 1rem; }
  .faq-answer-inner { font-size: 0.88rem; padding: 0 1rem 1rem; }
}

/* ----- Mobile Contact ----- */
@media (max-width: 640px) {
  .contact-grid { gap: 2rem; }
  .contact-info-title { font-size: 1.5rem; }
  .contact-form-wrap { padding: 1.5rem; }
  .form-control { font-size: 0.9rem; padding: 0.75rem 0.85rem; }
  .form-submit { font-size: 0.92rem; padding: 0.9rem; }
  .contact-chip { font-size: 0.82rem; padding: 0.5rem 0.75rem; }
}

/* ----- Mobile Testimonials ----- */
@media (max-width: 640px) {
  .test-quote { font-size: 0.88rem; }
  .testimonial-slide { padding: 1.5rem; }
  .testimonial-nav { gap: 0.75rem; }
}

/* ----- Mobile Stats Row ----- */
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .stat-card { padding: 1.25rem 0.75rem; }
  .stat-number { font-size: 1.8rem; }
  .stat-label { font-size: 0.75rem; }
}

/* ----- Mobile Modal ----- */
@media (max-width: 640px) {
  .modal-box { margin: 0; border-radius: var(--border-radius) var(--border-radius) 0 0; max-height: 95svh; }
  .modal-body { padding: 1rem 1.25rem 2rem; }
  .modal-section h3 { font-size: 1rem; }
  .modal-hero { height: 200px; }
  .modal-hero-title h2 { font-size: 1.4rem; }
  .modal-specs { grid-template-columns: 1fr 1fr; }
  .modal-features-grid { grid-template-columns: 1fr; }
  .modal-wa-btn { font-size: 0.9rem; padding: 1rem; }
}

/* ----- Mobile Footer ----- */
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-heading { font-size: 1rem; }
  .footer-bottom .container { flex-direction: column; gap: 0.5rem; text-align: center; }
  .footer-links-row { gap: 0.75rem; flex-wrap: wrap; }
}

/* ----- Floating Buttons Mobile ----- */
@media (max-width: 640px) {
  .wa-float { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
  .wa-float i { width: 24px; height: 24px; }
  .wa-tooltip { display: none; }
  .back-to-top { bottom: 5rem; right: 1.25rem; width: 40px; height: 40px; }
}

/* ----- Horizontal Scroll Prevention ----- */
section, .container, .nav-container { max-width: 100%; overflow-x: hidden; }
.price-table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ----- Improved Readability: Light Mode Contrast ----- */
.section-desc { color: #3D5247; }
.project-desc { color: #445C4A; font-size: 0.9rem; line-height: 1.7; }
.about-bio { color: #3D5247; font-size: 0.97rem; line-height: 1.85; }
.faq-answer-inner { color: #3D5247; line-height: 1.8; }
.test-quote { color: #3D5247; font-size: 0.9rem; line-height: 1.75; font-style: italic; }
.price-from { color: #6B8278; font-size: 0.75rem; }
.price-val { color: #2C4232; font-weight: 800; font-size: 1.05rem; }
.project-type { color: #8DAA7B; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.project-name { color: #1B2E22; font-size: 1.15rem; font-weight: 700; margin: 0.35rem 0 0.5rem; }

/* ----- Table Readability ----- */
.price-table th { background: var(--dark-green); color: white; font-size: 0.8rem; letter-spacing: 0.05em; padding: 0.9rem 0.75rem; }
.price-table td { color: #3D5247; font-size: 0.88rem; padding: 0.85rem 0.75rem; }
.price-table tbody tr:hover { background: var(--mint-green); }

/* ----- Input & Form Readability ----- */
.form-control { color: #1B2E22; background: white; font-size: 0.93rem; }
.form-control::placeholder { color: #8DAA7B; }
.form-label { color: var(--text-body); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.03em; }

/* ----- Touch target sizes for mobile ----- */
@media (max-width: 640px) {
  .btn-primary, .btn-secondary, .btn-wa, .btn-primary-gold { min-height: 48px; }
  .form-control { min-height: 48px; }
  .gallery-tab { min-height: 40px; }
  .faq-question { min-height: 52px; display: flex; align-items: center; }
  .nav-link { min-height: 44px; display: flex; align-items: center; }
}

/* ----- Fix for Lucide SVG conversion styling ----- */
.btn-wa-nav svg, .btn-wa-nav i { width: 15px; height: 15px; display: inline-block; vertical-align: middle; }
.contact-chip svg, .contact-chip i { width: 14px; height: 14px; display: inline-block; vertical-align: middle; }
.stat-icon svg, .stat-icon i { width: 32px; height: 32px; }
.project-location svg, .project-location i { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; color: var(--soft-olive); display: inline-block; }
.feat-tag svg, .feat-tag i { width: 12px; height: 12px; display: inline-block; vertical-align: middle; }
.btn-detail svg, .btn-detail i { width: 14px; height: 14px; display: inline-block; vertical-align: middle; }
.modal-close svg, .modal-close i { width: 18px; height: 18px; }
.modal-feature svg, .modal-feature i { color: var(--soft-olive); width: 16px; height: 16px; display: inline-block; vertical-align: middle; }
.modal-wa-btn svg, .modal-wa-btn i { width: 22px; height: 22px; display: inline-block; vertical-align: middle; }
.input-icon svg, .input-icon i { position: absolute; left: 0.85rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); width: 15px; height: 15px; pointer-events: none; }
.contact-wa-btn svg, .contact-wa-btn i { width: 12px; height: 12px; display: inline-block; vertical-align: middle; }
.kpr-feat-icon svg, .stat-icon svg, .kpr-feat-icon i { width: 22px; height: 22px; }
.gallery-item-overlay svg, .gallery-item-overlay i { color: white; width: 32px; height: 32px; }
.lightbox-close svg, .lightbox-close i, .lightbox-prev svg, .lightbox-prev i, .lightbox-next svg, .lightbox-next i { width: 20px; height: 20px; }
.test-stars svg, .test-stars i { width: 18px; height: 18px; fill: currentColor; display: inline-block; }
.swiper-button-prev-custom svg, .swiper-button-prev-custom i, .swiper-button-next-custom svg, .swiper-button-next-custom i { width: 18px; height: 18px; }
.ci-icon svg, .ci-icon i { width: 20px; height: 20px; color: white !important; display: block; }
.btn-submit svg, .btn-submit i { width: 20px; height: 20px; display: inline-block; vertical-align: middle; }
.social-link svg, .social-link i { width: 18px; height: 18px; color: white !important; display: block; }
.fc-item svg, .fc-item i { width: 16px; height: 16px; color: var(--sage-green); flex-shrink: 0; margin-top: 2px; display: inline-block; }
.back-to-top svg, .back-to-top i { width: 20px; height: 20px; }
.wa-float svg, .wa-float i { width: 24px; height: 24px; }
svg.lucide { stroke: currentColor; fill: none; stroke-width: 2px; }

/* ===== MOBILE GALLERY & LIGHTBOX TOUCH IMPROVEMENTS ===== */

/* On touch screens, always show the zoom overlay (no hover state available on mobile) */
@media (hover: none) and (pointer: coarse) {
  .gallery-item-overlay {
    opacity: 1 !important;
    background: rgba(44,66,50,0.4) !important;
  }
  .gallery-item-overlay svg,
  .gallery-item-overlay i {
    color: white !important;
    opacity: 0.9;
  }
  .gallery-item:active {
    transform: scale(0.97);
  }
}

/* Gallery tabs: horizontal scroll on very small screens */
@media (max-width: 400px) {
  .gallery-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .gallery-tabs::-webkit-scrollbar { display: none; }
  .gallery-tab { flex-shrink: 0; }
}

/* Lightbox image - better fit on mobile */
@media (max-width: 640px) {
  .lightbox-content {
    max-width: 96vw;
    max-height: 90vh;
    padding: 0 0.5rem;
  }
  .lightbox-content img {
    max-width: 100%;
    max-height: 72vh;
    border-radius: var(--border-radius-sm);
    object-fit: contain;
  }
  .lightbox-close { top: 0.75rem; right: 0.75rem; }
  .lightbox-prev { left: 0.5rem; width: 40px; height: 40px; }
  .lightbox-next { right: 0.5rem; width: 40px; height: 40px; }
  .lightbox-content p { font-size: 0.82rem; }
}

/* Gallery masonry on tablet (2 cols = better for iPad) */
@media (min-width: 601px) and (max-width: 900px) {
  .gallery-masonry { columns: 2; column-gap: 1rem; }
}

/* ===================================================
   COMPREHENSIVE TABLET POLISH
   All iPad / Android Tablet / Pad Fixes
   =================================================== */

/* Touch-based devices: always show interactive overlays */
@media (hover: none) and (pointer: coarse) {
  /* Gallery overlay always visible */
  .gallery-item-overlay {
    opacity: 1 !important;
    background: rgba(44,66,50,0.38) !important;
  }
  .gallery-item-overlay svg,
  .gallery-item-overlay i { color: white !important; opacity: 0.95; }
  .gallery-item:active { transform: scale(0.97); }

  /* Project overlay always visible on touch */
  .project-overlay {
    opacity: 1 !important;
    background: rgba(44,66,50,0.45) !important;
  }
  .project-detail-btn { transform: translateY(0) !important; }
  .project-card:active { transform: translateY(-4px); }

  /* Larger touch targets for all tabs/buttons */
  .gallery-tab { min-height: 44px; }
  .faq-question { min-height: 52px; }
  .nav-link { min-height: 48px; display: flex; align-items: center; }
  .btn-primary, .btn-secondary, .btn-wa, .btn-detail, .pcm-btn { min-height: 48px; }
}

/* Lightbox on tablet — optimized for landscape and portrait */
@media (min-width: 601px) and (max-width: 900px) {
  .lightbox-content {
    max-width: 88vw;
    max-height: 88vh;
    padding: 0 1rem;
  }
  .lightbox-content img {
    max-width: 100%;
    max-height: 78vh;
    border-radius: var(--border-radius);
    object-fit: contain;
  }
  .lightbox-close { top: 1rem; right: 1rem; }
  .lightbox-prev { left: 1rem; width: 44px; height: 44px; }
  .lightbox-next { right: 1rem; width: 44px; height: 44px; }
}

/* Images: proper aspect ratio and fit on tablet */
@media (min-width: 601px) and (max-width: 900px) {
  .project-img-wrap { aspect-ratio: 16/9; }
  .about-img-frame { aspect-ratio: 3/4; }
  .hero-img { object-position: center center; }
  .modal-hero img { object-fit: cover; }
}

/* Price card grid on tablet – confirmed 2 columns */
@media (min-width: 601px) and (max-width: 900px) {
  .price-cards-mobile {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .pcm-price-val { font-size: 1rem; }
  .pcm-type { font-size: 0.85rem; }
  .pcm-project { font-size: 0.65rem; }
}

/* Testimonial swiper on tablet: 2 slides */
@media (min-width: 601px) and (max-width: 900px) {
  .testimonial-slide { padding: 1.5rem; }
  .test-quote { font-size: 0.88rem; }
}

/* Large tablet / iPad Pro (landscape > 900px) */
@media (min-width: 901px) and (max-width: 1100px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .price-cards-mobile { display: none; }
}

/* Prevent horizontal overflow on all tablet sizes */
@media (max-width: 1024px) {
  * { max-width: 100vw; }
  body { overflow-x: hidden; }
  .hero-section, section, .container { max-width: 100%; overflow-x: hidden; }
  img { max-width: 100%; height: auto; }
}
