/* =====================
   GLOBAL RESET
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.25);
  --dark: #0c0c0c;
  --dark-soft: #151515;
  --text: #eaeaea;
}

body {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at top, #1a1a1a, #000);
  color: var(--text);
  line-height: 1.6;
}

.logo img {
  height: 80px;
  width: auto;
  display: block;
}

/* =====================
   NAVBAR
===================== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, #000, #0d0d0d);
  border-bottom: 1px solid var(--gold-soft);
}

nav {
  max-width: 1200px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


nav h1 {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 22px;
}

nav a {
  color: #ccc;
  margin-left: 18px;
  text-decoration: none;
  font-size: 13px;
  transition: .3s;
}

nav a i {
  color: var(--gold);
  margin-right: 6px;
}

nav a:hover {
  color: var(--gold);
}



/* =====================
   HERO
===================== */
.hero {
  max-width: 1200px;
  margin: auto;
  padding: 70px 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 45px;
  align-items: center;
}

.hero h2 {
  font-size: 40px;
  font-weight: 700;
}

.hero h2 span {
  color: var(--gold);
}

.hero p {
  margin: 18px 0 28px;
  color: #bbb;
}

.hero img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,.7);
}

/* =====================
   BUTTON
===================== */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), #b8962e);
  color: #000;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 40px rgba(212,175,55,.4);
  transition: .3s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(212,175,55,.6);
}

/* =====================
   SECTION
===================== */
section {
  padding: 70px 24px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 8px;
}

.section-desc {
  text-align: center;
  color: #aaa;
  margin-bottom: 40px;
  font-size: 14px;
}

/* =====================
   GRID
===================== */
.grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

/* =====================
   PAKET GALLERY (FIX GRID)
===================== */
.paket-gallery .portfolio-item {
  background: #000;
  border-radius: 18px;
  overflow: hidden; /* WAJIB */
  box-shadow: 0 20px 45px rgba(0,0,0,.55);
}

.paket-gallery .portfolio-item img {
  width: 100%;
  height: 220px;       /* KUNCI TINGGI */
  object-fit: cover;  /* POTONG RAPI */
  display: block;
}

.paket-gallery figcaption {
  padding: 14px;
  text-align: center;
  font-size: 14px;
  color: var(--gold);
  background: #0d0d0d;
}

.paket-gallery .portfolio-item img {
  transition: transform .4s ease;
}

.paket-gallery .portfolio-item:hover img {
  transform: scale(1.08);
}


/* =====================
   CARD (GLOBAL)
===================== */
.card {
  position: relative;
  overflow: visible;
  background: linear-gradient(160deg, #111, #0a0a0a);
  border-radius: 18px;
  padding: 26px 22px;
  border: 1px solid rgba(212,175,55,.25);
  transition: .35s;
  opacity: 0;
  transform: translateY(30px);
}

.card.show {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 0 1px var(--gold),
              0 18px 50px rgba(212,175,55,.25);
}

/* glow layer */
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(212,175,55,0.18),
    transparent 60%
  );
  opacity: 0;
  transition: .4s;
}

.card:hover::after {
  opacity: 1;
}

.card i {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 10px;
  transition: transform .35s ease;
}

.card:hover i {
  transform: scale(1.15) rotate(-2deg);
}

.card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.card p {
  font-size: 13px;
  color: #bbb;
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

html {
  scroll-behavior: smooth;
}


/* =====================
   PRICING
===================== */
.pricing .card {
  padding: 36px 30px;
}

.pricing .card h3 {
  font-size: 20px;
}

.price {
  font-size: 30px;
  font-weight: 700;
  color: var(--gold);
  margin: 18px 0 22px;
}

.pricing ul {
  list-style: none;
}

.pricing li {
  margin-bottom: 12px;
  font-size: 14px;
}

.pricing li i {
  color: var(--gold);
  margin-right: 8px;
}

/* highlight + badge */
.pricing .card:nth-child(2) {
  border: 2px solid var(--gold);
  box-shadow: 0 0 70px rgba(212,175,55,.35);
  transform: scale(1.04);
}

.pricing .card:nth-child(2)::before {
  content: "BEST SELLER";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #b8962e);
  color: #000;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(212,175,55,.45);
}

/* ================= REKAM JEJAK ================= */
.track-record {
  background: linear-gradient(180deg, #0b1f1a, #071512);
  padding: 80px 20px;
  color: #fff;
}

.track-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.track-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.track-desc {
  max-width: 720px;
  margin: 0 auto 60px;
  color: #cfd8d5;
  font-size: 16px;
  line-height: 1.7;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.track-item h3 {
  font-size: 48px;
  font-weight: 700;
  color: #7bdc6b;
  margin-bottom: 10px;
}

.track-item p {
  font-size: 16px;
  color: #e0e0e0;
}

.track-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.track-item.show {
  opacity: 1;
  transform: translateY(0);
}





/* =====================
   CLIENT
===================== */
.clients {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  align-items: center;
}

.client-item img {
  max-width: 95px;
  margin: auto;
  display: block;
  filter: grayscale(1);
  opacity: .75;
  transition: .3s;
}

.client-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.client-item figcaption {
  margin-top: 8px;
  font-size: 12px;
  color: #aaa;
  text-align: center;
}

/* ================= KELEBIHAN ================= */
.advantages {
  padding: 100px 8%;
  background: #0e0e0e;
  text-align: center;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.adv-card {
  background: #151515;
  padding: 40px 25px;
  border-radius: 18px;
  transition: 0.3s ease;
}

.adv-card i {
  font-size: 42px;
  color: #f5c542; /* gold */
  margin-bottom: 20px;
}

.adv-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #fff;
}

.adv-card p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

.adv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(245, 197, 66, 0.15);
}


/* =====================
   FORM
===================== */
form {
  max-width: 580px;
  margin: auto;
  display: grid;
  gap: 14px;
}

input, textarea {
  background: #111;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 13px;
  color: #fff;
  font-size: 14px;
}

textarea {
  min-height: 110px;
}

/* =====================
   FOOTER
===================== */

.site-footer {
  background: #1f1f1f;
  color: #e0e0e0;
  padding-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 15px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.7;
  color: #cfcfcf;
}

.footer-services h4,
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

.footer-services ul {
  list-style: none;
  padding: 0;
}

.footer-services li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid #555;
  color: #fff;
  margin-right: 10px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #7bdc6b;
  border-color: #7bdc6b;
  color: #000;
}

.footer-bottom {
  margin-top: 50px;
  text-align: center;
  padding: 15px;
  background: #161616;
  font-size: 13px;
  color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    text-align: center;
  }

  .footer-social a {
    margin-right: 8px;
  }
}

/* =====================
   DESKRIPSI PAKET
===================== */
.paket-detail {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.paket-desc {
  max-width: 760px;
  margin: 14px auto;
  font-size: 15px;
  line-height: 1.8;
  color: #cfcfcf;
}


/* =====================
   RESPONSIVE
===================== */
@media(max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h2 {
    font-size: 32px;
  }

  .pricing .card:nth-child(2) {
    transform: none;
  }
}

/* CTA Pricing */
.pricing-card {
  position: relative;
}

.pricing-card .btn {
  width: 100%;
  margin-top: 25px;
  text-align: center;
}

/* Best Seller Badge */
.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #d4af37, #b8962e);
  color: #000;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 10;
}

/* Mobile Pricing */
@media (max-width: 768px) {
  .pricing .grid {
    gap: 20px;
  }

  .pricing .card {
    padding: 30px 22px;
  }

  .price {
    font-size: 28px;
  }

  .pricing ul li {
    font-size: 14px;
  }
}

/* =====================
   ALUR PEMESANAN
===================== */
.flow-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}

.flow-step {
  background: linear-gradient(160deg, #111, #0a0a0a);
  border: 1px solid rgba(212,175,55,.25);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  transition: .35s;
  opacity: 0;
  transform: translateY(30px);
}

.flow-step.show {
  opacity: 1;
  transform: translateY(0);
}

.flow-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(212,175,55,.25);
}

.flow-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: radial-gradient(circle at top, var(--gold), #b8962e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 26px;
  box-shadow: 0 10px 30px rgba(212,175,55,.45);
}

.flow-step h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--gold);
}

.flow-step p {
  font-size: 13px;
  color: #bbb;
  line-height: 1.6;
}

/* =====================
   DROPDOWN NAV (CLICK)
===================== */

header,
nav {
  overflow: visible;
}

.nav-dropdown {
  position: relative;
}

/* toggle */
.dropdown-toggle {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* icon animation */
.dropdown-toggle i {
  transition: transform 0.25s ease;
}

.dropdown-toggle.active i {
  transform: rotate(180deg);
}

/* popup menu */
.dropdown-menu {
  position: absolute;
  top: 130%;
  left: 0;
  min-width: 200px;
  background: #0d0d0d;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 10px;
  padding: 8px 0;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .25s ease;

  z-index: 9999;
}

/* aktif */
.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* item */
.dropdown-menu a {
  display: block;
  padding: 12px 18px;
  font-size: 13px;
  color: #ccc;
}

.dropdown-menu a:hover {
  background: var(--gold);
  color: #000;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* =====================
   HERO CINEMATIC (IMPROVED)
===================== */
.arch-hero {
  position: relative;
  height: 90vh;
  background: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c")
              center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 10%;
}

.arch-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(0,0,0,.9) 10%,
    rgba(0,0,0,.55) 45%,
    rgba(0,0,0,.25) 100%
  );
}

.arch-hero-content {
  position: relative;
  max-width: 640px;
  z-index: 2;
}

.arch-hero h1 {
  font-size: 56px;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #fff;
}

.arch-hero h1 span {
  color: var(--gold);
}

.arch-hero p {
  color: #d0d0d0;
  font-size: 16px;
  line-height: 1.7;
}


/* =====================
   FEATURED PROJECT (POLISHED)
===================== */
.featured-project {
  max-width: 1200px;
  margin: auto;
  padding: 120px 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.featured-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow:
    0 40px 100px rgba(0,0,0,.65),
    inset 0 0 0 1px rgba(212,175,55,.2);
}

.featured-info h2 {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 18px;
}

.featured-info p {
  color: #ccc;
  margin-bottom: 24px;
  line-height: 1.7;
}

.featured-info ul {
  list-style: none;
  padding: 0;
}

.featured-info li {
  margin-bottom: 12px;
  font-size: 14px;
  color: #aaa;
  position: relative;
  padding-left: 18px;
}

.featured-info li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}


/* =====================
   PORTFOLIO MASONRY (PREMIUM)
===================== */
.arch-portfolio {
  padding: 110px 8%;
  background: radial-gradient(circle at top, #111, #000);
}

/* GRID */
.arch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 30px;
}

/* ITEM */
.arch-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  cursor: pointer;
  background: #000;
  box-shadow: 
    0 20px 50px rgba(0,0,0,.55),
    inset 0 0 0 1px rgba(212,175,55,.12);
  transition: 
    transform .45s ease,
    box-shadow .45s ease;
}

/* IMAGE */
.arch-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

/* OVERLAY */
.arch-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.9) 10%,
    rgba(0,0,0,.45) 45%,
    rgba(0,0,0,.15) 70%,
    transparent 100%
  );
  opacity: 1;
  transition: opacity .4s ease;
}

/* TITLE */
.arch-item span {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .4px;
  color: #fff;
  z-index: 2;
  text-shadow: 0 6px 20px rgba(0,0,0,.6);
  transition: transform .4s ease, opacity .4s ease;
}

/* HOVER */
.arch-item:hover {
  transform: translateY(-12px);
  box-shadow:
    0 35px 80px rgba(0,0,0,.7),
    inset 0 0 0 1px rgba(212,175,55,.35);
}

.arch-item:hover img {
  transform: scale(1.18);
}

.arch-item:hover span {
  transform: translateY(-4px);
}

/* VARIATION */
.arch-item.tall {
  grid-row: span 2;
}

.arch-item.wide {
  grid-column: span 2;
}

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

@media (max-width: 600px) {
  .arch-grid {
    grid-template-columns: 1fr;
  }

  .arch-item span {
    font-size: 15px;
  }
}


/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1024px) {
  .featured-project {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .arch-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .arch-grid {
    grid-template-columns: 1fr;
  }

  .arch-hero h1 {
    font-size: 40px;
  }
}

/* =====================
   INTERIOR THEME
===================== */

:root {
  --interior-bg: radial-gradient(circle at top, #1c1a17, #0a0a0a);
  --interior-accent: #e0c28c;
  --interior-soft: rgba(224, 194, 140, 0.25);
}

/* =====================
   INTERIOR HERO
===================== */
.interior-hero {
  position: relative;
  height: 85vh;
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("../images/interior.png") center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 10%;
}

.interior-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(0,0,0,.9) 15%,
    rgba(0,0,0,.6) 50%,
    rgba(0,0,0,.35) 100%
  );
}

.interior-hero-content {
  position: relative;
  max-width: 620px;
  z-index: 2;
}

.interior-hero h1 {
  font-size: 52px;
  line-height: 1.15;
  margin-bottom: 18px;
  color: #fff;
}

.interior-hero h1 span {
  color: var(--interior-accent);
}

.interior-hero p {
  color: #d6d0c4;
  font-size: 16px;
  line-height: 1.75;
}

/* =====================
   INTERIOR HIGHLIGHT
===================== */

.interior-highlight {
  max-width: 1300px;
  margin: auto;
  padding: 100px 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

/* =====================
   GALLERY LAYOUT
===================== */

.highlight-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

/* SEMUA GAMBAR */
.highlight-gallery img {
  width: 100%;
  object-fit: cover;
  border-radius: 26px;
  box-shadow:
    0 30px 80px rgba(0,0,0,.55),
    inset 0 0 0 1px rgba(255,255,255,.06);
}

/* FOTO BESAR KIRI */
.main-img {
  height: 280px; /* ⬅️ mirip awal */
}

/* FOTO KANAN (4 GAMBAR SEBELAHAN) */
.side-imgs {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* ⬅️ INI YANG DIUBAH */
  grid-template-rows: repeat(2, 1fr);    /* ⬅️ INI JUGA */
  gap: 20px;
  height: 240px; /* ⬅️ TETAP */
}

.side-imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* =====================
   INFO
===================== */

.highlight-info h2 {
  font-size: 38px;
  color: #e0c28c;
  margin-bottom: 22px;
}

.highlight-info p {
  color: #cfc7ba;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.highlight-info ul {
  list-style: none;
  padding: 0;
}

.highlight-info li {
  font-size: 14px;
  margin-bottom: 14px;
  color: #bfb8ad;
  padding-left: 22px;
  position: relative;
}

.highlight-info li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #e0c28c;
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 768px) {
  .interior-highlight {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .highlight-gallery {
    grid-template-columns: 1fr;
  }

  .main-img {
    height: 300px;
  }

  .side-imgs {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    height: auto;
  }

  .side-imgs img {
    height: 160px;
  }
}

/* =====================
   INTERIOR PORTFOLIO
===================== */
.interior-portfolio {
  padding: 110px 8%;
  background: var(--interior-bg);
}

.interior-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 30px;
}

.interior-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  cursor: pointer;
  background: #000;
  box-shadow:
    0 25px 60px rgba(0,0,0,.6),
    inset 0 0 0 1px var(--interior-soft);
  transition: transform .45s ease, box-shadow .45s ease;
}

.interior-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.interior-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.85) 15%,
    rgba(0,0,0,.4) 55%,
    transparent 100%
  );
}

.interior-item span {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  z-index: 2;
  text-shadow: 0 6px 20px rgba(0,0,0,.7);
}

.interior-item:hover {
  transform: translateY(-10px);
  box-shadow:
    0 40px 90px rgba(0,0,0,.75),
    inset 0 0 0 1px var(--interior-accent);
}

.interior-item:hover img {
  transform: scale(1.18);
}

/* VARIASI */
.interior-item.tall {
  grid-row: span 2;
}

.interior-item.wide {
  grid-column: span 2;
}

/* =====================
   INTERIOR PROCESS
===================== */
.interior-process {
  padding: 120px 8%;
  background: linear-gradient(180deg, #0f0e0c, #060606);
}

.process-steps {
  max-width: 1100px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.step {
  text-align: center;
  padding: 34px 26px;
  background: linear-gradient(160deg, #141311, #0a0a0a);
  border-radius: 20px;
  border: 1px solid var(--interior-soft);
  transition: .35s;
}

.step i {
  font-size: 34px;
  color: var(--interior-accent);
  margin-bottom: 18px;
}

.step h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: #bfb8ad;
  line-height: 1.6;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(224,194,140,.18);
}

/* =====================
   RESPONSIVE INTERIOR
===================== */
@media (max-width: 1024px) {
  .interior-highlight {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .interior-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .interior-grid {
    grid-template-columns: 1fr;
  }

  .interior-hero h1 {
    font-size: 38px;
  }
}

/* =====================
   CONTACT SECTION
===================== */

.contact-section {
  max-width: 800px;
  margin: auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid #111;
  font-size: 14px;
  outline: none;
}

.form-group textarea {
  min-height: 160px;
  resize: none;
}

.textarea-group {
  position: relative;
}

/* BADGE KANAN BAWAH */
.consult-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #0a8f3c;
  border-radius: 30px;
  padding: 6px 12px;
  font-size: 11px;
}

.consult-badge img {
  width: 38px;
  height: auto;
  border-radius: 50%;
}

/* === WA PREMIUM BUTTON === */
.wa-premium {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25D366, #1ebe57);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  text-decoration: none;
  box-shadow:
    0 0 0 0 rgba(37,211,102,.6),
    0 10px 25px rgba(0,0,0,.5);
  animation: waPulse 2s infinite;
  transition: transform .3s ease;
  z-index: 10;
}

.wa-premium:hover {
  transform: scale(1.1);
  animation: none;
}

/* Tooltip */
.wa-premium .wa-tooltip {
  position: absolute;
  right: 70px;
  background: #111;
  color: #f5c451;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: .3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,.6);
}

.wa-premium:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* Pulse Animation */
@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37,211,102,.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37,211,102,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0);
  }
}

.textarea-group {
  position: relative;
}
