/* ============================================================
   PT. Brilian Inovatek Nusantara — Architecture Content Stylesheet
   File   : ars.css
   Dipakai: Semua halaman Architecture & Interior
   Require: ars-base.css (load duluan)
   Load   : <link rel="stylesheet" href="/css/ars-base.css">
            <link rel="stylesheet" href="/css/ars.css">

   DAFTAR ISI:
   1. HOME (index)
   2. ABOUT
   3. BLOG
   4. CONTACT
   5. PROJECTS
   6. SERVICES
   ============================================================ */


/* ============================================================
   1. HOME
   ============================================================ */
/* ── HERO SECTION ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Background image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Overlay gelap di atas gambar */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.2) 60%,
    rgba(0, 0, 0, 0.0) 100%
  );
}

/* Konten teks */
.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 80px 80px 80px;
  max-width: 860px;
  border: none;
  outline: none;
}

/* Judul besar */
.hero-title {
  display: flex;
  flex-direction: column;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.hero-title span {
  display: block;
}

/* Deskripsi */
.hero-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
  font-style: italic;
}

/* ── TOMBOL LET'S START ── */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 36px;
  background: var(--text);
  color: var(--white);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color 0.35s ease;
}

/* Efek fill putih dari kiri saat hover */
.hero-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.hero-btn:hover::before {
  transform: translateX(0);       /* slide masuk dari kiri */
}

.hero-btn:hover {
  color: var(--text);                  /* teks jadi hitam saat hover */
  border-color: var(--white);
}

/* Teks dan arrow di atas overlay */
.hero-btn-text,
.hero-btn-arrow {
  position: relative;
  z-index: 1;
}

/* Arrow bergerak ke kanan saat hover */
.hero-btn-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 1rem;
}

.hero-btn:hover .hero-btn-arrow {
  transform: translateX(6px);     /* geser ke kanan */
}

/* ── ABOUT SECTION ── */
.about {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 100px 80px 20px 80px;
  gap: 80px;
  background: var(--light);
  position: relative;
  overflow: hidden;
}

/* Watermark arsitektur di background */
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 55%;
  height: 100%;
  background-image: url('../images/architecture/sketch.webp');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

.about-left,
.about-right {
  position: relative;
  z-index: 1;
}

/* ── KIRI ── */
.about-left {
  flex: 1;
  max-width: 560px;
}

.about-title {
  display: flex;
  flex-direction: column;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 32px;
}

.about-title span {
  display: block;
}

.about-desc {
  font-size: 0.92rem;
  color: var(--accent);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 520px;
}

/* Specialization */
.about-specialization {
  display: inline-flex;
  align-items: center;
  margin-top: 2px;
  margin-bottom: 28px;
  border: 2px solid #cccccc;
  padding: 10px 20px;
  min-width: 400px;
  width: fit-content;
}

.about-specialization-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text);
  white-space: nowrap;
}

.about-specialization-sep {
  display: block;
  width: 2px;
  height: 25px;
  background-color: #cccccc;
  margin: 0 16px;
  flex-shrink: 0;
}

.about-specialization-list {
  display: flex;
  gap: 30px;
  padding: 0;
}

.about-specialization-link {
  font-size: 0.72rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.08em;
  font-style: italic;
  font-weight: 500;
  white-space: nowrap;
}


/* Garis divider */
.about-divider {
  width: 60px;
  height: 3px;
  background: var(--text);
  margin-bottom: 32px;
}

/* Tombol Our Portofolio */
.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 36px;
  background: var(--text);
  color: var(--white);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color 0.35s ease;
}

.about-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.about-btn:hover::before {
  transform: translateX(0);
}

.about-btn:hover {
  color: var(--text);
  outline: 2px solid var(--text);
}

.about-btn span {
  position: relative;
  z-index: 1;
}

.about-btn-arrow {
  transition: transform 0.3s ease;
}

.about-btn:hover .about-btn-arrow {
  transform: translateX(6px);
}

/* ── KANAN: Gambar ── */
.about-right {
  flex: 1;
  max-width: 520px;
  margin-left: auto;
  overflow: hidden;
}

.about-right img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1.0s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-right:hover img {
  transform: scale(1.06);   /* <-- zoom in saat hover */
}

/* ── SERVICES INTRO BAND ── */
  .services-intro-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 80px;
  margin: 12px;
  margin-top: 0;
  margin-bottom: 0;
  gap: 32px;
    }

.services-intro-text {
  font-size: 1.2rem;
  font-weight: 700;
  margin-left: 200px;
  color: var(--text);
  flex: 1;
}

.services-intro-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  margin-right: 200px;
  background: var(--text);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: background 0.35s ease;
}

.services-intro-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.services-intro-btn:hover::before {
  transform: translateX(0);
}

.services-intro-btn:hover {
  color: var(--text);
  outline: 2px solid var(--text)
}

.services-intro-btn span {
  position: relative;
  z-index: 1;
}

.services-intro-arrow {
  display: inline-block;
  margin-left: 12px;
  transition: transform 0.3s ease;
}

.services-intro-btn:hover .services-intro-arrow {
  transform: translateX(6px);   /* geser ke kanan saat hover */
}

/* ── SERVICES SECTION ── */
.services {
  padding: 0 0 40px 0;
  margin-top: 0;
  background: var(--light);
}

.services-header {
  text-align: center;
  margin-bottom: 24px;
  padding-top: 12px;
}

.services-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
}

.services-divider {
  width: 3px;
  height: 36px;
  background: var(--accent);
  margin: 0 auto;
}

/* Grid 3 kolom */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 10px;
}

/* Card */
.service-card {
  border: 1px solid var(--border);
  background: var(--white);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

/* Gambar + Label overlay */
.service-card-img {
  position: relative;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-img img {
  transform: scale(1.06);
}

/* Label kategori di atas gambar */
.service-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 18px;
  text-transform: capitalize;
}

/* Body card */
.service-card-body {
  padding: 24px 24px 28px;
}

.service-card-desc {
  font-size: 0.88rem;
  color: var(--accent);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* READ MORE link */
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  margin-top: auto
  transition: gap 0.3s ease;
}

.service-card-link:hover {
  gap: 16px;
}

.service-card-link-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
  transition: width 0.3s ease;
}

.service-card-link:hover .service-card-link-line {
  width: 40px;
}

/* Tombol VIEW ALL */
.services-footer {
  text-align: center;
  margin-top: 24px;
}

.services-viewall-btn {
  display: inline-flex;
  padding: 16px 36px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--text);
  color: var(--white);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.35s ease;
}

.services-viewall-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.services-viewall-btn:hover::before {
  transform: translateX(0);
}

.services-viewall-btn:hover {
  color: var(--text);
  outline: 2px solid var(--text)
}

.services-viewall-btn span {
  position: relative;
  z-index: 1;
}

.services-viewall-arrow {
  display: inline-block;
  margin-left: 12px;
  transition: transform 0.3s ease;
}

.services-viewall-btn:hover .services-viewall-arrow {
  transform: translateX(6px);   /* geser ke kanan saat hover */
}

/* ── SERVICE MODAL ── */
.svc-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.70);
  backdrop-filter: blur(3px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.30s ease;
}

.svc-modal-backdrop.svc-modal-open {
  opacity: 1;
  pointer-events: all;
}

.svc-modal {
  background: var(--white);
  width: 100%;
  max-width: 660px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.35s ease;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.svc-modal-backdrop.svc-modal-open .svc-modal {
  transform: translateY(0);
}

/* ── TOMBOL TUTUP ── */
.svc-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 10;
  background: rgba(17, 17, 17, 0.55);
  color: var(--white);
  border: none;
  width: 32px;
  height: 32px;
  font-size: 0.80rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  line-height: 1;
}

.svc-modal-close:hover {
  background: var(--primary);
}

/* ── GAMBAR ── */
.svc-modal-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}

.svc-modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
}

.svc-modal-img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--accent);
  color: var(--white);
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
}

/* ── BODY ── */
.svc-modal-body {
  padding: 32px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ── BLOCK (about / key elements) ── */
.svc-modal-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.svc-modal-block-title {
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.svc-modal-about {
  font-size: 0.93rem;
  color: var(--accent);
  line-height: 1.75;
}

/* ── CHECKLIST ── */
.svc-modal-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.svc-modal-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.90rem;
  color: var(--accent);
  line-height: 1.55;
}

.svc-modal-checklist li::before {
  content: '';
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1.5px solid var(--accent);
  border-radius: 2px;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='2,6 5,9 10,3' stroke='%23555555' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 11px no-repeat;
}

/* ── OUR DESIGN APPROACH SECTION ── */
.approach {
  padding: 20px 80px;
  background: var(--light);
}

.approach-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.approach-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
}

.approach-title span {
  color: var(--accent);
}

.approach-divider {
  width: 3px;
  height: 36px;
  background: var(--accent);
  margin: 0 auto 20px;
}

.approach-desc {
  font-size: 0.9rem;
  color: var(--accent);
  line-height: 1.8;
}

/* ── TAB NAV ── */
.approach-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  border-bottom: none;
  padding-bottom: 0;
  position: relative;
}

.approach-tabs::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%; /* sesuaikan panjangnya */
  height: 1px;
  background: var(--border);
}

.approach-tab {
  background: none;
  border: none;
  padding: 12px 28px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  position: relative;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.approach-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--text);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.approach-tab:hover {
  color: var(--text);
}

.approach-tab-active {
  color: var(--text);
  font-weight: 700;
}

.approach-tab-active::after {
  transform: scaleX(1);
}

.approach-tab-sep {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── PANEL ── */
.approach-panel {
  display: none;
  align-items: center;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.approach-panel-active {
  display: flex;
}

/* Kiri: teks */
.approach-panel-left {
  flex: 1;
  max-width: 480px;
  margin-right: auto;
  margin-left: 80px;
}

.approach-panel-num {
  font-size: 4rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.approach-panel-title {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.approach-panel-text {
  font-size: 0.9rem;
  color: var(--accent);
  line-height: 1.8;
}

/* Kanan: gambar + hover overlay */
.approach-panel-right {
  flex: 1;
  max-width: 300px;
  margin: 0 auto;
  margin-right: 80px; /* geser sedikit ke kiri */
}

.approach-panel-img-wrap {
  position: relative;
  overflow: hidden;
}

.approach-panel-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.approach-panel-img-wrap:hover img {
  transform: scale(1.05);
}

/* Corner lines overlay saat hover (seperti di referensi) */
.approach-panel-img-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.approach-panel-img-overlay::before,
.approach-panel-img-overlay::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: rgba(255,255,255,0.85);
  border-style: solid;
  transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

/* Sudut kiri atas */
.approach-panel-img-overlay::before {
  top: 16px;
  left: 16px;
  border-width: 2px 0 0 2px;
}

/* Sudut kanan bawah */
.approach-panel-img-overlay::after {
  bottom: 16px;
  right: 16px;
  border-width: 0 2px 2px 0;
}

.approach-panel-img-wrap:hover .approach-panel-img-overlay::before,
.approach-panel-img-wrap:hover .approach-panel-img-overlay::after {
  opacity: 1;
  width: 50px;
  height: 50px;
}

/* ── PROJECT SHOWCASE SECTION ── */
.showcase {
  padding: 40px 0 0 0;
  background: var(--light);
  overflow: hidden;
}

.showcase-header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 80px;
}

.showcase-label {
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.showcase-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-top: 12px;
}

/* ── SLIDER WRAPPER ── */
.showcase-slider-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
}

.showcase-slider {
  overflow: hidden;
}

/* ── SLIDE ── */
.showcase-slide {
  display: none;
  grid-template-columns: 1fr auto;
  align-items: stretch;
  gap: 0;
}

.showcase-slide-active {
  display: grid;
}

/* ── GAMBAR KIRI ── */
.showcase-img-wrap {
  position: relative;
  overflow: hidden;
  flex: 1;
}

.showcase-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-img-wrap:hover img {
  transform: scale(1.04);
}

/* Info overlay di pojok kiri bawah gambar */
.showcase-img-info {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
  width: 100%;
}

.showcase-img-cat {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 6px;
}

.showcase-img-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

/* ── DETAIL KANAN ── */
.showcase-detail {
  width: 280px;
  background: var(--white);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--border);
  border-left: none;
  gap: 20px;
}

.showcase-detail-desc {
  font-size: 0.88rem;
  color: var(--accent);
  line-height: 1.75;
}

.showcase-detail-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.showcase-meta-row {
  display: flex;
  gap: 10px;
  font-size: 0.82rem;
}

.showcase-meta-label {
  font-weight: 700;
  color: var(--text);
  min-width: 70px;
}

.showcase-meta-val {
  color: var(--accent);
}

/* Tombol arrow bulat
.showcase-detail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--text);
  border-radius: 50%;
  color: var(--text);
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  align-self: flex-start;
}

.showcase-detail-btn:hover {
  background: var(--text);
  color: var(--white);
}*/

/* ── ARROW NAV ── */
.showcase-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--text);
  transition: background 0.3s ease, color 0.3s ease;
  z-index: 10;
}

.showcase-arrow:hover {
  background: var(--text);
  color: var(--white);
}

.showcase-arrow-prev { left: 0; }
.showcase-arrow-next { right: 0; }

/* ── DOTS ── */
.showcase-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.showcase-dot {
  display: inline-block;
  width: 24px;
  height: 3px;
  background: var(--border);
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
}

.showcase-dot-active {
  background: var(--text);
  width: 40px;
}

/* ── CLIENT LOGO SLIDER ── */
.clients {
  margin-top: 40px;
  border-bottom: 1px solid var(--border);
  padding: 32px 240px;
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.clients::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%; /* sesuaikan panjang garisnya */
  height: 1px;
  background: var(--border);
}

.clients-viewport {
  flex: 1;
  overflow: hidden;
}

.clients-track {
  display: flex;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.clients-item {
  flex: 0 0 25%; /* tampil 4 sekaligus */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  border-right: none;
}

.clients-item img {
  height: 130px;
  width: 130px;
  object-fit: contain;
}

.clients-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%; /* lingkaran */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  color: var(--text);
  transition: background 0.3s ease, color 0.3s ease;
  margin: 0 24px;
}

/* ── CTA + FORM SECTION ── */
.cta-section {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 600px;
  overflow: hidden;
}

/* Background */
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* Kiri */
.cta-left {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  max-width: 580px;
}

.cta-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  font-style: italic;
}

.cta-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 48px;
}

/* Stats */
.cta-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cta-stat {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-stat-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
}

.cta-stat-icon svg {
  width: 20px;
  height: 20px;
}

.cta-stat-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
}

/* Kanan: Form */
.cta-form-wrap {
  position: relative;
  z-index: 1;
  width: 380px;
  flex-shrink: 0;
  background: var(--light);
  padding: 12px 40px 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 240px;
  margin-top: 48px;  /* geser turun */
  margin-bottom: -40px; /* kompensasi supaya section tidak tambah tinggi */
}

.cta-form-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.cta-form-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 0.85rem;
  color: var(--text);
  font-family: var(--font);
  outline: none;
  transition: border-color 0.25s ease;
  resize: none;
}

.cta-input:focus {
  border-color: var(--text);
}

.cta-input::placeholder {
  color: var(--muted);
}

.cta-textarea {
  min-height: 100px;
}

.cta-submit {
  width: 100%;
  padding: 14px;
  background: var(--text);
  color: var(--white);
  border: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.35s ease;
  font-family: var(--font);
}

.cta-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.cta-submit:hover::before {
  transform: translateX(0);
}

.cta-submit span {
  position: relative;
  z-index: 1;
}



/* ── RESPONSIVE HOME ── */
/* ── 1280px ── */
@media (max-width: 1280px) {
  .hero-content              { padding: 0 60px 80px 60px; }
  .about                     { padding: 80px 60px 20px 60px; gap: 60px; }
  .approach                  { padding: 20px 60px; }
  .clients                   { padding: 32px 160px; }
  .cta-left                  { padding: 80px 40px; }
  .footer-main               { padding: 56px 32px 40px; }
  .footer-main > div:nth-child(2),
  .footer-main > div:nth-child(3) { padding-left: 40px; }
}

/* ── 1024px ── */
@media (max-width: 1024px) {
  .hero-content              { padding: 0 48px 60px 48px; }
  .about                     { padding: 60px 48px 20px 48px; gap: 48px; }
  .about-right img           { height: 520px; }
  .services-intro-text       { margin-left: 80px; }
  .services-intro-btn        { margin-right: 80px; }
  .services-grid             { max-width: 100%; padding: 0 48px; }
  .approach                  { padding: 20px 48px; }
  .approach-panel-left       { margin-left: 40px; }
  .approach-panel-right      { margin-right: 40px; }
  .showcase-header           { padding: 0 48px; }
  .showcase-slider-wrap      { padding: 0 48px; }
  .showcase-img-wrap img     { height: 380px; }
  .showcase-detail           { width: 240px; }
  .clients                   { padding: 32px 80px; }
  .cta-left                  { max-width: 480px; padding: 60px 40px; }
  .cta-form-wrap             { margin-left: 80px; }
  .footer-main               { padding: 48px 32px 36px; }
  .footer-main > div:nth-child(2),
  .footer-main > div:nth-child(3) { padding-left: 32px; }
}

/* ── 900px ── */
@media (max-width: 900px) {
  /* Navbar */
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 24px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    gap: 0;
    z-index: 998;
  }
  .nav-menu.nav-menu-open    { display: flex; }
  .nav-link                  { padding: 12px 0; font-size: 0.85rem; width: 100%; border-bottom: 1px solid var(--border); }
  .nav-item:last-child .nav-link { border-bottom: none; }
  .nav-item-active .nav-link::after { display: none; }
  .nav-share-label           { display: none; }
  .nav-hamburger             { display: flex; }
  .nav-actions               { gap: 2px; }

  /* Hero */
  .hero-content              { padding: 0 32px 60px 32px; }
  .hero-title                { font-size: clamp(2rem, 5vw, 3rem); }

  /* About */
  .about                     { flex-direction: column; padding: 60px 32px; gap: 40px; }
  .about-left                { max-width: 100%; }
  .about-right               { max-width: 100%; width: 100%; }
  .about-right img           { height: 400px; }
  .about-specialization      { min-width: unset; width: 100%; flex-wrap: wrap; }
  .about::before             { width: 100%; background-position: center center; opacity: 0.35; }

  /* Services */
  .services                  { padding: 0 0 60px 0; }
  .services-intro-band       { padding: 24px 32px; flex-direction: column; text-align: center; gap: 20px; }
  .services-intro-text       { margin-left: 0; font-size: 1rem; }
  .services-intro-btn        { margin-right: 0; }
  .services-header           { padding: 40px 32px 0; }
  .services-grid             { grid-template-columns: 1fr 1fr; gap: 24px; padding: 0 32px; }
  .services-footer           { padding: 0 32px; }

  /* Approach */
  .approach                  { padding: 60px 32px; }
  .approach-panel-active     { flex-direction: column; gap: 40px; }
  .approach-panel-left       { max-width: 100%; text-align: left; margin: 0; }
  .approach-panel-right      { max-width: 100%; width: 100%; margin: 0; }
  .approach-panel-img-wrap img { height: 300px; }
  .approach-tabs             { flex-wrap: wrap; gap: 4px; justify-content: flex-start; }
  .approach-tab-sep          { display: none; }

  /* Showcase */
  .showcase                  { padding: 60px 0 0 0; }
  .showcase-header           { padding: 0 32px; margin-bottom: 32px; }
  .showcase-slider-wrap      { padding: 0 48px; }
  .showcase-slide-active     { display: flex; flex-direction: column; }
  .showcase-img-wrap img     { height: 300px; }
  .showcase-detail           { width: 100%; border: 1px solid var(--border); border-top: none; }

  /* Clients */
  .clients                   { padding: 24px 32px; }
  .clients-item              { flex: 0 0 33.33%; }

  /* CTA */
  .cta-section               { flex-direction: column; }
  .cta-left                  { max-width: 100%; padding: 60px 32px; }
  .cta-form-wrap             { width: 100%; margin: 0; padding: 40px 32px; align-self: auto; }

  /* Footer */
  .footer-main               { grid-template-columns: 1fr; gap: 32px; padding: 40px 32px; }
  .footer-main > div:nth-child(2),
  .footer-main > div:nth-child(3) { text-align: left; padding-left: 0; }
  .footer-main > div:nth-child(2) .footer-contacts,
  .footer-main > div:nth-child(2) .footer-address,
  .footer-main > div:nth-child(3) .footer-contacts,
  .footer-main > div:nth-child(3) .footer-address { text-align: left; }
  .footer-copy               { margin-left: 0; }
  .footer-bottom-inner       { padding: 16px 32px; margin-left: 0; }
}

/* ── 600px ── */
@media (max-width: 600px) {
  .clients-item              { flex: 0 0 50%; }
  .clients-arrow             { margin: 0 8px; width: 36px; height: 36px; font-size: 0.85rem; }
  .svc-modal-body    { padding: 24px 20px 28px; }
  .svc-modal-img-wrap { aspect-ratio: 16 / 9; }
}

/* ── 480px ── */
@media (max-width: 480px) {
  /* Hero */
  .hero-content              { padding: 0 20px 48px 20px; }
  .hero-title                { font-size: clamp(1.8rem, 7vw, 2.8rem); }

  /* About */
  .about                     { padding: 48px 20px; }
  .about-right img           { height: 280px; }
  .about-specialization      { flex-direction: column; gap: 12px; padding: 12px; }
  .about-specialization-sep  { width: 40px; height: 2px; margin: 0; }
  .about::before             { width: 100%; background-size: 80%; background-position: center center; opacity: 0.35; }

  /* Services */
  .services-intro-band       { padding: 20px; }
  .services-header           { padding: 32px 20px 0; }
  .services-grid             { grid-template-columns: 1fr; padding: 0 20px; }
  .services-footer           { padding: 0 20px; }

  /* Approach */
  .approach                  { padding: 48px 20px; }
  .approach-tabs             { justify-content: center; }
  .approach-tab              { padding: 10px 14px; font-size: 0.7rem; }

  /* Showcase */
  .showcase-header           { padding: 0 20px; }
  .showcase-slider-wrap      { padding: 0 36px; }
  .showcase-img-wrap img     { height: 240px; }

  /* Clients */
  .clients                   { padding: 24px 16px; }
  .clients-item img          { height: 80px; width: 80px; }

  /* CTA */
  .cta-left                  { padding: 48px 20px; }
  .cta-form-wrap             { padding: 32px 20px; }
  .cta-form-title            { font-size: 1.2rem; }

  /* Footer */
  .footer-main               { padding: 40px 20px; gap: 24px; }
  .footer-bottom-inner       { padding: 16px 20px; }
  
  /* WhatsApp Float */
  .wa-float                  { width: 48px !important; height: 48px !important; bottom: 20px !important; right: 20px !important; }
}

/* ── 320px ── */
@media (max-width: 320px) {
  .nav-inner                 { height: 60px; }
  .nav-logo img              { height: 36px; }
  .nav-taglines              { display: none; }
  .hero-content              { padding: 0 16px 40px 16px; }
  .about                     { padding: 36px 16px; }
  .services-grid             { padding: 0 16px; }
  .approach                  { padding: 36px 16px; }
  .showcase-slider-wrap      { padding: 0 28px; }
  .cta-left                  { padding: 36px 16px; }
  .cta-form-wrap             { padding: 24px 16px; }
  .footer-main               { padding: 32px 16px; }
  .footer-bottom-inner       { padding: 12px 16px; }
  .wa-float                  { width: 44px !important; height: 44px !important; bottom: 16px !important; right: 16px !important; }


}

/* ============================================================
   2. ABOUT
   ============================================================ */
/* ── HERO ABOUT ── */
.about-hero {
  position: relative;
  width: 100%;
  height: 420px;
  background-image: url('../images/architecture/abo_hero.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 40, 55, 0.62);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.about-hero-title {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--white);
  margin-bottom: 0;
}

.about-hero-divider {
  width: 260px;
  height: 2px;
  background: var(--white);
  opacity: 0.6;
}

.about-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
}

.breadcrumb-link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link:hover {
  color: var(--white);
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb-current {
  color: var(--white);
  font-weight: 600;
}

/* ── ABOUT SECTIONS ── */
.about-sections {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.about-block {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-block.about-block-reverse {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
}

.about-block-text {
  flex: 1;
  text-align: center;
}

.about-block-title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-block-desc {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--accent);
  max-width: 380px;
  margin: 0 auto;
}

.about-block-image {
  flex: 1;
}

.about-block-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

/* ── WHAT DEFINES US ── */
.defines-section {
  width: 100%;
  background: #111111;
  padding: 80px 32px;
}

.defines-header {
  max-width: 1100px;
  margin: 0 auto 60px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.defines-header-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.defines-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.defines-label-line {
  display: block;
  width: 40px;
  height: 2px;
  background: #c9a84c;
}

.defines-label-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #c9a84c;
  text-transform: uppercase;
}

.defines-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.defines-desc {
  max-width: 420px;
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  align-self: center;
}

.defines-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.defines-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  cursor: default;
}

.defines-card:hover {
  background: #1f1f1f;
  border-color: #c9a84c;
  transform: translateY(-4px);
}

.defines-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.defines-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a84c;
  transition: background 0.3s ease;
}

.defines-card:hover .defines-card-icon {
  background: rgba(201, 168, 76, 0.25);
}

.defines-card-num {
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
}

.defines-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

.defines-card-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
}

/* ── FAQ ── */
.faq-section {
  position: relative;
  width: 100%;
  background: var(--white);
  padding: 40px 32px 24px;
  overflow: hidden;
}

.faq-bg-sketch {
  position: absolute;
  inset: 0;
  /*background-image: url('/images/architecture/sketch.webp');*/
  background-size: contain;
  background-position: center left;
  background-repeat: no-repeat;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.faq-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.faq-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-label-line {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--primary);
}

.faq-label-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--primary);
  text-transform: uppercase;
}

.faq-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question.faq-open {
  color: var(--primary);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--primary);
}

.faq-question.faq-open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

.faq-answer.faq-answer-open {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--accent);
}

.faq-right {
  flex: 1;
  position: sticky;
  top: 100px;
}

.faq-right img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* ── GALLERY ── */
.gallery-section {
  width: 100%;
  background: var(--white);
  padding: 48px 0 28px;
  overflow: hidden;
}
.gallery-grid {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: galleryScroll 95s linear infinite;
}
.gallery-grid:hover {
  animation-play-state: paused;
}
.gallery-item {
  flex: 0 0 260px;
  position: relative;
  overflow: hidden;
  background: #f3f3f3;
}
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, filter 0.35s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.96);
}
@keyframes galleryScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

   RESPONSIVE — Desktop First (max-width)
   ============================================================ */

/* ── 1280px ── */
@media (max-width: 1280px) {
}

/* ── 1024px ── */
@media (max-width: 1024px) {
}

/* ── 900px ── */
@media (max-width: 900px) {
  /* Navbar */
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 24px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    gap: 0;
    z-index: 998;
  }
  .nav-menu.nav-menu-open    { display: flex; }
  .nav-link                  { padding: 12px 0; font-size: 0.85rem; width: 100%; border-bottom: 1px solid var(--border); }
  .nav-item:last-child .nav-link { border-bottom: none; }
  .nav-item-active .nav-link::after { display: none; }
  .nav-share-label           { display: none; }
  .nav-hamburger             { display: flex; }
  .nav-actions               { gap: 2px; }
  
  /* About Sections */
  .about-block,
  .about-block.about-block-reverse      { flex-direction: column; gap: 32px; }
  .about-block-image img                { height: 240px; }
  .about-sections                       { padding: 60px 24px; gap: 60px; }
  .about-block-text                     { order: 1; width: 100%; text-align: center }
  .about-block-image                    { order: 2; width: 100%; text-align: center }
  
  /* What Defines Us */
  .defines-header           { flex-direction: column; gap: 24px; }
  .defines-desc             { max-width: 100%; }
  .defines-grid             { grid-template-columns: repeat(2, 1fr); }
  .defines-title            { font-size: 2.2rem; }

  /* FAQ */
  .faq-section              { padding: 32px 24px 24px; }
  .faq-inner                { flex-direction: column; gap: 40px; }
  .faq-right                { position: static; width: 100%; }
  .faq-right img            { height: 280px; }
  .faq-title                { font-size: 1.6rem; }
  
  /* Gallery */
  .gallery-section          { padding: 40px 24px 20px; }
  .gallery-item             { flex: 0 0 220px; }
  .gallery-item img         { height: 240px; }
  
  /* Footer */
  .footer-main               { grid-template-columns: 1fr; gap: 32px; padding: 40px 32px; }
  .footer-main > div:nth-child(2),
  .footer-main > div:nth-child(3) { text-align: left; padding-left: 0; }
  .footer-main > div:nth-child(2) .footer-contacts,
  .footer-main > div:nth-child(2) .footer-address,
  .footer-main > div:nth-child(3) .footer-contacts,
  .footer-main > div:nth-child(3) .footer-address { text-align: left; }
  .footer-copy               { margin-left: 0; }
  .footer-bottom-inner       { padding: 16px 32px; margin-left: 0; }
}

/* ── 600px ── */
@media (max-width: 600px) {
  /* About Sections */
  .about-sections           { padding: 40px 16px; gap: 40px; }
  .about-block-title        { font-size: 1.2rem; }
  .about-block-desc         { font-size: 0.88rem; }
  .about-block-image img    { height: 200px; }
  
  /* What Defines Us */
  .defines-section          { padding: 60px 16px; }
  .defines-grid             { grid-template-columns: 1fr; }
  .defines-title            { font-size: 1.8rem; }

  /* FAQ */
  .faq-section              { padding: 28px 16px 24px; }
  .faq-right img            { height: 220px; }
  
  /* Gallery */
  .gallery-section          { padding: 32px 16px 16px; }
  .gallery-item             { flex: 0 0 220px; }
  .gallery-item img         { height: 240px; }
}

/* ── 480px ── */
@media (max-width: 480px) {
  /* WhatsApp Float */
  .wa-float                  { width: 48px !important; height: 48px !important; bottom: 20px !important; right: 20px !important; }
}

/* ── 320px ── */
@media (max-width: 320px) {
  .nav-inner                 { height: 60px; }
  .nav-logo img              { height: 36px; }
  .nav-taglines              { display: none; }


}

/* ============================================================
   3. BLOG
   ============================================================ */
/* ── HERO BLOG ── */
.blog-hero {
  position: relative;
  width: 100%;
  height: 420px;
  background-image: url('../images/architecture/blog_hero.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 40, 55, 0.62);
}

.blog-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.blog-hero-title {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--white);
  margin-bottom: 0;
}

.blog-hero-divider {
  width: 260px;
  height: 2px;
  background: var(--white);
  opacity: 0.6;
}

.blog-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
}

.breadcrumb-link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link:hover {
  color: var(--white);
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb-current {
  color: var(--white);
  font-weight: 600;
}

/* ── BLOG SECTION ── */
.blog-section {
  background: var(--white);
  padding: 80px 0 100px;
}

.blog-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Blog Intro ── */
.blog-intro {
  text-align: center;
  margin-bottom: 60px;
}

.blog-intro-label {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.blog-intro-title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--primary);
  margin-bottom: 16px;
}

.blog-intro-desc {
  font-size: 0.95rem;
  color: var(--accent);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Blog Grid ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

/* ── Blog Card ── */
.blog-card {
  cursor: pointer;
  outline: none;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  transition: border-color 0.25s ease;
}

.blog-card:hover {
  border-color: var(--primary);
}

.blog-card:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ── Card Image ── */
.blog-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--accent2);
  margin-bottom: 20px;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover .blog-card-img {
  transform: scale(1.07);
}

.blog-card-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0);
  transition: background 0.35s ease;
}

.blog-card:hover .blog-card-img-overlay {
  background: rgba(10, 10, 10, 0.32);
}

/* Teks "BACA ARTIKEL" muncul saat hover */
.blog-card-read {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--white);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.blog-card:hover .blog-card-read {
  opacity: 1;
  transform: translateY(0);
}

/* Error state gambar */
.blog-card-img-wrap.img-error {
  background: var(--accent2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-img-wrap.img-error::after {
  content: 'No Image';
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* ── Card Body ── */
.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  padding: 0 4px 16px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-card-date {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}

.blog-card-sep {
  color: var(--border);
  font-size: 0.9rem;
}

.blog-card-author {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.blog-card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--primary);
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.blog-card:hover .blog-card-title {
  color: var(--accent);
}

.blog-card-excerpt {
  font-size: 0.83rem;
  color: var(--accent);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Card Button ── */
.blog-card-btn {
  margin-top: 6px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  background: transparent;
  border: 1.5px solid var(--primary);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}

.blog-card-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.blog-card-btn:hover::before {
  transform: scaleX(1);
}

.blog-card-btn:hover {
  color: var(--white);
}

/* ── ARTICLE MODAL ── */
.article-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.article-modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.68);
  animation: fadeIn 0.25s ease;
}

.modal-panel {
  position: relative;
  z-index: 1;
  background: var(--white);
  width: 100%;
  max-width: 780px;
  max-height: 92vh;
  overflow-y: auto;
  margin-top: 4vh;
  animation: slideUp 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  scroll-behavior: smooth;
  /* Scrollbar styling */
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.modal-panel::-webkit-scrollbar {
  width: 4px;
}

.modal-panel::-webkit-scrollbar-track {
  background: transparent;
}

.modal-panel::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Kunci scroll body saat modal terbuka */
body.modal-open {
  overflow: hidden;
}

/* ── Modal Close Button ── */
.modal-close {
  position: absolute;
  top: 0;
  right: 0;
  /*float: right;*/
  z-index: 10;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  /*margin-left: auto;*/
}

.modal-close:hover {
  background: var(--accent);
}

/* ── Modal Hero Image ── */
.modal-hero {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: var(--accent2);
  /*margin-top: -44px;*/ /* naik ke balik tombol close */
}

.modal-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.2) 0%, transparent 60%);
}

/* ── Modal Content ── */
.modal-content {
  padding: 40px 48px 56px;
}

.modal-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.modal-date {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

.modal-sep {
  color: var(--border);
}

.modal-author {
  font-size: 0.72rem;
  color: var(--muted);
}

.modal-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: var(--primary);
  margin-bottom: 20px;
}

.modal-divider {
  width: 56px;
  height: 2px;
  background: var(--primary);
  margin-bottom: 28px;
}

.modal-body {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--accent);
}

.modal-body p {
  margin-bottom: 4px;
}

.modal-body p:last-child {
  margin-bottom: 0;
}

.modal-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--primary);
  margin-top: 12px;
  margin-bottom: 4px;
}

.modal-body h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 12px;
  margin-bottom: 4px;
}

/* ── PAGINATION ── */
.blog-pagination {
  display        : flex;
  align-items    : center;
  justify-content: center;
  gap            : 8px;
  margin-top     : 64px;
}

.pg-btn {
  min-width      : 42px;
  height         : 42px;
  padding        : 0 10px;
  display        : flex;
  align-items    : center;
  justify-content: center;
  font-size      : 0.8rem;
  font-weight    : 600;
  letter-spacing : 0.04em;
  color          : var(--accent);
  background     : transparent;
  border         : 1.5px solid var(--border);
  cursor         : pointer;
  transition     : color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.pg-btn:hover:not(:disabled) {
  color          : var(--white);
  background     : var(--primary);
  border-color   : var(--primary);
}

.pg-btn:disabled {
  opacity        : 0.35;
  cursor         : not-allowed;
}

.pg-btn.pg-active {
  color          : var(--white);
  background     : var(--primary);
  border-color   : var(--primary);
}

.pg-prev,
.pg-next {
  font-size      : 0;   /* sembunyikan teks fallback, tampilkan SVG saja */
}

/* ── MODAL CTA WHATSAPP ── */
.modal-cta {
  margin-top     : 48px;
  border-top     : 1px solid var(--border);
  padding-top    : 40px;
}

.modal-cta-inner {
  background     : var(--primary);
  padding        : 40px 44px;
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  gap            : 32px;
}

.modal-cta-text {
  flex           : 1;
}

.modal-cta-label {
  font-size      : 0.65rem;
  font-weight    : 700;
  letter-spacing : 0.22em;
  color          : rgba(255,255,255,0.55);
  margin-bottom  : 10px;
  text-transform : uppercase;
}

.modal-cta-title {
  font-size      : 1.2rem;
  font-weight    : 700;
  color          : var(--white);
  letter-spacing : 0.02em;
  margin-bottom  : 10px;
  line-height    : 1.35;
}

.modal-cta-desc {
  font-size      : 0.82rem;
  color          : rgba(255,255,255,0.65);
  line-height    : 1.75;
}

.modal-cta-btn {
  flex-shrink    : 0;
  display        : inline-flex;
  align-items    : center;
  gap            : 10px;
  padding        : 14px 28px;
  font-size      : 0.72rem;
  font-weight    : 700;
  letter-spacing : 0.14em;
  text-transform : uppercase;
  text-decoration: none;
  color          : var(--primary);
  background     : var(--white);
  border         : none;
  position       : relative;
  overflow       : hidden;
  cursor         : pointer;
  transition     : color 0.3s ease;
  white-space    : nowrap;
}

.modal-cta-btn::before {
  content        : '';
  position       : absolute;
  inset          : 0;
  background     : #25D366;
  transform      : scaleX(0);
  transform-origin: left;
  transition     : transform 0.3s ease;
}

.modal-cta-btn:hover::before {
  transform      : scaleX(1);
}

.modal-cta-btn:hover {
  color          : var(--white);
}

   RESPONSIVE — Desktop First (max-width)
   ============================================================ */

/* ── 1280px ── */
@media (max-width: 1280px) {
  .blog-container              { padding: 0 40px; }
  .blog-grid                   { gap: 36px 28px; }
}

/* ── 1024px ── */
@media (max-width: 1024px) {
  .blog-section                { padding: 64px 0 80px; }
  .blog-container              { padding: 0 32px; }
  .blog-grid                   { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .blog-intro                  { margin-bottom: 48px; }
  .modal-content               { padding: 32px 36px 48px; }
  .modal-title                 { font-size: 1.5rem; }
}

/* ── 900px ── */
@media (max-width: 900px) {
  /* Navbar */
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 24px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    gap: 0;
    z-index: 998;
  }
  .nav-menu.nav-menu-open    { display: flex; }
  .nav-link                  { padding: 12px 0; font-size: 0.85rem; width: 100%; border-bottom: 1px solid var(--border); }
  .nav-item:last-child .nav-link { border-bottom: none; }
  .nav-item-active .nav-link::after { display: none; }
  .nav-share-label           { display: none; }
  .nav-hamburger             { display: flex; }
  .nav-actions               { gap: 2px; }
  /* Footer */
  .footer-main               { grid-template-columns: 1fr; gap: 32px; padding: 40px 32px; }
  .footer-main > div:nth-child(2),
  .footer-main > div:nth-child(3) { text-align: left; padding-left: 0; }
  .footer-main > div:nth-child(2) .footer-contacts,
  .footer-main > div:nth-child(2) .footer-address,
  .footer-main > div:nth-child(3) .footer-contacts,
  .footer-main > div:nth-child(3) .footer-address { text-align: left; }
  .footer-copy               { margin-left: 0; }
  .footer-bottom-inner       { padding: 16px 32px; margin-left: 0; }
  /* Modal */
  .modal-panel                 { max-width: 100%; margin-top: 0; max-height: 100vh; border-radius: 0; }
  .modal-hero                  { height: 240px; }
  .modal-content               { padding: 28px 24px 48px; }
  .modal-title                 { font-size: 1.35rem; }
}

/* ── 600px ── */
@media (max-width: 600px) {
  .blog-section                { padding: 48px 0 64px; }
  .blog-container              { padding: 0 20px; }
  .blog-grid                   { grid-template-columns: 1fr; gap: 40px; }
  .blog-intro-title            { font-size: 1.75rem; }
  .blog-hero-title             { font-size: 2.4rem; }
  .modal-cta-inner             { flex-direction: column; padding: 28px 24px; align-items: flex-start; }
  .modal-cta-btn               { width: 100%; justify-content: center; }
}

/* ── 480px ── */
@media (max-width: 480px) {
  /* WhatsApp Float */
  .wa-float                  { width: 48px !important; height: 48px !important; bottom: 20px !important; right: 20px !important; }
  .blog-hero                   { height: 260px; }
  .blog-hero-title             { font-size: 2rem; }
  .blog-hero-divider           { width: 160px; }
  .wa-float                    { width: 48px !important; height: 48px !important; bottom: 20px !important; right: 20px !important; }
  .modal-content               { padding: 24px 20px 40px; }
  .modal-title                 { font-size: 1.2rem; }
  .modal-hero                  { height: 200px; }
}

/* ── 320px ── */
@media (max-width: 320px) {
  .nav-inner                 { height: 60px; }
  .nav-logo img              { height: 36px; }
  .nav-taglines              { display: none; }
  .blog-intro-title            { font-size: 1.5rem; }


}

/* ============================================================
   4. CONTACT
   ============================================================ */
/* ── HERO CONTACT ── */
.contact-hero {
  position: relative;
  width: 100%;
  height: 420px;
  background-image: url('../images/architecture/cont_hero.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 40, 55, 0.62);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact-hero-title {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--white);
  margin-bottom: 0;
}

.contact-hero-divider {
  width: 260px;
  height: 2px;
  background: var(--white);
  opacity: 0.6;
}

.contact-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
}

.breadcrumb-link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link:hover {
  color: var(--white);
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb-current {
  color: var(--white);
  font-weight: 600;
}

/* ── CONTACT SECTION ── */
.contact-section {
  background: var(--white);
  padding   : 88px 0 96px;
}

.contact-container {
  max-width: 1280px;
  margin   : 0 auto;
  padding  : 0 64px;
  display  : grid;
  grid-template-columns: 1fr 1fr;
  gap      : 80px;
  align-items: start;
}

/* ── Kiri ── */
.contact-left { display: flex; flex-direction: column; gap: 48px; }

.contact-header { display: flex; flex-direction: column; gap: 14px; }

/*.contact-label {
  font-size     : 0.68rem;
  font-weight   : 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color         : var(--muted);
}*/

.contact-title {
  font-size     : 2.2rem;
  font-weight   : 700;
  letter-spacing: 0.02em;
  color         : var(--primary);
  line-height   : 1.2;
}

.contact-desc {
  font-size  : 0.9rem;
  line-height: 1.75;
  color      : var(--accent);
  max-width  : 420px;
}

/* ── Office/Workshop info ── */
.contact-offices {
  display : flex;
  gap     : 0;
  align-items: flex-start;
}

.contact-office {
  flex   : 1;
  display: flex;
  flex-direction: column;
  gap    : 10px;
}

.offices-vdivider {
  width     : 1px;
  background: var(--border);
  align-self: stretch;
  margin    : 0 32px;
  flex-shrink: 0;
}

.office-type-label {
  font-size     : 0.65rem;
  font-weight   : 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color         : var(--muted);
  padding-bottom: 8px;
  border-bottom : 2px solid var(--primary);
  display       : inline-block;
}

.office-city {
  font-size  : 1.05rem;
  font-weight: 700;
  color      : var(--primary);
  margin-top : 4px;
}

.office-address {
  font-style : normal;
  font-size  : 0.83rem;
  line-height: 1.85;
  color      : var(--accent);
}

.office-contacts {
  display       : flex;
  flex-direction: column;
  gap           : 4px;
  margin-top    : 4px;
}

.office-contact-item {
  font-size  : 0.83rem;
  color      : var(--accent);
  display    : flex;
  gap        : 6px;
  align-items: baseline;
}

.office-contact-label {
  font-weight   : 700;
  color         : var(--primary);
  min-width     : 16px;
  flex-shrink   : 0;
}

.office-contact-link {
  color          : var(--accent);
  text-decoration: none;
  transition     : color 0.2s ease;
}

.office-contact-link:hover { color: var(--primary); }

/* ── Kanan: Form ── */
.contact-right { padding-top: 8px; }

.contact-form-wrap {
  display       : flex;
  flex-direction: column;
  gap           : 0;
}

.form-field {
  position     : relative;
  margin-bottom: 28px;
}

.form-input {
  width         : 100%;
  background    : transparent;
  border        : none;
  border-bottom : 1px solid var(--border);
  padding       : 12px 0 10px;
  font-size     : 0.88rem;
  font-family   : var(--font);
  color         : var(--text);
  outline       : none;
  transition    : border-color 0.25s ease;
  display       : block;
}

.form-input::placeholder { color: var(--muted); font-size: 0.88rem; }

.form-input:focus { border-bottom-color: transparent; }

/* Garis animasi saat fokus */
.form-line {
  position  : absolute;
  bottom    : 0;
  left      : 0;
  width     : 0;
  height    : 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.form-field:focus-within .form-line { width: 100%; }

.form-textarea {
  resize    : none;
  min-height: 120px;
  line-height: 1.6;
}

/* ── Submit Button ── */
.form-submit-btn {
  margin-top     : 12px;
  align-self     : flex-start;
  display        : inline-flex;
  align-items    : center;
  gap            : 12px;
  padding        : 14px 32px;
  font-size      : 0.72rem;
  font-weight    : 700;
  letter-spacing : 0.18em;
  text-transform : uppercase;
  color          : var(--white);
  background     : var(--primary);
  border         : none;
  cursor         : pointer;
  position       : relative;
  overflow       : hidden;
  transition     : color 0.3s ease;
}

.form-submit-btn::before {
  content         : '';
  position        : absolute;
  inset           : 0;
  background      : var(--accent);
  transform       : scaleX(0);
  transform-origin: right;
  transition      : transform 0.35s ease;
}

.form-submit-btn:hover::before { transform: scaleX(1); }

/* ── MAPS SECTION ── */
.maps-section {
  background: var(--accent2);
}

.maps-grid {
  display              : grid;
  grid-template-columns: 1fr 1fr;
}

.map-item {
  display       : flex;
  flex-direction: column;
}

.map-label-bar {
  background : var(--primary);
  padding    : 16px 32px;
  display    : flex;
  align-items: center;
  gap        : 16px;
}

.map-label-type {
  font-size     : 0.65rem;
  font-weight   : 700;
  letter-spacing: 0.22em;
  color         : rgba(255,255,255,0.55);
  text-transform: uppercase;
}

.map-label-city {
  font-size     : 0.8rem;
  font-weight   : 700;
  letter-spacing: 0.08em;
  color         : var(--white);
  text-transform: uppercase;
}

.map-label-bar::before {
  content   : '';
  width     : 1px;
  height    : 18px;
  background: rgba(255,255,255,0.25);
  order     : 1; /* antara type dan city */
}

/* Reorder: type — divider — city */
.map-label-type { order: 0; }
.map-label-bar::before { order: 1; }
.map-label-city { order: 2; }

.map-embed {
  height  : 420px;
  width   : 100%;
  overflow: hidden;
  display : block;
}

.map-embed iframe {
  display: block;
  width  : 100%;
  height : 100%;
  border : 0;
}

   RESPONSIVE — Desktop First (max-width)
   ============================================================ */

/* ── 1280px ── */
@media (max-width: 1280px) {
  .contact-container           { padding: 0 48px; gap: 60px; }
}

/* ── 1024px ── */
@media (max-width: 1024px) {
  .contact-section             { padding: 72px 0 80px; }
  .contact-container           { padding: 0 40px; gap: 48px; }
  .contact-title               { font-size: 1.9rem; }
  .map-embed                   { height: 360px; }
}

/* ── 900px ── */
@media (max-width: 900px) {
  /* Navbar */
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 24px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    gap: 0;
    z-index: 998;
  }
  .nav-menu.nav-menu-open    { display: flex; }
  .nav-link                  { padding: 12px 0; font-size: 0.85rem; width: 100%; border-bottom: 1px solid var(--border); }
  .nav-item:last-child .nav-link { border-bottom: none; }
  .nav-item-active .nav-link::after { display: none; }
  .nav-share-label           { display: none; }
  .nav-hamburger             { display: flex; }
  .nav-actions               { gap: 2px; }
  /* Contact */
  .contact-container           { grid-template-columns: 1fr; gap: 48px; padding: 0 32px; }
  .contact-hero                { height: 320px; }
  .contact-hero-title          { font-size: 3rem; }
  .contact-desc                { max-width: 100%; }
  .maps-grid                   { grid-template-columns: 1fr; }
  /* Footer */
  .footer-main               { grid-template-columns: 1fr; gap: 32px; padding: 40px 32px; }
  .footer-main > div:nth-child(2),
  .footer-main > div:nth-child(3) { text-align: left; padding-left: 0; }
  .footer-main > div:nth-child(2) .footer-contacts,
  .footer-main > div:nth-child(2) .footer-address,
  .footer-main > div:nth-child(3) .footer-contacts,
  .footer-main > div:nth-child(3) .footer-address { text-align: left; }
  .footer-copy               { margin-left: 0; }
  .footer-bottom-inner       { padding: 16px 32px; margin-left: 0; }
}

/* ── 600px ── */
@media (max-width: 600px) {
  .contact-section             { padding: 56px 0 64px; }
  .contact-container           { padding: 0 20px; gap: 40px; }
  .contact-title               { font-size: 1.7rem; }
  .contact-hero-title          { font-size: 2.4rem; }
  .contact-offices             { flex-direction: column; gap: 32px; }
  .offices-vdivider            { width: 100%; height: 1px; margin: 0; }
  .map-embed                   { height: 280px; }
}

/* ── 480px ── */
@media (max-width: 480px) {
  .contact-hero                { height: 260px; }
  .contact-hero-title          { font-size: 2rem; }
  .contact-hero-divider        { width: 160px; }
  .form-submit-btn             { width: 100%; justify-content: center; }
  /* WhatsApp Float */
  .wa-float                  { width: 48px !important; height: 48px !important; bottom: 20px !important; right: 20px !important; }
}

/* ── 320px ── */
@media (max-width: 320px) {
  .nav-inner                 { height: 60px; }
  .nav-logo img              { height: 36px; }
  .nav-taglines              { display: none; }
  .contact-title               { font-size: 1.5rem; }


}

/* ============================================================
   5. PROJECTS
   ============================================================ */
/* ── HERO PROJECTS ── */
.projects-hero {
  position: relative;
  width: 100%;
  height: 420px;
  background-image: url('../images/architecture/proj_hero.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.projects-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 40, 55, 0.62);
}

.projects-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.projects-hero-title {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--white);
  margin-bottom: 0;
}

.projects-hero-divider {
  width: 260px;
  height: 2px;
  background: var(--white);
  opacity: 0.6;
}

.projects-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
}

.breadcrumb-link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link:hover {
  color: var(--white);
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb-current {
  color: var(--white);
  font-weight: 600;
}

/* ── CLIENT LOGO SLIDER ── */
.clients {
  margin-top: 40px;
  padding: 32px 240px;
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.clients::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  background: var(--border);
}

.clients-viewport {
  flex: 1;
  overflow: hidden;
}

.clients-track {
  display: flex;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.clients-item {
  flex: 0 0 25%; /* tampil 4 sekaligus */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  border-right: none;
}

.clients-item img {
  height: 130px;
  width: 130px;
  object-fit: contain;
}

.clients-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%; /* lingkaran */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  color: var(--text);
  transition: background 0.3s ease, color 0.3s ease;
  margin: 0 24px;
}

.clients-arrow:hover {
  background: var(--text);
  color: var(--white);
}

/* ── PROJECTS SECTION ── */
.proj-section {
  padding: 64px 48px 80px;
  background: var(--white);
}

/* ── FILTER BAR ── */
.proj-filter-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.proj-filter-bar {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  padding: 0 8px;
  background: var(--white);
  flex-wrap: wrap;
  justify-content: center;
}

.proj-filter-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 18px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.proj-filter-btn:hover {
  color: var(--text);
}

.proj-filter-btn.proj-filter-active {
  color: #c9a84c;
}

.proj-filter-sep {
  color: var(--border);
  font-size: 1rem;
  user-select: none;
}

/* ── PROJECT GRID ── */
.proj-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── PROJECT CARD ── */
.proj-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  /* hidden = untuk load more */
}

.proj-card.proj-hidden {
  display: none;
}

.proj-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.proj-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, filter 0.45s ease;
  filter: grayscale(20%);
}

/* Kategori badge pojok kanan atas */
.proj-card-cat {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(17, 17, 17, 0.55);
  color: var(--white);
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 5px 10px;
  backdrop-filter: blur(2px);
}

/* Hover overlay — gelap + nama proyek */
.proj-card-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.62);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.proj-card-hover-name {
  background: var(--white);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.proj-card-hover-name::after {
  content: '\2192';
  margin-left: auto;
  font-size: 1.1rem;
}

/* Aktifkan overlay saat hover */
.proj-card:hover .proj-card-img {
  transform: scale(1.06);
  filter: grayscale(0%);
}

.proj-card:hover .proj-card-hover-overlay {
  opacity: 1;
}

/* Nama bar bawah card */
.proj-card-name-bar {
  display: none; /* tersembunyi, nama sudah ada di overlay */
}

/* ── LOAD MORE ── */
.proj-loadmore-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.proj-loadmore-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 48px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.proj-loadmore-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.proj-loadmore-btn:disabled {
  opacity: 0.35;
  cursor: default;
  background: none;
  color: var(--muted);
  border-color: var(--border);
}


/* ── PROJECT MODAL ── */
.proj-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(3px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.30s ease;
}

.proj-modal-backdrop.proj-modal-open {
  opacity: 1;
  pointer-events: all;
}

.proj-modal {
  background: var(--white);
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.35s ease;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.proj-modal-backdrop.proj-modal-open .proj-modal {
  transform: translateY(0);
}

/* Tombol X */
.proj-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 10;
  background: rgba(17, 17, 17, 0.60);
  color: var(--white);
  border: none;
  width: 32px;
  height: 32px;
  font-size: 0.80rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.proj-modal-close:hover {
  background: var(--primary);
}

/* Layout dua kolom */
.proj-modal-inner {
  display: grid;
  grid-template-columns: 1fr 300px;
}

/* ── KIRI: SLIDER ── */
.proj-modal-left {
  display: flex;
  flex-direction: column;
}

.proj-modal-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--primary);
}

.proj-modal-slides {
  display: flex;
  height: 100%;
  transition: transform 0.40s ease;
}

.proj-modal-slide {
  min-width: 100%;
  height: 100%;
}

.proj-modal-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Panah navigasi */
.proj-modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(17, 17, 17, 0.55);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 5;
}

.proj-modal-arrow:hover {
  background: var(--primary);
}

.proj-modal-prev { left: 12px; }
.proj-modal-next { right: 12px; }

/* Dots */
.proj-modal-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}

.proj-modal-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.2s ease;
}

.proj-modal-dot.active {
  background: #c9a84c;
}

/* Deskripsi bawah slider */
.proj-modal-desc-wrap {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.proj-modal-desc-title {
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  color: var(--text);
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--text);
  display: inline-block;
}

.proj-modal-desc {
  font-size: 0.92rem;
  color: var(--accent);
  line-height: 1.8;
}

/* ── KANAN: DETAIL TABLE ── */
.proj-modal-right {
  background: var(--primary);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.proj-modal-table {
  width: 100%;
  border-collapse: collapse;
}

.proj-modal-table tr {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.proj-modal-table tr:last-child {
  border-bottom: none;
}

.proj-modal-table td {
  padding: 14px 0;
  font-size: 0.85rem;
  vertical-align: top;
  line-height: 1.5;
}

.proj-modal-table td:first-child {
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  padding-right: 10px;
  width: 110px;
}

.proj-modal-table td:nth-child(2) {
  color: rgba(255,255,255,0.5);
  padding-right: 8px;
  width: 14px;
}

.proj-modal-table td:last-child {
  color: rgba(255,255,255,0.75);
}

/* Bintang rating */
.proj-modal-stars {
  display: inline-flex;
  gap: 3px;
}

.proj-modal-star {
  color: #c9a84c;
  font-size: 1rem;
}

.proj-modal-star.empty {
  color: rgba(255,255,255,0.2);
}

   RESPONSIVE — Desktop First (max-width)
   ============================================================ */

/* ── 1280px ── */
@media (max-width: 1280px) {
  .clients                   { padding: 32px 160px; }
}

/* ── 1024px ── */
@media (max-width: 1024px) {
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .clients                   { padding: 32px 80px; }
}

/* ── 900px ── */
@media (max-width: 900px) {
  /* Navbar */
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 24px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    gap: 0;
    z-index: 998;
  }
  .nav-menu.nav-menu-open    { display: flex; }
  .nav-link                  { padding: 12px 0; font-size: 0.85rem; width: 100%; border-bottom: 1px solid var(--border); }
  .nav-item:last-child .nav-link { border-bottom: none; }
  .nav-item-active .nav-link::after { display: none; }
  .nav-share-label           { display: none; }
  .nav-hamburger             { display: flex; }
  .nav-actions               { gap: 2px; }
  .proj-modal-inner { grid-template-columns: 1fr; }
  .proj-modal-right { padding: 24px 20px; }
  /* Clients */
  .clients                   { padding: 24px 32px; }
  .clients-item              { flex: 0 0 33.33%; }
  /* Footer */
  .footer-main               { grid-template-columns: 1fr; gap: 32px; padding: 40px 32px; }
  .footer-main > div:nth-child(2),
  .footer-main > div:nth-child(3) { text-align: left; padding-left: 0; }
  .footer-main > div:nth-child(2) .footer-contacts,
  .footer-main > div:nth-child(2) .footer-address,
  .footer-main > div:nth-child(3) .footer-contacts,
  .footer-main > div:nth-child(3) .footer-address { text-align: left; }
  .footer-copy               { margin-left: 0; }
  .footer-bottom-inner       { padding: 16px 32px; margin-left: 0; }
}

/* ── 600px ── */
@media (max-width: 600px) {
  .proj-section { padding: 40px 16px 60px; }
  .proj-grid    { grid-template-columns: 1fr; }
  .proj-filter-btn { padding: 10px 12px; font-size: 0.68rem; }
  .clients-item              { flex: 0 0 50%; }
  .clients-arrow             { margin: 0 8px; width: 36px; height: 36px; font-size: 0.85rem; }
}

/* ── 480px ── */
@media (max-width: 480px) {
  /* WhatsApp Float */
  .wa-float                  { width: 48px !important; height: 48px !important; bottom: 20px !important; right: 20px !important; }
  /* Clients */
  .clients                   { padding: 24px 16px; }
  .clients-item img          { height: 80px; width: 80px; }
}

/* ── 320px ── */
@media (max-width: 320px) {
  .nav-inner                 { height: 60px; }
  .nav-logo img              { height: 36px; }
  .nav-taglines              { display: none; }


}

/* ============================================================
   6. SERVICES
   ============================================================ */
/* ── HERO SERVICES ── */
.about-hero {
  position: relative;
  width: 100%;
  height: 420px;
  background-image: url('../images/architecture/serv_hero.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 40, 55, 0.62);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.about-hero-title {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--white);
  margin-bottom: 0;
}

.about-hero-divider {
  width: 260px;
  height: 2px;
  background: var(--white);
  opacity: 0.6;
}

.about-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
}

.breadcrumb-link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link:hover {
  color: var(--white);
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb-current {
  color: var(--white);
  font-weight: 600;
}

/* ── SERVICES SECTION ── */
.services-section {
  padding: 80px 48px;
  background: var(--white);
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ── SERVICE CARD ── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
}

/* ── CARD IMAGE WRAP ── */
.service-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, filter 0.45s ease;
  filter: grayscale(30%);
}

/* Hover: zoom + warna penuh */
.service-card:hover .service-card-img {
  transform: scale(1.07);
  filter: grayscale(0%);
}

/* ── LABEL (pojok kiri atas gambar) ── */
.service-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--accent);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  text-transform: uppercase;
  pointer-events: none;
}

/* ── CARD BODY ── */
.service-card-body {
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.service-card-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── READ MORE LINK ── */
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  margin-top: auto;
  transition: color 0.2s ease;
}

.service-card-link-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
  transition: width 0.25s ease;
}

.service-card-link:hover {
  color: var(--accent);
}

.service-card-link:hover .service-card-link-line {
  width: 40px;
}

/* ── SERVICE MODAL ── */
.svc-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.70);
  backdrop-filter: blur(3px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.30s ease;
}

.svc-modal-backdrop.svc-modal-open {
  opacity: 1;
  pointer-events: all;
}

.svc-modal {
  background: var(--white);
  width: 100%;
  max-width: 660px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.35s ease;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.svc-modal-backdrop.svc-modal-open .svc-modal {
  transform: translateY(0);
}

/* ── TOMBOL TUTUP ── */
.svc-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 10;
  background: rgba(17, 17, 17, 0.55);
  color: var(--white);
  border: none;
  width: 32px;
  height: 32px;
  font-size: 0.80rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  line-height: 1;
}

.svc-modal-close:hover {
  background: var(--primary);
}

/* ── GAMBAR ── */
.svc-modal-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}

.svc-modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
}

.svc-modal-img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--accent);
  color: var(--white);
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
}

/* ── BODY ── */
.svc-modal-body {
  padding: 32px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ── BLOCK (about / key elements) ── */
.svc-modal-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.svc-modal-block-title {
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.svc-modal-about {
  font-size: 0.93rem;
  color: var(--accent);
  line-height: 1.75;
}

/* ── CHECKLIST ── */
.svc-modal-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.svc-modal-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.90rem;
  color: var(--text);
  line-height: 1.55;
}

.svc-modal-checklist li::before {
  content: '';
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1.5px solid var(--accent);
  border-radius: 2px;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='2,6 5,9 10,3' stroke='%23555555' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 11px no-repeat;
}

/* ── PRICE BOX ── */
.svc-modal-price-box {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border: 1.5px solid var(--border);
  padding: 14px 28px;
  background: var(--light);
  align-self: flex-start;
}

.svc-modal-price-label {
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.svc-modal-price-divider {
  color: var(--border);
  font-size: 1.1rem;
}

.svc-modal-price-value {
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.04em;
}

/* ── CTA SECTION ── */
.cta-section {
  position: relative;
  width: 100%;
  padding: 80px 48px;
  background-image: url('../images/architecture/serv_cta.webp');  /* ganti gambar sesuai kebutuhan */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.60);   /* dark overlay sesuai tone hitam brand */
}

.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 720px;
}

.cta-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.cta-btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--accent);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

   RESPONSIVE — Desktop First (max-width)
   ============================================================ */

/* ── 1280px ── */
@media (max-width: 1280px) {
}

/* ── 1024px ── */
@media (max-width: 1024px) {
    .services-container { grid-template-columns: repeat(2, 1fr); }
}

/* ── 900px ── */
@media (max-width: 900px) {
  /* Navbar */
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 24px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    gap: 0;
    z-index: 998;
  }
  .nav-menu.nav-menu-open    { display: flex; }
  .nav-link                  { padding: 12px 0; font-size: 0.85rem; width: 100%; border-bottom: 1px solid var(--border); }
  .nav-item:last-child .nav-link { border-bottom: none; }
  .nav-item-active .nav-link::after { display: none; }
  .nav-share-label           { display: none; }
  .nav-hamburger             { display: flex; }
  .nav-actions               { gap: 2px; }
  
  /* Footer */
  .footer-main               { grid-template-columns: 1fr; gap: 32px; padding: 40px 32px; }
  .footer-main > div:nth-child(2),
  .footer-main > div:nth-child(3) { text-align: left; padding-left: 0; }
  .footer-main > div:nth-child(2) .footer-contacts,
  .footer-main > div:nth-child(2) .footer-address,
  .footer-main > div:nth-child(3) .footer-contacts,
  .footer-main > div:nth-child(3) .footer-address { text-align: left; }
  .footer-copy               { margin-left: 0; }
  .footer-bottom-inner       { padding: 16px 32px; margin-left: 0; }
}

/* ── 600px ── */
@media (max-width: 600px) {
  .services-section  { padding: 48px 20px; }
  .services-container { grid-template-columns: 1fr; gap: 24px; }
  .cta-section       { padding: 60px 24px; background-attachment: scroll; }
  .cta-heading       { font-size: 1.3rem; }
  .svc-modal-body    { padding: 24px 20px 28px; }
  .svc-modal-img-wrap { aspect-ratio: 16 / 9; }
}

/* ── 480px ── */
@media (max-width: 480px) {
  /* WhatsApp Float */
  .wa-float                  { width: 48px !important; height: 48px !important; bottom: 20px !important; right: 20px !important; }
}

/* ── 320px ── */
@media (max-width: 320px) {
  .nav-inner                 { height: 60px; }
  .nav-logo img              { height: 36px; }
  .nav-taglines              { display: none; }
}
