/* ============================================
   ARCHREATIVE — Premium Architecture Studio
   Main Stylesheet
   ============================================ */

/* --- Variables --- */
:root {
  --white: #FFFFFF;
  --dark-green: #0F3B34;
  --green-light: #1a5247;
  --charcoal: #1A1A1A;
  --soft-gray: #F5F5F5;
  --mid-gray: #888888;
  --border-gray: #E0E0E0;
  --gold: #C8A96B;
  --gold-light: #d4b97a;
  --font-serif: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
  --shadow-sm: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
*:focus { outline: none !important; box-shadow: none !important; }
*:focus-visible { outline: none !important; box-shadow: none !important; }

html { font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.15; font-weight: 700; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }
p { font-size: 1rem; color: #555; line-height: 1.75; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

/* --- Layout Helpers --- */
.container { max-width: 1440px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }
.section--gray { background: var(--soft-gray); }
.section--dark { background: var(--charcoal); color: var(--white); }
.section--green { background: var(--dark-green); color: var(--white); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 10px;
  transition: var(--transition);
  cursor: pointer;
}

.btn--primary {
  background: var(--dark-green);
  color: var(--white);
  border: 2px solid var(--dark-green);
}
.btn--primary:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--gold {
  background: var(--gold);
  color: var(--charcoal);
  border: 2px solid var(--gold);
  font-weight: 700;
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,169,107,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--dark-green);
  border: 2px solid var(--dark-green);
}
.btn--outline-dark:hover {
  background: var(--dark-green);
  color: var(--white);
  transform: translateY(-2px);
}

/* Arrow icon in buttons */
.btn svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.btn:hover svg { transform: translateX(4px); }

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px) saturate(180%) brightness(1.05);
  -webkit-backdrop-filter: blur(20px) saturate(180%) brightness(1.05);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(48px) saturate(200%) brightness(1.1);
  -webkit-backdrop-filter: blur(48px) saturate(200%) brightness(1.1);
  border-bottom: 1px solid rgba(255,255,255,0.45);
  padding: 1rem 0;
  box-shadow: 0 2px 32px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.6);
}
.navbar.scrolled .nav-logo { color: var(--dark-green); }
.navbar.scrolled .nav-link { color: var(--charcoal); }
.navbar.scrolled .nav-link:hover { color: var(--dark-green); }
.navbar.scrolled .nav-cta { background: var(--dark-green); color: var(--white); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  position: relative;
  padding-bottom: 2px;
  transition: var(--transition-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }
.nav-link.active::after { width: 100%; }

.nav-cta {
  padding: 0.6rem 1.6rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
}
.nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
  transform: translateY(-1px);
}

/* Language Switch */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.lang-switch button {
  background: none;
  border: none;
  padding: 0.2rem 0.1rem;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
}
.lang-switch .flag {
  display: inline-block;
  width: 1.15em;
  height: 0.85em;
  border-radius: 2px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.25);
  flex-shrink: 0;
}
.lang-switch .flag-id {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'><rect width='3' height='1' fill='%23CE1126'/><rect y='1' width='3' height='1' fill='%23FFFFFF'/></svg>");
}
.lang-switch .flag-gb {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 36'><rect width='60' height='36' fill='%2300247D'/><path d='M0,0 L60,36 M60,0 L0,36' stroke='%23FFFFFF' stroke-width='7'/><path d='M0,0 L60,36 M60,0 L0,36' stroke='%23CF142B' stroke-width='4'/><path d='M30,0 V36 M0,18 H60' stroke='%23FFFFFF' stroke-width='11'/><path d='M30,0 V36 M0,18 H60' stroke='%23CF142B' stroke-width='6.5'/></svg>");
}
.lang-switch button:hover { color: rgba(255,255,255,0.9); }
.lang-switch button.active { color: var(--gold); }
.lang-switch .lang-sep { color: rgba(255,255,255,0.35); }
.navbar.scrolled .lang-switch button { color: var(--mid-gray); }
.navbar.scrolled .lang-switch button:hover { color: var(--charcoal); }
.navbar.scrolled .lang-switch button.active { color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: left;
}
.navbar.scrolled .hamburger span { background: var(--charcoal); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translateY(-1px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translateY(1px); }

/* Mobile Nav Dropdown */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: auto;
  max-height: 82vh;
  background: #fff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0 1.5rem 2rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  border-radius: 0 0 20px 20px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
/* Top bar: logo + close */
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  flex-shrink: 0;
  border-bottom: 1px solid var(--border-gray);
  margin-bottom: .5rem;
}
.mobile-menu-logo { height: 28px; width: auto; }
.mobile-close {
  color: var(--charcoal);
  font-size: 1.2rem;
  cursor: pointer;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1.5px solid var(--border-gray);
  background: transparent;
  line-height: 1;
  transition: background 0.2s;
}
.mobile-close:hover { background: var(--soft-gray); }
/* Nav links */
.mobile-menu a {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-green);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-gray);
  transition: color 0.2s, padding-left 0.2s;
  position: relative;
}
.mobile-menu a:hover { color: var(--gold); padding-left: 6px; }
/* CTA button inside menu */
.mobile-menu-cta {
  display: block;
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--dark-green);
  color: #fff !important;
  font-family: var(--font-sans) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  text-align: center;
  border-radius: 10px;
  border-bottom: none !important;
  transition: background 0.2s !important;
}
.mobile-menu-cta:hover { background: #0a2d28; color: #fff !important; padding-left: 0 !important; }
/* Language switcher */
.mobile-menu .lang-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.82rem;
}
.mobile-menu .lang-switch button { color: var(--mid-gray); font-weight: 600; }
.mobile-menu .lang-switch button.active { color: var(--dark-green); }

/* ============================================
   HOME PAGE
   ============================================ */

/* Hero */
/* ── HOME PAGE SKIN ───────────────────────────────────────────────── */
body.home-page {
  background: #fff;
}

/* ── HERO CARD ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  margin: 0 1.5rem;
  margin-top: calc(68px + 1rem);
  height: calc(100vh - 68px - 2.5rem);
  min-height: 520px;
  border-radius: 22px;
  overflow: hidden;
}

.hero-image-placeholder {
  position: absolute;
  inset: 0;
  background: var(--dark-green);
  z-index: 0;
}

.hero-inner {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 2;
  padding: 3rem 2.5rem 0;
  max-width: 580px;
}

.hero-content { max-width: 540px; }

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.hero-label::before { content: ''; width: 32px; height: 1.5px; background: var(--gold); }

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1.2rem;
  font-weight: 700;
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-subtitle {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.75);
  max-width: 420px;
  margin-bottom: 2rem;
  line-height: 1.72;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Consultation Bar (pinned bottom inside hero card) ────────────── */
.hero-consult-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 1.5rem;
}
.consult-inner {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}
.consult-cta-group {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.75rem 0.7rem 1.1rem;
  flex-shrink: 0;
}
.consult-cta-btn {
  padding: 0.58rem 1rem;
  border-radius: 8px;
  font-size: 0.81rem;
  font-weight: 600;
  font-family: var(--font-sans);
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background .2s, transform .15s, border-color .2s, color .2s;
  border: 1.5px solid transparent;
}
.consult-cta-dark { background: #111; color: #fff; border-color: #111; }
.consult-cta-dark:hover { background: var(--dark-green); border-color: var(--dark-green); transform: translateY(-1px); }
.consult-cta-outline { background: transparent; color: #111; border-color: #111; }
.consult-cta-outline:hover { background: #111; color: #fff; transform: translateY(-1px); }
.consult-fields {
  display: flex;
  align-items: center;
  padding: 0.4rem 0.75rem 0.4rem 0;
  gap: 0;
}
.consult-field {
  flex: 1;
  min-width: 140px;
  padding: 0.55rem 1.25rem;
}
.consult-field label {
  display: block;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #aaa;
  margin-bottom: 0.28rem;
  font-weight: 600;
}
.consult-field select {
  width: 100%;
  border: none;
  outline: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: #111;
  background: none;
  cursor: pointer;
  font-family: var(--font-sans);
  -webkit-appearance: none;
  appearance: none;
}
.consult-sep { width: 1px; height: 36px; background: #e8e8e8; flex-shrink: 0; }
.btn-consult {
  background: #111;
  color: #fff;
  padding: 0.85rem 1.6rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.86rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  text-decoration: none;
  transition: background .2s, transform .15s;
  flex-shrink: 0;
  margin: 0.4rem 0.75rem 0.4rem 0.5rem;
}
.btn-consult:hover { background: var(--dark-green); transform: translateY(-1px); }

/* ── Hero Stat Cards ─────────────────────────────────────────────── */
.hero-stat-cards { background: #eceae5; padding: 1.5rem 1.5rem 2.5rem; }
.stat-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.stat-card {
  border-radius: 20px;
  padding: 2rem 2rem 1.8rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 160px;
}
.stat-card--light {
  background: #fff;
  color: #111;
}
.stat-card--mid {
  background: var(--dark-green);
  color: #fff;
}
.stat-card--dark { background: #111; color: #fff; }
.stat-card-text { position: relative; z-index: 1; }
.stat-card-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}
.stat-card--light .stat-card-num { color: #111; }
.stat-card--mid .stat-card-num,
.stat-card--dark .stat-card-num { color: #fff; }
.stat-card-label {
  font-size: 0.8rem;
  margin-top: 0.4rem;
  opacity: 0.6;
}
.stat-card-avatars { display: flex; align-items: center; align-self: flex-end; }
.stat-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  margin-left: -10px;
  flex-shrink: 0;
}
.stat-avatar:first-child { margin-left: 0; }
.stat-card-brand {
  position: absolute;
  right: 1.2rem; bottom: 1rem;
  font-size: 2.6rem;
  font-weight: 800;
  color: rgba(255,255,255,0.06);
  font-family: var(--font-serif);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.02em;
  line-height: 1;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 6rem;
  right: 2rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- Featured Projects (Home) --- */
.featured-projects { background: var(--white); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 520px; margin: 0 auto; }
.section-divider {
  width: 60px; height: 2px;
  background: var(--gold);
  margin: 1.2rem auto 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 400px 280px;
  gap: 1.2rem;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  background: var(--soft-gray);
}
.project-card:nth-child(1) { grid-row: 1 / 3; }
.project-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.project-card:nth-child(3) { grid-column: 3; grid-row: 1; }
.project-card:nth-child(4) { grid-column: 2 / 4; grid-row: 2; }

.project-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.project-card:hover .project-card-bg { transform: scale(1.06); }

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,59,52,0.95) 0%, transparent 60%);
  opacity: 0.7;
  transition: opacity 0.4s ease;
}
.project-card:hover .project-card-overlay { opacity: 0.9; }

.project-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}
.project-card:hover .project-card-info { transform: translateY(0); }

.project-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.project-card-info h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}
.project-card-info p {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
}

.project-card-link {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transition: all 0.3s ease;
  transform: scale(0.8);
}
.project-card:hover .project-card-link {
  opacity: 1;
  transform: scale(1);
}

/* --- Company Intro (Home) --- */
.company-intro { background: var(--white); }
.company-intro .grid-2 { gap: 6rem; }
.company-intro-content { }
.company-intro-content h2 { margin-bottom: 1.5rem; }
.company-intro-content p { margin-bottom: 1.5rem; }
.intro-stats {
  display: flex;
  gap: 2.5rem;
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
}
.intro-stat-item { }
.intro-stat-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--dark-green);
  font-weight: 700;
  line-height: 1;
}
.intro-stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-top: 0.3rem;
}

.company-intro-image {
  position: relative;
}
.company-intro-image .main-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 16px;
  background: var(--dark-green);
}
.company-intro-image .accent-img {
  position: absolute;
  bottom: -3rem;
  left: -3rem;
  width: 55%;
  height: 220px;
  background: var(--soft-gray);
  border: 6px solid var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}
.company-intro-image .badge {
  position: absolute;
  top: 2rem; right: -2rem;
  background: var(--gold);
  color: var(--charcoal);
  padding: 1.2rem;
  text-align: center;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}
.badge-year { font-family: var(--font-serif); font-size: 2rem; display: block; }
.badge-text { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* --- Services Overview (Home) --- */
.services-overview {
  background: var(--soft-gray);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--dark-green);
}

.service-icon {
  width: 52px; height: 52px;
  background: var(--soft-gray);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--dark-green);
  color: var(--white);
}
.service-icon svg { width: 24px; height: 24px; color: var(--dark-green); transition: var(--transition); }
.service-card:hover .service-icon svg { color: var(--white); }

.service-card h3 { font-size: 1.15rem; margin-bottom: 0.8rem; }
.service-card p { font-size: 0.9rem; color: var(--mid-gray); margin-bottom: 1.5rem; }
.service-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-green);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}
.service-card:hover .service-link { gap: 0.8rem; color: var(--gold); }

/* --- Testimonials --- */
.testimonials { background: var(--dark-green); padding: 6rem 0; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.6;
}
.testimonial-text {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--charcoal);
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
}
.testimonial-location {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

/* --- CTA Section (Home) --- */
.cta-section {
  background: var(--charcoal);
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,169,107,0.08) 0%, transparent 70%);
  transform: translate(-50%, -50%);
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.page-hero {
  height: 100vh;
  min-height: 620px;
  background: var(--dark-green);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  z-index: 0;
}
.page-hero-content { position: relative; z-index: 1; width: 100%; }
.page-hero .eyebrow { color: var(--gold); font-size: 1.15rem; }
.page-hero h1 { color: var(--white); font-size: clamp(3.2rem, 7vw, 5.5rem); }
.page-hero p { color: var(--white); }
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
}
.page-breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.page-breadcrumb a:hover { color: var(--gold); }
.page-breadcrumb .sep { color: rgba(255,255,255,0.3); }

/* About intro */
.about-intro { }
.about-intro .grid-2 { gap: 6rem; }
.about-image-stack { position: relative; padding-bottom: 3rem; padding-right: 3rem; }
.about-img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  background: var(--dark-green);
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 50%; height: 260px;
  background: var(--gold);
  border: 5px solid var(--white);
  border-radius: 12px;
}
.established-badge {
  position: absolute;
  top: 2rem; right: 2rem;
  background: var(--charcoal);
  color: var(--white);
  padding: 1rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 12px;
  text-align: center;
}
.established-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
}

/* Vision / Mission */
.vision-mission { background: var(--soft-gray); }
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.vm-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 16px;
  border-top: 3px solid var(--dark-green);
  box-shadow: var(--shadow-sm);
}
.vm-card.mission { border-top-color: var(--gold); }
.vm-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--soft-gray);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
}
.vm-card h3 { margin-bottom: 1rem; color: var(--dark-green); }
.vm-card.mission h3 { color: #8a6a2e; }
.vm-card p { color: var(--mid-gray); }

/* Why Choose Us */
.why-us { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.why-card {
  padding: 2.5rem;
  border: 1px solid var(--border-gray);
  border-radius: 16px;
  position: relative;
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--dark-green);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}
.why-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--soft-gray);
  font-weight: 700;
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  line-height: 1;
}
.why-icon {
  width: 48px; height: 48px;
  background: var(--dark-green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.why-icon svg { width: 22px; height: 22px; color: var(--gold); }
.why-card h4 { font-size: 1.05rem; margin-bottom: 0.8rem; }
.why-card p { font-size: 0.88rem; color: var(--mid-gray); }

/* Workflow */
.workflow { background: var(--soft-gray); }
.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
  position: relative;
}
.workflow-steps::before {
  content: '';
  position: absolute;
  left: 2.8rem;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border-gray);
}

.workflow-step {
  display: flex;
  gap: 3rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-gray);
  position: relative;
  background: var(--soft-gray);
}
.workflow-step:last-child { border-bottom: none; }

.step-number {
  width: 56px; height: 56px;
  background: var(--white);
  border: 2px solid var(--border-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-green);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.workflow-step:hover .step-number {
  background: var(--dark-green);
  color: var(--white);
  border-color: var(--dark-green);
}

.step-content { padding-top: 0.7rem; }
.step-content h4 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--charcoal); }
.step-content p { font-size: 0.88rem; color: var(--mid-gray); }

/* Team */
.team { background: var(--white); }
.team-section-header { margin-bottom: 1rem; }
.team-category-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin: 3rem 0 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-gray);
}

.team-grid-commissioners,
.team-grid-experts,
.team-grid-civil,
.team-grid-arch,
.team-grid-marketing {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.team-grid-commissioners > .team-card,
.team-grid-experts > .team-card,
.team-grid-civil > .team-card,
.team-grid-arch > .team-card {
  flex: 0 1 calc((100% - 4rem) / 3);
  min-width: 180px;
}
.team-grid-marketing > .team-card {
  flex: 0 1 calc((100% - 6rem) / 4);
  min-width: 160px;
}

.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--soft-gray);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.team-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
  background: var(--dark-green);
  display: block;
  position: relative;
}

/* Placeholder portrait using CSS */
.team-portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  background: linear-gradient(145deg, var(--dark-green) 0%, #1a5247 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.team-portrait .initials {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: rgba(255,255,255,0.15);
  font-weight: 700;
  z-index: 1;
}
.team-portrait::after {
  content: none;
}

.team-card-body {
  padding: 1.5rem;
  background: var(--white);
}
.team-card-body h4 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.team-role {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Smaller card variant for marketing */
.team-card.small .team-portrait { aspect-ratio: 3 / 4; height: auto; }
.team-card.small .initials { font-size: 2.5rem; }
.team-card.small .team-card-body { padding: 1rem; }
.team-card.small h4 { font-size: 0.85rem; }

/* Coverage area */
.coverage { background: var(--dark-green); }
.coverage-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.coverage-tag {
  padding: 0.6rem 1.2rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  transition: var(--transition-fast);
}
.coverage-tag:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

/* Legality */
.legality { background: var(--soft-gray); }
.legality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.legality-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  border-left: 4px solid var(--dark-green);
  box-shadow: var(--shadow-sm);
}
.legality-card h4 { margin-bottom: 0.8rem; color: var(--dark-green); }
.legality-card p { font-size: 0.88rem; color: var(--mid-gray); }
.legality-badge {
  display: inline-block;
  background: var(--dark-green);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-detailed { }
.service-detail-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  padding: 5rem 0;
  border-bottom: 1px solid var(--border-gray);
}
.service-detail-item:last-child { border-bottom: none; }
.service-detail-item.reverse { direction: rtl; }
.service-detail-item.reverse > * { direction: ltr; }

.service-detail-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  background: var(--soft-gray);
  display: block;
}

.service-detail-content { }
.service-detail-content .eyebrow { margin-bottom: 0.5rem; }
.service-detail-content h2 { margin-bottom: 1.2rem; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.service-detail-content p { margin-bottom: 1.5rem; }

.service-features {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.service-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--charcoal);
}
.service-feature::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   PORTFOLIO PAGE
   ============================================ */
.portfolio-filter {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.55rem 1.4rem;
  border: 1.5px solid var(--border-gray);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid-gray);
  background: transparent;
  cursor: pointer;
  transition: var(--transition-fast);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--dark-green);
  border-color: var(--dark-green);
  color: var(--white);
}

.portfolio-masonry {
  columns: 3;
  column-gap: 1.5rem;
}
.portfolio-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}
.portfolio-img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
  background: var(--soft-gray);
  min-height: 200px;
}
.portfolio-item:hover .portfolio-img { transform: scale(1.04); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,59,52,0.95) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 { color: var(--white); font-size: 1rem; }
.portfolio-overlay .project-tag { margin-bottom: 0.3rem; }

/* Portfolio grid */
.portfolio-grid-uniform {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 320px;
  height: 320px;
  cursor: pointer;
  background: var(--soft-gray);
}
.portfolio-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}
.portfolio-card:hover .portfolio-card-bg { transform: scale(1.06); }
.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
  opacity: 0.6;
  transition: opacity 0.4s ease;
}
.portfolio-card:hover .portfolio-card-overlay { opacity: 0.9; }
.portfolio-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.8rem;
}
.portfolio-card-info h4 { color: var(--white); }
.portfolio-card-info .project-tag { margin-bottom: 0.3rem; }

/* Project Detail Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-content {
  background: var(--white);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 20px;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.modal-overlay.open .modal-content { transform: scale(1); }
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 10;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 5rem;
  align-items: start;
}

.contact-form-section { }
.contact-form-section h2 { margin-bottom: 0.5rem; }
.contact-form-section > p { margin-bottom: 0; }
.estimasi-main-section .contact-form-section > p { margin-bottom: 0; }

.form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.9rem 1.2rem;
  border: 1.5px solid var(--border-gray);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s ease;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--dark-green);
}
.form-group textarea { min-height: 140px; resize: vertical; }

.contact-info-section { padding-top: 1rem; }
.contact-info-section h3 { margin-bottom: 2rem; }

.contact-info-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-gray);
}
.contact-info-item:last-of-type { border-bottom: none; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--soft-gray);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.contact-info-item:hover .contact-info-icon { background: var(--dark-green); }
.contact-info-icon svg { width: 20px; height: 20px; color: var(--dark-green); transition: var(--transition); }
.contact-info-item:hover .contact-info-icon svg { color: var(--gold); }
.contact-info-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 0.3rem;
}
.contact-info-value { font-size: 0.95rem; color: var(--charcoal); }
.contact-info-value a { transition: color 0.2s; }
.contact-info-value a:hover { color: var(--dark-green); }

.whatsapp-cta {
  background: #25D366;
  color: var(--white);
  padding: 1rem 1.8rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  margin-bottom: 2.5rem;
  width: 100%;
  justify-content: center;
}
.whatsapp-cta:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}
.whatsapp-cta svg { width: 22px; height: 22px; }

.social-links { display: flex; gap: 1rem; }
.social-link {
  width: 40px; height: 40px;
  border: 1.5px solid var(--border-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid-gray);
  transition: var(--transition-fast);
}
.social-link:hover {
  background: var(--dark-green);
  border-color: var(--dark-green);
  color: var(--white);
}
.social-link svg { width: 16px; height: 16px; }

/* Map placeholder */
.map-section { background: var(--soft-gray); }
.map-container {
  width: 100%;
  height: 420px;
  background: var(--border-gray);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8f0ee 0%, #d4e4e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--dark-green);
}
.map-placeholder svg { width: 48px; height: 48px; opacity: 0.5; }
.map-placeholder p { color: var(--mid-gray); font-size: 0.9rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-brand .nav-logo { margin-bottom: 1.2rem; font-size: 1.4rem; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-brand .social-links .social-link {
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
}
.footer-brand .social-links .social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-col ul li a::before {
  content: '→';
  opacity: 0;
  transition: opacity 0.2s;
  font-size: 0.7rem;
  color: var(--gold);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col ul li a:hover::before { opacity: 1; }

.footer-contact-item {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: var(--gold); }

/* --- Kategori Proyek Cards --- */
.kategori-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.kategori-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 240px;
  cursor: pointer;
}
.kategori-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark-green) 0%, #1a5247 100%);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.kategori-card:hover .kategori-card-bg { transform: scale(1.04); }
.kategori-card-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
}
.kategori-card-label .eyebrow {
  font-size: 0.62rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.kategori-card-label h4 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
}
@media (max-width: 900px) { .kategori-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .kategori-grid { grid-template-columns: 1fr; } }

/* ============================================
   NEW HOME PAGE — Clean Minimal Redesign
   ============================================ */


/* ── Hero — Full-bleed overlay layout ─────────────────────────── */
.nh-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background: #111;
}

/* Background photo fills entire hero */
.nh-hero-img {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--dark-green) 0%, #1a5247 100%);
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Dark overlay for legibility */
.nh-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  z-index: 1;
}

/* no longer used */
.nh-hero-inner  { display: contents; }
.nh-hero-text   { all: unset; display: contents; }
.nh-hero-visual { display: none; }

/* Centered content block */
.nh-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding-top: 80px;
  padding-bottom: 160px;
  padding-left:  clamp(1.5rem, 6vw, 6rem);
  padding-right: clamp(1.5rem, 6vw, 6rem);
}

/* Text overrides — white on dark photo */
.nh-hero-content .nh-eyebrow { color: rgba(255,255,255,0.65); justify-content: center; }
.nh-hero-content .nh-eyebrow::before { background: rgba(255,255,255,0.35); }
.nh-hero-content .nh-h1 { color: #fff; }
.nh-hero-content .nh-h1 em { color: #fff; font-style: normal; }
.nh-hero-content .nh-sub { color: rgba(255,255,255,0.72); max-width: 480px; }
.nh-hero-content .nh-btn-dark {
  align-self: auto;
  background: #fff;
  color: #111;
  border-color: #fff;
}
.nh-hero-content .nh-btn-dark:hover {
  background: var(--dark-green);
  color: #fff;
  transform: translateY(-2px);
}

/* Eyebrow label above headline */
.nh-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.nh-eyebrow::before {
  content: '';
  width: 22px;
  height: 1.5px;
  background: #bbb;
  flex-shrink: 0;
}

/* Main headline */
.nh-h1 {
  font-size: clamp(2rem, 3.8vw, 5rem);
  line-height: 1.0;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.03em;
  margin-bottom: 1.8rem;
}
.nh-h1 em {
  font-style: italic;
  color: var(--dark-green);
}

.nh-sub {
  font-size: 0.92rem;
  color: #888;
  line-height: 1.72;
  margin-bottom: 2.2rem;
  max-width: 320px;
}

.nh-btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  background: #111;
  color: #fff;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}
.nh-btn-dark:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
}
.nh-btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  background: transparent;
  color: #111;
  border: 1.5px solid rgba(0,0,0,0.2);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.nh-btn-outline-dark:hover {
  border-color: #111;
  background: rgba(0,0,0,0.04);
  transform: translateY(-2px);
}

/* old stacked-layout rules — superseded by overlay layout above */
.nh-hero-visual { display: none; }

/* Stats floating bar — absolute inside hero */
.nh-hero-statsbar {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: calc(100% - 3rem);
  max-width: 960px;
  background: rgba(10, 10, 10, 0.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  display: flex;
  align-items: stretch;
}
.nh-strip-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  flex: 1;
}
.nh-strip-stat:last-child { border-right: none; }
.nh-strip-num {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}
.nh-strip-label {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.4;
  font-weight: 400;
}

/* old strip selectors — kept for safety */
.nh-stats-strip { display: none; }
.nh-stats-strip-inner { display: none; }

/* Mini stat row (hidden — moved to strip) */
.nh-mini-stats { display: none; }
.nh-stat-num { display: none; }
.nh-stat-lbl { display: none; }
.nh-stat-sep { display: none; }

/* ── Section shared styles ───────────────── */
.nh-section-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.nh-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark-green);
  margin-bottom: 0.5rem;
}
.nh-section-h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #111;
  line-height: 1.1;
  font-weight: 700;
}
.nh-see-all {
  font-size: 0.82rem;
  font-weight: 600;
  color: #111;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(0,0,0,0.25);
  transition: color 0.2s, text-decoration-color 0.2s;
  white-space: nowrap;
  margin-bottom: 0.3rem;
  flex-shrink: 0;
}
.nh-see-all:hover {
  color: var(--dark-green);
  text-decoration-color: var(--dark-green);
}

/* ── Projects Grid ───────────────────────── */
.nh-projects { background: #fff; }
.nh-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.nh-project-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.nh-project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.13);
}
.nh-project-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  background-size: cover;
  background-position: center;
  background-color: var(--soft-gray);
  position: relative;
}
.nh-project-tag-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(4px);
  padding: 0.28rem 0.75rem;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111;
}
.nh-project-body { padding: 1.4rem; }
.nh-project-name {
  font-size: 1.02rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.3rem;
}
.nh-project-loc {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nh-project-specs {
  display: flex;
  gap: 1.2rem;
  padding-top: 0.9rem;
  border-top: 1px solid #f0f0f0;
}
.nh-spec-item {
  font-size: 0.75rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 500;
}

/* ── Services Layout: alternating image/text list ─── */
.nh-services { background: #f8f8f6; }
.nh-svc2-list { display: flex; flex-direction: column; margin-top: 2rem; }
.nh-svc2-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3.5rem 0;
  border-top: 1px solid #d9d8d2;
}
.nh-svc2-list .nh-svc2-row:last-child { border-bottom: 1px solid #d9d8d2; }
.nh-svc2-row.reverse .nh-svc2-img { order: 2; }
.nh-svc2-row.reverse .nh-svc2-text { order: 1; }

.nh-svc2-img {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #dddcd8;
  aspect-ratio: 4 / 3;
}
.nh-svc2-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nh-svc2-img-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: #aaa;
}
.nh-svc2-badge {
  position: absolute;
  bottom: 1.1rem;
  left: 1.1rem;
  background: rgba(0,0,0,0.58);
  color: #fff;
  padding: 0.38rem 1rem;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.nh-svc2-tagline {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark-green);
  margin-bottom: 0.6rem;
}
.nh-svc2-text h3 { font-size: 1.7rem; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 0.85rem; color: #111; }
.nh-svc2-text > p { font-size: 0.92rem; color: #555; line-height: 1.75; margin: 0 0 1.25rem; }
.nh-svc2-features { list-style: none; margin: 0 0 1.75rem; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.nh-svc2-features li {
  font-size: 0.85rem;
  color: #333;
  padding-left: 1.3rem;
  position: relative;
}
.nh-svc2-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dark-green);
}
.nh-svc2-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.9rem;
  background: var(--dark-green);
  color: #fff;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.22s, transform 0.22s;
}
.nh-svc2-btn:hover { background: var(--gold); transform: translateY(-2px); }

@media (max-width: 860px) {
  .nh-svc2-row, .nh-svc2-row.reverse { grid-template-columns: 1fr; gap: 1.5rem; padding: 2.25rem 0; }
  .nh-svc2-row.reverse .nh-svc2-img, .nh-svc2-row.reverse .nh-svc2-text { order: 0; }
  .nh-svc2-img { aspect-ratio: 16 / 11; }
  .nh-svc2-text h3 { font-size: 1.4rem; }
}

/* keep .nh-btn-green for other uses */
.nh-btn-green {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.9rem; background: var(--dark-green); color: #fff;
  border: 2px solid var(--dark-green); border-radius: 10px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; margin-top: 2rem;
  transition: background 0.22s, transform 0.22s;
}
.nh-btn-green:hover { background: var(--green-light); transform: translateY(-2px); }

/* ── Why Us Grid ─────────────────────────── */
.nh-why { background: var(--dark-green); }
.nh-why .nh-label { color: rgba(255,255,255,0.55); }
.nh-why .nh-section-h2 { color: #fff; }
.nh-why .nh-see-all { color: rgba(255,255,255,0.65); border-bottom-color: rgba(255,255,255,0.25); }
.nh-why .nh-see-all:hover { color: #fff; border-bottom-color: rgba(255,255,255,0.7); }
.nh-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.nh-why-card {
  padding: 2rem 1.6rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.nh-why-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}
.nh-why-icon {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.nh-why-icon svg { width: 21px; height: 21px; color: #fff; }
.nh-why-card h4 { font-size: 0.98rem; margin-bottom: 0.6rem; color: #fff; }
.nh-why-card p { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.62; }

/* ── Testimonials Light ──────────────────── */
.nh-testimonials { background: #fff; }
.nh-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.nh-testi-card {
  padding: 1.6rem 1.75rem;
  background: #fff;
  border: 1.5px solid #ebebeb;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nh-testi-card:hover {
  border-color: var(--dark-green);
  box-shadow: 0 8px 32px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}
/* Author row — at the TOP */
.nh-testi-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}
.nh-testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--dark-green);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  overflow: hidden;
}
.nh-testi-avatar.has-photo { background: none; }
.nh-testi-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%; }
.nh-testi-name { font-weight: 700; font-size: 0.9rem; color: #111; line-height: 1.3; }
.nh-testi-loc { font-size: 0.72rem; color: #888; margin-top: 0.1rem; }
/* Stars below author */
.nh-testi-stars { color: #f5a623; font-size: 0.82rem; letter-spacing: 0.05em; margin-bottom: 0.7rem; line-height: 1; }
/* Quote text at bottom */
.nh-testi-text {
  font-size: 0.875rem;
  color: #4a4a4a;
  line-height: 1.75;
  font-style: italic;
  margin: 0;
}

/* ── Video Section ───────────────────────── */
.nh-video-section { background: #f8f8f6; }
.nh-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
}
.nh-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── CTA Dark ────────────────────────────── */
.nh-cta {
  background-color: #111;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.nh-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
  pointer-events: none;
  z-index: 0;
}
.nh-cta .container { position: relative; z-index: 1; }
.nh-cta .nh-label { color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.nh-cta h2 { color: #fff; margin-bottom: 1rem; font-size: clamp(2rem, 4vw, 3rem); }
.nh-cta h2 em { font-style: italic; color: var(--dark-green); }
.nh-cta p { color: rgba(255,255,255,0.55); max-width: 460px; margin: 0 auto 2.5rem; font-size: 0.96rem; }
.nh-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.nh-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: #fff;
  color: #111;
  border: 2px solid #fff;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.22s, transform 0.22s;
}
.nh-btn-white:hover { background: var(--dark-green); border-color: var(--dark-green); color: #fff; transform: translateY(-2px); }
.nh-btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.22s, background 0.22s, transform 0.22s;
}
.nh-btn-outline-white:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); transform: translateY(-2px); }

/* ── Responsive — new home ───────────────── */
@media (max-width: 1100px) {
  .nh-hero-text { flex: 0 0 42%; }
  .nh-h1 { font-size: clamp(2.4rem, 4vw, 5rem); }
  .nh-why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nh-hero { min-height: 100dvh; }
  .nh-hero-content { padding-bottom: 180px; }
  .nh-h1 { font-size: clamp(2.4rem, 7vw, 3.8rem); }
  .nh-hero-statsbar { bottom: 16px; width: calc(100% - 2rem); border-radius: 10px; }
  .nh-strip-stat { padding: 1rem 1.1rem; gap: 0.6rem; }
  .nh-strip-num { font-size: 1.7rem; }
  .nh-projects-grid { grid-template-columns: 1fr 1fr; }
  .nh-testi-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
@media (max-width: 640px) {
  .nh-hero-content { padding-bottom: 240px; padding-left: 1.25rem; padding-right: 1.25rem; }
  .nh-h1 { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .nh-hero-statsbar { flex-wrap: wrap; border-radius: 10px; }
  .nh-strip-stat { flex: 1 0 45%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 0.9rem 1rem; }
  .nh-strip-stat:last-child { border-bottom: none; }
  .nh-strip-num { font-size: 1.6rem; }
  .nh-projects-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
    grid-template-columns: unset;
  }
  .nh-projects-grid::-webkit-scrollbar { height: 4px; }
  .nh-projects-grid::-webkit-scrollbar-track { background: #f0f0f0; border-radius: 2px; }
  .nh-projects-grid::-webkit-scrollbar-thumb { background: #ccc; border-radius: 2px; }
  .nh-projects-grid .nh-project-card {
    flex: 0 0 78%;
    scroll-snap-align: start;
    min-width: 0;
  }
  .nh-why-grid { grid-template-columns: 1fr 1fr; }
  .nh-testi-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
    grid-template-columns: unset;
    margin-top: 1.5rem;
  }
  .nh-testi-grid::-webkit-scrollbar { height: 4px; }
  .nh-testi-grid::-webkit-scrollbar-track { background: #f0f0f0; border-radius: 2px; }
  .nh-testi-grid::-webkit-scrollbar-thumb { background: #ccc; border-radius: 2px; }
  .nh-testi-grid .nh-testi-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
    min-width: 0;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

/* Counter animation */
.counter { display: inline-block; }

/* Page transition */
.page-transition { display: none; }

/* Sticky WhatsApp */
.sticky-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  width: 56px; height: 56px;
  background: #25D366;
  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);
}
.sticky-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}
.sticky-wa svg { width: 28px; height: 28px; color: var(--white); }

/* ============================================
   PROJECT DETAIL PAGE
   ============================================ */

.project-detail-hero {
  position: relative;
  height: 80vh;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.project-detail-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.project-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,59,52,0.97) 0%, rgba(0,0,0,0.4) 55%, rgba(0,0,0,0.15) 100%);
}
.project-detail-hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}
.project-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}
.project-back-btn:hover { color: var(--gold); }
.project-category-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.project-detail-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.project-location-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  letter-spacing: 0.04em;
}

/* Meta Bar */
.project-meta-bar {
  background: var(--dark-green);
  padding: 0;
}
.project-meta-bar-inner {
  display: flex;
}
.project-meta-item {
  flex: 1;
  padding: 1.6rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.project-meta-item:last-child { border-right: none; }
.project-meta-label {
  display: block;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.project-meta-value {
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
}

/* Project Content */
.project-content { padding: 7rem 0 5rem; }
.project-content-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 6rem;
  align-items: start;
}
.project-description h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1.8rem;
}
.project-description p {
  color: #555;
  line-height: 1.95;
  font-size: 1.05rem;
  margin-bottom: 1.4rem;
}
.project-specs-card {
  background: var(--soft-gray);
  padding: 2.5rem;
  border-top: 3px solid var(--gold);
  position: sticky;
  top: 100px;
}
.project-specs-card h3 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 1.8rem;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-gray);
  font-size: 0.88rem;
}
.spec-row:last-of-type { border-bottom: none; }
.spec-label { color: var(--mid-gray); flex-shrink: 0; }
.spec-value { font-weight: 600; color: var(--charcoal); text-align: right; }
.project-specs-cta { margin-top: 2rem; }
.project-specs-cta .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* Gallery */
.project-gallery-section {
  background: var(--soft-gray);
  padding: 6rem 0;
}
.project-gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 3rem;
}
.project-gallery-item {
  position: relative;
  width: 100%;
  max-width: 1376px;
  height: 782px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  border-radius: 12px;
  background: #ccc;
  cursor: zoom-in;
}
.project-gallery-item-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.project-gallery-item:hover .project-gallery-item-bg { transform: scale(1.06); }

/* Gallery Lightbox */
.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 10, 10, 0.94);
}
.gallery-lightbox.active { display: block; }
.lightbox-scroll {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4.5rem 1.5rem;
}
.lightbox-img {
  max-width: min(92%, 1100px);
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  margin: 0 auto;
  flex-shrink: 0;
}
.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  z-index: 2001;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.24); }
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2001;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.24); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
@media (max-width: 640px) {
  .lightbox-scroll { padding: 4rem 0.75rem 2rem; }
  .lightbox-nav { width: 40px; height: 40px; font-size: 1.3rem; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

/* Project Navigation */
.project-nav {
  padding: 3rem 0;
  border-top: 1px solid var(--border-gray);
}
.project-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.project-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--charcoal);
  transition: color 0.2s;
  max-width: 280px;
}
.project-nav-link:hover { color: var(--dark-green); }
.project-nav-link svg { flex-shrink: 0; }
.nav-direction {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 0.3rem;
}
.nav-title {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
}
.project-nav-link.next {
  text-align: right;
}
.project-nav-link.next svg { transform: none; }

/* Related Projects */
.related-projects-section {
  background: var(--dark-green);
  padding: 6rem 0;
}
.related-projects-header {
  text-align: center;
  margin-bottom: 3rem;
}
.related-projects-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.related-projects-header h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.6rem); }
.related-projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.related-project-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0,0,0,0.18);
  text-decoration: none;
  transition: transform 0.3s ease;
}
.related-project-card:hover { transform: translateY(-4px); }
.related-project-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
}
.related-project-card-head h3 { color: var(--white); font-size: 1.05rem; font-weight: 600; margin: 0; }
.related-project-card-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.related-project-card-imgwrap { overflow: hidden; }
.related-project-card-img {
  height: 340px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.related-project-card:hover .related-project-card-img { transform: scale(1.06); }

/* ============================================
   HOMEPAGE — Design Showcase Slider
   ============================================ */
.nh-showcase-section {
  position: relative;
  width: calc(100% - 4rem);
  max-width: 1300px;
  margin: 2rem auto;
  height: 65vh;
  min-height: 420px;
  overflow: hidden;
  border-radius: 20px;
}
.nh-showcase-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.nh-showcase-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: translateX(100%);
  transition: transform 0.6s ease-in-out;
  z-index: 1;
}
.nh-showcase-slide.active { transform: translateX(0); z-index: 2; }
.nh-showcase-slide.exiting { transform: translateX(-100%); z-index: 1; }
.nh-showcase-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.75) 100%);
}
.nh-showcase-slide-title {
  position: absolute;
  bottom: 4rem;
  left: 2.5rem;
  right: 2.5rem;
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  z-index: 3;
}
/* Bottom controls bar */
.nh-showcase-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 100%);
  z-index: 5;
}
.nh-showcase-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.nh-showcase-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.25s, width 0.25s, border-radius 0.25s;
}
.nh-showcase-dot.active {
  background: #fff;
  width: 22px;
  border-radius: 4px;
}
.nh-showcase-arrows {
  display: flex;
  gap: 0.5rem;
}
.nh-showcase-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.55);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.nh-showcase-arrow:hover {
  background: rgba(0,0,0,0.55);
  border-color: rgba(255,255,255,0.9);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* ── Tablet Large (≤1100px) ─────────────────── */
@media (max-width: 1100px) {
  .projects-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .project-card:nth-child(1) { grid-row: auto; grid-column: auto; }
  .project-card:nth-child(4) { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .contact-layout { gap: 3rem; }
  .project-content-grid { grid-template-columns: 1fr 300px; gap: 4rem; }
}

/* ── Tablet (≤900px) ────────────────────────── */
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 3rem; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .contact-layout { grid-template-columns: minmax(0, 1fr); gap: 3rem; }
  .service-detail-item { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-detail-item.reverse { direction: ltr; }
  .vm-grid { grid-template-columns: 1fr; }

  .team-grid-commissioners,
  .team-grid-experts,
  .team-grid-civil,
  .team-grid-arch,
  .team-grid-marketing {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
  }
  .team-grid-commissioners > .team-card,
  .team-grid-experts > .team-card,
  .team-grid-civil > .team-card,
  .team-grid-arch > .team-card,
  .team-grid-marketing > .team-card { flex: unset; min-width: unset; }

  .legality-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-masonry { columns: 2; }
  .portfolio-grid-uniform { grid-template-columns: 1fr 1fr; }

  /* Project detail */
  .project-content-grid { grid-template-columns: 1fr; gap: 3rem; }
  .project-specs-card { position: static; }
  .project-meta-bar-inner { flex-wrap: wrap; }
  .related-projects-grid { grid-template-columns: 1fr; }
  .related-project-card-img { height: 280px; }
  .project-meta-item { flex: 1 0 33%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }

  /* Hero stat cards: 3→2 col */
  .stat-cards-grid { grid-template-columns: 1fr 1fr; }
}

/* --- Estimasi Calculator --- */
/* ── Estimasi full-background section ────────────────────────────── */
.est-bg-section {
  position: relative;
  min-height: 100vh;
  background: var(--dark-green) center/cover no-repeat;
  display: flex;
  flex-direction: column;
  padding-top: 100px;
  padding-bottom: 5rem;
}
.est-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.72) 0%, rgba(0,10,8,.82) 100%);
  z-index: 0;
}
.est-bg-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.est-bg-heading { text-align: center; }
.est-bg-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.est-bg-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}

/* ── Estimasi main section ────────────────────────────────────────── */
.estimasi-main-section {
  background: var(--soft-gray);
}
.estimasi-main-section .contact-form-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 28px rgba(0,0,0,.07);
  padding: 2.5rem;
}
.estimasi-main-section .contact-info-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 28px rgba(0,0,0,.07);
  padding: 1.75rem;
  padding-top: 1.5rem !important;
}

/* ── Estimasi layout ──────────────────────────────────────────────── */
.estimasi-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
}
/* Left: form card */
.estimasi-form-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.estimasi-field { display: flex; flex-direction: column; gap: 0.45rem; }
.estimasi-field label { font-size: 0.82rem; font-weight: 600; color: var(--charcoal); letter-spacing:.01em; }
.estimasi-field input,
.estimasi-field select {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border-gray);
  border-radius: 10px;
  font-size: 1rem;
  font-family: var(--font-sans);
  transition: var(--transition-fast);
  background: #fff;
  color: var(--charcoal);
}
.estimasi-field input::placeholder { color: var(--mid-gray); }
.estimasi-field input:focus,
.estimasi-field select:focus { border-color: var(--dark-green); outline: none; }
.estimasi-note { font-size: 0.78rem; color: var(--mid-gray); }
.estimasi-toggle { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.estimasi-toggle-btn {
  flex: 1 1 100px;
  min-width: 0;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-gray);
  border-radius: 10px;
  background: #fff;
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.88rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
}
.estimasi-toggle-btn:hover { border-color: var(--dark-green); color: var(--dark-green); }
#jenis-pekerjaan-toggle .estimasi-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
}
#jenis-pekerjaan-toggle .estimasi-toggle-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.estimasi-toggle-btn.active {
  border-color: var(--dark-green);
  background: var(--dark-green);
  color: #fff;
}
#gaya-desain-group {
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 0.5rem;
  padding-bottom: 4px;
  scrollbar-width: none;
}
#gaya-desain-group::-webkit-scrollbar { display: none; }
#gaya-desain-group .estimasi-toggle-btn {
  flex: 0 0 auto;
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: 8px;
  white-space: nowrap;
}
.estimasi-mobile-cta { display: none; margin-top: 0.5rem; }
.est-calc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--dark-green);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-sans);
  letter-spacing: .02em;
  cursor: pointer;
  transition: background .2s, transform .1s;
  margin-top: .25rem;
}
.est-calc-btn:hover { background: #0a2d28; }
.est-calc-btn:active { transform: scale(.98); }

/* Right: result panel (lives inside the card — no extra bg/border needed) */
.estimasi-result-col {
  margin-bottom: 1.5rem;
}
.estimasi-result-label {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  justify-content: space-between;
}
.estimasi-label-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.estimasi-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--mid-gray);
  font-size: 0.88rem;
  padding: 2.5rem 1rem;
}
.estimasi-error { color: #C0392B; font-size: 0.88rem; padding: 1rem 0; }
.est-result-title { font-size: 1.1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 1.1rem; }

/* Breakdown cards */
.est-cards { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.1rem; }
.est-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .85rem 1rem;
  background: var(--soft-gray);
  border-radius: 10px;
  border-left: 3px solid var(--dark-green);
}
.est-card-left { display: flex; flex-direction: column; gap: .2rem; min-width: 0; }
.est-card-label { font-size: .88rem; font-weight: 600; color: var(--charcoal); }
.est-card-detail { font-size: .75rem; color: var(--mid-gray); }
.est-card-amount { font-size: .95rem; font-weight: 700; color: var(--dark-green); white-space: nowrap; }

/* Summary section */
.est-summary {
  border-top: 1.5px solid var(--border-gray);
  padding-top: .9rem;
  margin-bottom: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.est-sum-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: .85rem;
  color: var(--mid-gray);
}
.est-sum-row span:last-child { font-weight: 500; color: var(--charcoal); }
.est-sum-divider { height: 1.5px; background: var(--border-gray); margin: .35rem 0; }
.est-sum-total {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  background: var(--dark-green);
  color: var(--white);
  padding: .85rem 1rem;
  border-radius: 10px;
  margin-top: .15rem;
}
.est-sum-total span { color: var(--white) !important; font-weight: 700; }

/* Action buttons */
.est-actions { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: .7rem; margin-bottom: 1.1rem; }
.est-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-fast);
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.est-action-primary {
  background: var(--dark-green);
  color: var(--white);
  border-color: var(--dark-green);
}
.est-action-primary:hover { background: #0a2d28; border-color: #0a2d28; }
.est-action-secondary {
  background: var(--white);
  color: var(--dark-green);
  border-color: var(--dark-green);
}
.est-action-secondary:hover { background: #f2f5f3; }

/* Advisor CTA card */
.est-advisor-card {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  background: #f8f8f6;
  border: 1px solid var(--border-gray);
  border-radius: 12px;
  padding: .9rem 1rem;
  margin-bottom: .9rem;
}
.est-advisor-icon {
  width: 36px; height: 36px;
  background: var(--dark-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.est-advisor-text { display: flex; flex-direction: column; gap: .2rem; }
.est-advisor-text strong { font-size: .85rem; color: var(--charcoal); }
.est-advisor-text span { font-size: .78rem; color: var(--mid-gray); line-height: 1.45; }
.estimasi-disclaimer { font-size: .74rem; color: var(--mid-gray); line-height: 1.55; margin-top: .25rem; }

/* PDF Download Button */
.est-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .85rem;
  background: transparent;
  border: 1.5px solid var(--dark-green);
  border-radius: 6px;
  color: var(--dark-green);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .18s, color .18s;
  flex-shrink: 0;
}
.est-pdf-btn:hover { background: var(--dark-green); color: #fff; }
.est-pdf-btn svg { flex-shrink: 0; }

/* ── Print / PDF Styles — handled by jsPDF, kept as fallback ── */
@media print {
  /* Hide everything */
  .navbar, .mobile-menu, .page-hero, .contact-form-section,
  .sticky-wa, .footer, .map-section, .page-transition,
  .est-actions, #estimasi-empty-state, #estimasi-error,
  .estimasi-lead-form, #estimasi-lead-form, .est-pdf-btn {
    display: none !important;
  }

  body { background: #fff; margin: 0; padding: 0; }

  .section.estimasi-main-section { padding: 0; }
  .container { max-width: 100%; padding: 0; }
  .contact-layout { display: block; }

  .contact-info-section {
    width: 100%;
    box-shadow: none;
    border: none;
    padding: 0;
    margin: 0;
  }

  /* PDF Header — logo + title */
  #estimasi-result-col::before {
    content: 'ARCHREATIVE';
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: .15em;
    color: #013D37;
    margin-bottom: .25rem;
  }
  #estimasi-result-col::after {
    content: 'PT Archreative Studio Konstruksi  ·  studioarchreative.com  ·  +62 858-6313-9365';
    display: block;
    font-size: .72rem;
    color: #888;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1.5px solid #e0e0e0;
  }

  .estimasi-result-label { margin-bottom: .75rem; }

  /* Keep result styling clean */
  .est-card { break-inside: avoid; }
  .est-summary { break-inside: avoid; }
  .estimasi-disclaimer { margin-top: 1rem; }

  /* Follow Us — hide in print */
  .contact-info-section > div[style*="margin-top:1.5rem"] { display: none !important; }
}

/* ── Mobile Large (≤768px) ──────────────────── */
@media (max-width: 768px) {
  .section { padding: 4.5rem 0; }
  .container { padding: 0 1.25rem; }

  .nh-showcase-section { height: 45vh; min-height: 320px; width: calc(100% - 2rem); margin: 1rem auto; border-radius: 12px; }
  .nh-showcase-slide-title { bottom: 3.5rem; left: 1.25rem; right: 1.25rem; font-size: 1.3rem; }
  .nh-showcase-controls { padding: 0 1.25rem; }
  .nh-showcase-arrow { width: 32px; height: 32px; }

  /* Nav */
  .nav-menu { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero {
    margin: 0 0.75rem;
    margin-top: calc(64px + 0.75rem);
    border-radius: 16px;
    height: calc(100vh - 64px - 1.5rem);
    min-height: 480px;
  }
  .hero-inner { padding: 2rem 1.5rem 0; max-width: 100%; }
  .hero-title { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .hero-subtitle { font-size: 0.9rem; }
  .hero-actions { gap: 0.75rem; }
  .hero-actions .btn { padding: 0.8rem 1.6rem; font-size: 0.8rem; }
  .scroll-indicator { display: none; }

  /* Consult bar */
  .consult-inner { flex-direction: column; align-items: stretch; }
  .consult-cta-group {
    padding: 0.9rem 1rem 0.7rem;
    border-bottom: 1px solid #efefef;
    gap: 0.5rem;
  }
  .consult-cta-btn { flex: 1; justify-content: center; }
  .consult-fields { flex-direction: column; align-items: stretch; padding: 0.75rem 1rem; }
  .consult-sep { display: none; }
  .consult-field { min-width: unset; padding: 0.35rem 0; }
  .btn-consult { margin: 0.4rem 0 0; width: 100%; justify-content: center; }

  /* Stat cards */
  .stat-cards-grid { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
  .hero-stat-cards { padding: 1.2rem 0.75rem 2rem; }
  .stat-card { min-height: 130px; padding: 1.5rem; }
  .stat-card-num { font-size: 2.4rem; }

  /* Projects grid */
  .projects-grid { grid-template-columns: 1fr; }
  .project-card { height: 280px !important; }

  /* Grids */
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .service-card { padding: 1.8rem; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .legality-grid { grid-template-columns: 1fr; }

  /* Company intro */
  .company-intro-image .accent-img { display: none; }
  .company-intro-image .badge { right: 1rem; top: 1rem; }
  .company-intro-image .main-img,
  #intro-img-main { height: 340px !important; }

  /* Intro stats */
  .intro-stats { flex-wrap: wrap; gap: 1.2rem; padding: 1.5rem 0; }
  .intro-stat-number { font-size: 2rem; }

  /* Portfolio */
  .portfolio-masonry { columns: 1; }
  .portfolio-grid-uniform { grid-template-columns: 1fr; }

  /* Team — 2 column grid */
  .team-grid-commissioners,
  .team-grid-experts,
  .team-grid-civil,
  .team-grid-arch,
  .team-grid-marketing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .team-grid-commissioners > .team-card,
  .team-grid-experts > .team-card,
  .team-grid-civil > .team-card,
  .team-grid-arch > .team-card,
  .team-grid-marketing > .team-card { flex: unset; min-width: unset; }
  .team-card-img { height: 180px; }
  .team-portrait { aspect-ratio: 3/4; height: auto; }
  .team-card-body { padding: 0.85rem; }
  .team-card-body h4 { font-size: 0.82rem; }
  .team-role { font-size: 0.68rem; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* Project detail */
  .project-gallery-item { height: clamp(220px, 65vw, 480px); }
  .project-nav-inner { flex-direction: column; gap: 1.5rem; }
  .project-nav-link { max-width: 100%; }
  .project-meta-item { flex: 1 0 50%; }

  /* Estimasi calculator */
  .estimasi-layout { grid-template-columns: minmax(0, 1fr); }
  .estimasi-result-col { position: static; }
  .estimasi-mobile-cta { display: block; width: 100%; }
  .estimasi-contact-strip { grid-template-columns: 1fr !important; }
  .est-actions { grid-template-columns: 1fr; }
  .est-bg-section { padding-top: 80px; }
  .est-bg-title { font-size: 1.9rem; }
  .estimasi-main-section .contact-form-section,
  .estimasi-main-section .contact-info-section {
    padding: 1.25rem;
  }
}

/* ── Mobile Medium (≤600px) ─────────────────── */
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stat-cards-grid { grid-template-columns: 1fr; gap: 0.75rem; }

  /* Section header */
  .section-header { margin-bottom: 2.5rem; }
  .section-header p { font-size: 0.92rem; }

  /* CTA */
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* Why us cards horizontal scroll on small */
  .why-card { padding: 1.8rem; }

  /* Contact info */
  .contact-info-item { gap: 1rem; }

  /* Testimonials */
  .testimonial-card { padding: 2rem; }
  .testimonial-quote { font-size: 3rem; }
}

/* ── Mobile Small (≤480px) ──────────────────── */
@media (max-width: 480px) {
  h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .container { padding: 0 1rem; }
  .section { padding: 3.5rem 0; }

  /* Hero */
  .hero { border-radius: 12px; }
  .hero-inner { padding: 1.5rem 1.2rem 0; }
  .hero-title { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .hero-label { font-size: 0.63rem; }
  .hero-subtitle { font-size: 0.85rem; margin-bottom: 1.5rem; }
  .hero-actions .btn { padding: 0.75rem 1.4rem; font-size: 0.78rem; }

  /* Stat cards */
  .hero-stat-cards { padding: 1rem 0.75rem 1.75rem; }
  .stat-card { min-height: 110px; padding: 1.2rem; }
  .stat-card-num { font-size: 2rem; }
  .stat-card-brand { font-size: 1.8rem; }

  /* Team: 2 col grid on very small screens */
  .team-grid-commissioners,
  .team-grid-experts,
  .team-grid-civil,
  .team-grid-arch,
  .team-grid-marketing { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .team-card-img { height: 160px; }
  .team-card-body { padding: 0.7rem; }

  /* Nav cta */
  .nav-cta { display: none; }
  .navbar-inner > .lang-switch { display: none; }

  /* Footer */
  .footer { padding: 3.5rem 0 1.5rem; }
  .footer-grid { gap: 1.75rem; }

  /* Page hero */
  .page-hero { height: 100vh; min-height: 100dvh; }

  /* Buttons */
  .btn { padding: 0.8rem 1.8rem; }
  .btn--gold, .btn--primary, .btn--outline { font-size: 0.8rem; }

  /* Consult bar — hide 2nd CTA on tiny screens, keep WA button below */
  .consult-cta-outline { display: none; }
  .consult-cta-dark { width: 100%; justify-content: center; font-size: 0.8rem; }

  /* Sticky WA - smaller on tiny screens */
  .sticky-wa { width: 48px; height: 48px; bottom: 1.5rem; right: 1.5rem; }
  .sticky-wa svg { width: 24px; height: 24px; }

  /* Estimasi calculator — tighter card padding + button-group gap on tiny screens */
  .estimasi-main-section .contact-form-section,
  .estimasi-main-section .contact-info-section {
    padding: 1rem;
  }
  .estimasi-toggle { gap: 0.4rem; }
  .estimasi-toggle-btn { flex-basis: 80px; padding: 0.65rem 0.6rem; font-size: 0.82rem; }
}

/* ============================================
   BLOG — Homepage Preview
   ============================================ */
.nh-blog-section { background: #fff; }
.nh-section-h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  margin: 0.35rem 0 0;
}
.nh-btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.6rem;
  background: transparent;
  color: #111;
  border: 1.5px solid #222;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nh-btn-outline-dark:hover { background: #111; color: #fff; }
.nh-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.nh-blog-card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1.5px solid #ebebeb;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
}
.nh-blog-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,0.1); }
.nh-blog-card-img {
  height: 200px;
  background: linear-gradient(135deg,#0F3B34,#1a5247);
  background-size: cover;
  background-position: center;
}
.nh-blog-card-body { padding: 1.4rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.nh-blog-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.6rem; }
.nh-blog-tag {
  padding: 0.18rem 0.55rem;
  background: rgba(15,59,52,0.08);
  color: var(--dark-green);
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nh-blog-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
  margin: 0 0 0.5rem;
}
.nh-blog-card-excerpt {
  font-size: 0.84rem;
  color: #666;
  line-height: 1.65;
  margin: 0 0 auto;
  padding-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nh-blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #999;
  padding-top: 0.75rem;
  border-top: 1px solid #f0f0f0;
}
.nh-blog-card-meta span:not(:last-child)::after { content: '·'; margin-left: 0.75rem; }

/* ============================================
   BLOG — Listing Page
   ============================================ */
.blog-filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.blog-filter-btn {
  padding: 0.45rem 1.1rem;
  border: 1.5px solid #ddd;
  border-radius: 999px;
  background: #fff;
  color: #555;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.blog-filter-btn:hover { border-color: var(--dark-green); color: var(--dark-green); }
.blog-filter-btn.active { background: var(--dark-green); color: #fff; border-color: var(--dark-green); }

.blog-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1.5px solid #ebebeb;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,0.1); }
.blog-card--featured {
  grid-column: 1 / -1;
  flex-direction: row;
}
.blog-card--featured .blog-card-img { height: auto; min-height: 280px; flex: 0 0 48%; }
.blog-card--featured .blog-card-title { font-size: 1.5rem; }
.blog-card--featured .blog-card-excerpt { -webkit-line-clamp: 5; }

.blog-card-img {
  height: 220px;
  background: linear-gradient(135deg,#0F3B34,#1a5247);
  background-size: cover;
  background-position: center;
  position: relative;
}
.blog-draft-badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  padding: 0.2rem 0.6rem;
  background: rgba(0,0,0,0.55);
  color: #fff;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.blog-card-body { padding: 1.6rem 1.75rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.7rem; }
.blog-tag {
  padding: 0.2rem 0.6rem;
  background: rgba(15,59,52,0.08);
  color: var(--dark-green);
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.blog-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  line-height: 1.38;
  margin: 0 0 0.55rem;
}
.blog-card-excerpt {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.7;
  margin: 0 0 auto;
  padding-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.77rem;
  color: #999;
  padding-top: 0.75rem;
  border-top: 1px solid #f0f0f0;
  flex-wrap: wrap;
}

/* ============================================
   BLOG — Post Detail Page
   ============================================ */
.post-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 80px;
}
.post-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--dark-green);
  background-size: cover;
  background-position: center;
}
.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.28) 60%, rgba(0,0,0,0.15) 100%);
}
.post-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 3.5rem;
  padding-top: 2rem;
  max-width: 1140px;
  padding-left: 2rem;
  padding-right: 2rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
}
.post-hero-col { grid-column: 1; min-width: 0; }
.post-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  margin-bottom: 1.25rem;
  transition: color 0.2s;
}
.post-back-link:hover { color: #fff; }
.post-hero-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.85rem; }
.post-hero-tag {
  padding: 0.22rem 0.65rem;
  background: rgba(200,169,107,0.85);
  color: #fff;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.post-hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 1rem;
}
.post-hero-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  flex-wrap: wrap;
}
.post-meta-sep { opacity: 0.4; }

.post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  max-width: 1140px;
  margin: 0 auto;
  padding: 3.5rem 2rem 5rem;
  align-items: start;
}
.post-article { min-width: 0; }
.post-loading {
  text-align: center;
  padding: 4rem 0;
  color: #888;
}
.post-loading-spinner {
  width: 36px; height: 36px;
  border: 3px solid #eee;
  border-top-color: var(--dark-green);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin: 0 auto 1rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Prose styles — rendered HTML content */
.prose {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #333;
}
.prose h1, .prose h2, .prose h3, .prose h4 {
  color: #111;
  font-weight: 700;
  margin: 2.2rem 0 0.9rem;
  line-height: 1.3;
}
.prose h2 { font-size: 1.55rem; }
.prose h3 { font-size: 1.25rem; }
.prose h4 { font-size: 1.05rem; }
.prose p { margin: 0 0 1.35rem; }
.prose ul, .prose ol { padding-left: 1.5rem; margin: 0 0 1.35rem; }
.prose li { margin-bottom: 0.4rem; }
.prose img { max-width: 100%; height: auto; border-radius: 10px; margin: 1.5rem 0; display: block; }
.prose blockquote {
  border-left: 4px solid var(--gold);
  margin: 2rem 0;
  padding: 0.75rem 0 0.75rem 1.5rem;
  color: #555;
  font-style: italic;
  background: rgba(200,169,107,0.05);
  border-radius: 0 8px 8px 0;
}
.prose a { color: var(--dark-green); text-decoration: underline; }
.prose a:hover { color: var(--gold); }
.prose strong { font-weight: 700; color: #111; }
.prose code {
  background: #f5f5f5;
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.9em;
}

/* Sidebar */
.post-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 1.5rem; }
.post-sidebar-card {
  background: #fff;
  border: 1.5px solid #ebebeb;
  border-radius: 14px;
  padding: 1.5rem;
}
.post-sidebar-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 0.65rem;
}
.post-sidebar-card p { font-size: 0.875rem; color: #666; line-height: 1.65; margin: 0; }
.related-post-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
.related-post-item:last-child { border-bottom: none; padding-bottom: 0; }
.related-post-item:hover { color: var(--dark-green); }
.related-post-img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.related-post-title { font-size: 0.82rem; font-weight: 600; line-height: 1.4; color: #333; }

/* Blog responsive */
@media (max-width: 1024px) {
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .post-hero-content { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nh-blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-listing-grid { grid-template-columns: 1fr 1fr; }
  .blog-card--featured { flex-direction: column; }
  .blog-card--featured .blog-card-img { min-height: 220px; flex: none; }
}
@media (max-width: 640px) {
  .nh-blog-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
    grid-template-columns: unset;
  }
  .nh-blog-grid::-webkit-scrollbar { height: 4px; }
  .nh-blog-grid::-webkit-scrollbar-track { background: #f0f0f0; border-radius: 2px; }
  .nh-blog-grid::-webkit-scrollbar-thumb { background: #ccc; border-radius: 2px; }
  .nh-blog-grid .nh-blog-card {
    flex: 0 0 78%;
    scroll-snap-align: start;
    min-width: 0;
  }
  .blog-listing-grid { grid-template-columns: 1fr; }
  .post-layout { padding: 2rem 1rem 3.5rem; }
  .post-hero-title { font-size: 1.7rem; }
}
