/* ==========================================================================
   ARSITEK TUKANG JAKARTA - MASTER STYLESHEET
   Accurate 1:1 Pixel-Perfect Architectural Theme
   ========================================================================== */

:root {
  --bg-primary: #0a0a0c;
  --bg-secondary: #0e1014;
  --bg-card: #15171c;
  --bg-card-hover: #1c1f26;
  --bg-darker: #060709;

  --gold-primary: #f5a623;
  --gold-bright: #ffb800;
  --gold-hover: #e5a000;
  --gold-muted: rgba(255, 184, 0, 0.15);

  --text-white: #ffffff;
  --text-heading: #ffffff;
  --text-body: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-dark: #000000;

  --border-color: #232732;
  --border-subtle: rgba(255, 255, 255, 0.08);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  --transition: all 0.25s ease-in-out;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-body);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  padding: 15px 0;
}

.header-container {
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 35px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-logo-icon {
  width: 48px;
  height: 32px;
  flex-shrink: 0;
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
}

.brand-logo-title {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.1;
}

.brand-logo-title span {
  color: var(--gold-bright);
}

.brand-logo-subtitle {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #ffffff;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
  flex-wrap: nowrap;
}

.nav-link {
  font-size: 0.83rem;
  font-weight: 600;
  color: #cbd5e1;
  white-space: nowrap;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-bright);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-btn-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition: var(--transition);
}

.nav-btn-login:hover {
  background: rgba(255, 184, 0, 0.15);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.nav-btn-member {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 184, 0, 0.12);
  border: 1px solid var(--gold-bright);
  color: var(--gold-bright);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 8px 15px;
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition: var(--transition);
}

.nav-btn-member:hover {
  background: var(--gold-bright);
  color: #000000;
}

.nav-btn-logout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  transition: var(--transition);
}

.nav-btn-logout:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
  color: #ffffff;
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-bright);
  color: #000000;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 9px 20px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 184, 0, 0.35);
  transition: var(--transition);
}

.nav-cta-btn:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION - 1:1 COLLAGE BACKGROUND (GAMBAR 2)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 96vh;
  padding-top: 100px;
  padding-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  overflow: hidden;
}

.hero-collage-bg {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.collage-left {
  width: 50%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.collage-right {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.collage-right-top {
  width: 100%;
  height: 50%;
  position: relative;
  overflow: hidden;
}

.collage-right-bottom {
  width: 100%;
  height: 50%;
  position: relative;
  overflow: hidden;
}

.collage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) contrast(1.15);
}

.hero-center-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: 
    /* Balanced dark-mood vignette: photos are textured & visible without being washed out/bright */
    radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.70) 32%, rgba(0, 0, 0, 0.35) 70%, rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.68) 32%, rgba(0, 0, 0, 0.76) 50%, rgba(0, 0, 0, 0.68) 68%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, transparent 15%, transparent 85%, #0a0a0c 100%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

/* Survey Banner Badge (Paint Brush Style like Gambar 2) */
.hero-survey-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #ffb800;
  color: #000000;
  padding: 10px 42px;
  margin-bottom: 24px;
  position: relative;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.8);
  /* Grunge / Brush Stroke Edge Simulation */
  clip-path: polygon(
    0% 12%, 1.5% 3%, 3% 8%, 4.5% 0%, 95.5% 1%, 97% 9%, 98.5% 2%, 100% 14%,
    99.5% 86%, 98% 97%, 96.5% 91%, 95% 100%, 5% 99%, 3.5% 91%, 2% 98%, 0% 88%,
    0.8% 50%
  );
}

.survey-badge-icon {
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.survey-badge-content {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.15;
}

.survey-badge-text-main {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.survey-badge-text-sub {
  font-size: 0.95rem;
  font-weight: 700;
}

/* Center Hero Branding */
.hero-center-brand {
  margin-bottom: 18px;
}

.hero-brand-icon-big {
  width: 130px;
  height: 75px;
  margin: 0 auto 8px;
}

.hero-title-main {
  font-size: 2.85rem;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.1;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 6px rgba(0, 0, 0, 0.95);
}

.hero-title-main span {
  color: var(--gold-bright);
}

.hero-title-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 6px;
  color: #ffffff;
  margin-top: 4px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.9);
}

.sub-line {
  display: inline-block;
  width: 50px;
  height: 1.8px;
  background: #ffffff;
  opacity: 0.95;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-tagline {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: #e2e8f0;
  margin-top: 14px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.tagline-dot {
  color: var(--gold-bright);
  padding: 0 4px;
}

/* 3 Pillars */
.hero-pillars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin: 26px 0 24px;
  flex-wrap: wrap;
}

.pillar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.pillar-icon-box {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

/* Hero CTA Button */
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-bright);
  color: #000000;
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 11px 30px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 184, 0, 0.4);
  transition: var(--transition);
}

.hero-cta-btn:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
}

/* ==========================================================================
   SECTION COMMON
   ========================================================================== */
.section-wrapper {
  padding: 60px 0;
  position: relative;
  background-color: var(--bg-primary);
}

.section-header {
  text-align: center;
  margin-bottom: 35px;
}

.section-title {
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ==========================================================================
   SECTION: JENIS-JENIS DESAIN RUMAH
   ========================================================================== */
.section-designs {
  background-color: #0a0a0c;
}

.designs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.design-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.design-card:hover {
  border-color: rgba(255, 184, 0, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
}

.design-img-box {
  width: 100%;
  height: 175px;
  overflow: hidden;
  background-color: #12141a;
}

.design-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.design-card:hover .design-img {
  transform: scale(1.05);
}

.design-body {
  padding: 16px 14px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.design-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.design-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 14px;
  flex-grow: 1;
}

.btn-lihat-contoh {
  width: fit-content;
  background: var(--gold-bright);
  color: #000000;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-lihat-contoh:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

/* ==========================================================================
   SECTION: TENAGA TUKANG PROFESIONAL - REFINED & NEAT (3 COLUMNS)
   ========================================================================== */
.section-services {
  background-color: #07080a;
}

.category-top-badge {
  display: inline-block;
  background: rgba(255, 184, 0, 0.12);
  border: 1px solid rgba(255, 184, 0, 0.35);
  color: var(--gold-bright);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
}

/* Category Showcase Grid */
.trade-categories-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

@media (max-width: 1024px) {
  .trade-categories-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .trade-categories-showcase {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.trade-cat-card {
  background: #11141c;
  border: 1px solid #1f2533;
  border-radius: var(--radius-lg);
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s ease;
  width: 100%;
}

.trade-cat-card:hover {
  border-color: rgba(255, 184, 0, 0.5);
  transform: translateY(-3px);
  background: #151924;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.trade-cat-card.active {
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.16) 0%, rgba(18, 22, 30, 0.98) 100%);
  border-color: var(--gold-bright);
  box-shadow: 0 6px 20px rgba(255, 184, 0, 0.2);
}

.cat-card-icon-box {
  width: 42px;
  height: 42px;
  background: rgba(255, 184, 0, 0.1);
  border: 1px solid rgba(255, 184, 0, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.trade-cat-card.active .cat-card-icon-box,
.trade-cat-card:hover .cat-card-icon-box {
  background: var(--gold-bright);
  color: #000000;
}

.cat-card-icon-box svg {
  width: 22px;
  height: 22px;
}

.cat-card-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cat-card-name {
  font-size: 0.92rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cat-card-sub {
  font-size: 0.72rem;
  color: #94a3b8;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Push / Mitra Banner Card */
.promo-banner-card {
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.1) 0%, rgba(18, 22, 30, 0.95) 100%);
  border: 1px solid rgba(255, 184, 0, 0.3);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  margin-bottom: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
}

.promo-banner-left {
  flex: 1;
  min-width: 280px;
}

.promo-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 184, 0, 0.15);
  border: 1px solid rgba(255, 184, 0, 0.4);
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.promo-badge-icon {
  font-size: 0.85rem;
}

.promo-banner-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.promo-banner-sub {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.4;
}

.promo-banner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* 3-Column Balanced Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.service-card {
  background: #11141c;
  border: 1px solid #1f2533;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.service-card:hover {
  border-color: rgba(255, 184, 0, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6);
}

.service-card.is-promoted-card {
  border: 1.5px solid rgba(255, 184, 0, 0.6);
  box-shadow: 0 4px 20px rgba(255, 184, 0, 0.12);
}

.service-card.is-promoted-card:hover {
  border-color: var(--gold-bright);
  box-shadow: 0 14px 35px rgba(255, 184, 0, 0.25);
}

.service-img-box {
  width: 100%;
  height: 185px;
  position: relative;
  overflow: hidden;
  background-color: #0b0d13;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.promoted-tag-pill {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(10, 12, 16, 0.85);
  border: 1px solid var(--gold-bright);
  color: var(--gold-bright);
  backdrop-filter: blur(8px);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.service-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.service-header-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.service-icon-svg {
  width: 20px;
  height: 20px;
  color: var(--gold-bright);
  stroke: var(--gold-bright);
  flex-shrink: 0;
}

.service-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.service-worker-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 4px 0 10px;
  font-size: 0.78rem;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.worker-meta-name {
  color: #e2e8f0;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 55%;
}

.worker-meta-loc {
  color: var(--gold-bright);
  font-weight: 500;
  font-size: 0.74rem;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 45%;
  text-align: right;
}

.service-desc {
  font-size: 0.83rem;
  color: #94a3b8;
  line-height: 1.45;
  margin-bottom: 16px;
  min-height: 42px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Card Bottom Row: Rate & Action */
.service-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid #1f2533;
  padding-top: 14px;
  margin-top: auto;
}

.service-card-rate {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  max-width: 50%;
}

.rate-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.rate-val {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold-bright);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.service-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--gold-bright);
  color: #000000;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.service-wa-btn:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 184, 0, 0.3);
}

.services-cta-wrapper {
  text-align: center;
}

.btn-all-services {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-bright);
  color: #000000;
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 34px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 184, 0, 0.35);
  transition: var(--transition);
}

.btn-all-services:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: #050608;
  border-top: 1px solid var(--border-color);
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.1fr 1.05fr 1.15fr;
  gap: 28px;
  margin-bottom: 40px;
  align-items: start;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

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

.footer-about-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 16px 0 16px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-icon-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #14171d;
  border: 1px solid var(--border-color);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon-link:hover {
  background: var(--gold-bright);
  color: #000000;
}

.footer-col-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.footer-contact-list, .footer-services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.contact-icon-svg {
  width: 16px;
  height: 16px;
  color: var(--gold-bright);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-service-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-service-item svg {
  width: 14px;
  height: 14px;
  color: var(--gold-bright);
  flex-shrink: 0;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-bottom-bar a {
  color: var(--text-dim);
}

.footer-bottom-bar a:hover {
  color: var(--gold-bright);
}

/* Floating WhatsApp Button */
.floating-wa-btn {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 999;
  background: #25d366;
  color: #ffffff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}

.floating-wa-btn:hover {
  transform: scale(1.08);
}

/* Modal Popup */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.modal-backdrop.active {
  display: flex;
  opacity: 1;
}

.modal-container {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
}

.modal-close-btn:hover {
  background: var(--gold-bright);
  color: #000000;
}

.modal-header-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.modal-body {
  padding: 22px 24px;
}

.modal-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.modal-category-badge {
  display: inline-block;
  color: var(--gold-bright);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.modal-specs-box {
  background: rgba(255, 184, 0, 0.06);
  border: 1px solid rgba(255, 184, 0, 0.2);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  margin: 14px 0;
  font-size: 0.82rem;
  color: #e2e8f0;
}

.modal-long-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
}

.modal-footer-actions {
  display: flex;
  gap: 10px;
}

/* Consultation Form */
.form-group {
  margin-bottom: 14px;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 5px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: #0d1016;
  border: 1px solid var(--border-color);
  color: #ffffff;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold-bright);
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

/* ==========================================================================
   MOBILE DRAWER (Slide-in Navigation)
   ========================================================================== */
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 340px;
  height: 100vh;
  height: 100dvh;
  background: #0c0e14;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 999;
  overflow-y: auto;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.active {
  right: 0;
}

.drawer-body {
  padding: 80px 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.drawer-nav-section {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.drawer-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  color: #cbd5e1;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.drawer-nav-link svg {
  color: #64748b;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.drawer-nav-link:hover,
.drawer-nav-link.active {
  background: rgba(255, 184, 0, 0.08);
  color: var(--gold-bright);
}

.drawer-nav-link:hover svg,
.drawer-nav-link.active svg {
  color: var(--gold-bright);
}

.drawer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 8px 0;
}

.drawer-auth-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.drawer-auth-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.drawer-auth-btn svg {
  flex-shrink: 0;
}

.drawer-auth-primary {
  background: rgba(255, 184, 0, 0.1);
  border: 1px solid rgba(255, 184, 0, 0.25);
  color: var(--gold-bright);
}

.drawer-auth-primary svg {
  color: var(--gold-bright);
}

.drawer-auth-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
}

.drawer-auth-secondary svg {
  color: #94a3b8;
}

.drawer-auth-logout {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.drawer-auth-logout svg {
  color: #f87171;
}

.drawer-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold-bright);
  color: #000000;
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 13px 20px;
  border-radius: var(--radius-lg);
  margin-top: 4px;
  box-shadow: 0 4px 18px rgba(255, 184, 0, 0.35);
  transition: all 0.2s ease;
}

.drawer-cta-btn:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

/* Mobile Toggle Icon States */
.mobile-toggle .close-icon {
  display: none;
}

.mobile-toggle.active .hamburger-icon {
  display: none;
}

.mobile-toggle.active .close-icon {
  display: block;
}

/* ==========================================================================
   RESPONSIVE: TABLET (max-width: 1100px)
   ========================================================================== */
@media (max-width: 1100px) {
  .designs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   RESPONSIVE: MOBILE (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
  /* --- Header --- */
  .nav-menu {
    display: none !important;
  }

  .header-actions {
    display: none !important;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: #ffffff;
    cursor: pointer;
  }

  .site-header {
    padding: 10px 0;
    background: rgba(10, 10, 12, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .navbar {
    height: 50px;
  }

  .brand-logo-icon {
    width: 36px;
    height: 24px;
  }

  .brand-logo-title {
    font-size: 0.8rem;
  }

  .brand-logo-subtitle {
    font-size: 0.55rem;
    letter-spacing: 2px;
  }

  /* --- Hero Section (Compact App-like) --- */
  .hero-section {
    min-height: 85vh;
    padding-top: 75px;
    padding-bottom: 30px;
  }

  .collage-left {
    width: 100%;
  }

  .collage-right {
    display: none;
  }

  .hero-center-vignette {
    background:
      radial-gradient(ellipse at 50% 55%, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.65) 40%, rgba(0, 0, 0, 0.3) 80%, rgba(0, 0, 0, 0.1) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, transparent 20%, transparent 80%, #0a0a0c 100%);
  }

  .hero-survey-badge {
    padding: 7px 22px;
    margin-bottom: 16px;
  }

  .survey-badge-text-main {
    font-size: 0.95rem;
  }

  .survey-badge-text-sub {
    font-size: 0.72rem;
  }

  .survey-badge-icon svg {
    width: 18px;
    height: 18px;
  }

  .hero-brand-icon-big {
    width: 80px;
    height: 46px;
    margin: 0 auto 6px;
  }

  .hero-title-main {
    font-size: 1.65rem;
    letter-spacing: 0.5px;
  }

  .hero-title-sub {
    font-size: 0.95rem;
    letter-spacing: 3px;
    gap: 10px;
    margin-top: 2px;
  }

  .sub-line {
    width: 28px;
    height: 1.5px;
  }

  .hero-tagline {
    font-size: 0.58rem;
    letter-spacing: 1.2px;
    margin-top: 10px;
  }

  .hero-pillars {
    gap: 14px;
    margin: 18px 0 18px;
    flex-wrap: nowrap;
  }

  .pillar-icon-box {
    width: 30px;
    height: 30px;
  }

  .pillar-icon-box svg {
    width: 22px;
    height: 22px;
  }

  .pillar-title {
    font-size: 0.68rem;
  }

  .hero-cta-btn {
    font-size: 0.78rem;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-worker-top, .hero-worker-bottom {
    display: none;
  }

  /* --- Sections --- */
  .section-wrapper {
    padding: 36px 0;
  }

  .container {
    padding: 0 16px;
  }

  .section-header {
    margin-bottom: 22px;
  }

  .section-title {
    font-size: 1.15rem;
    letter-spacing: 0.3px;
  }

  .section-subtitle {
    font-size: 0.8rem;
    margin-top: 6px;
  }

  /* --- Designs Grid (Horizontal scroll + auto-slider) --- */
  .designs-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 6px;
  }

  .designs-grid::-webkit-scrollbar {
    display: none;
  }

  .design-card {
    min-width: 240px;
    max-width: 260px;
    flex-shrink: 0;
  }

  .design-img-box {
    height: 140px;
  }

  .design-body {
    padding: 12px 12px 14px;
  }

  .design-title {
    font-size: 0.9rem;
  }

  .design-desc {
    font-size: 0.72rem;
    margin-bottom: 10px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .btn-lihat-contoh {
    font-size: 0.68rem;
    padding: 5px 12px;
  }

  /* --- Trade Categories (2-col compact) --- */
  .trade-categories-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 20px;
  }

  .trade-cat-card {
    padding: 10px 12px;
    gap: 10px;
  }

  .cat-card-icon-box {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .cat-card-icon-box svg {
    width: 18px;
    height: 18px;
  }

  .cat-card-name {
    font-size: 0.76rem;
  }

  .cat-card-sub {
    font-size: 0.62rem;
    display: none;
  }

  .category-top-badge {
    font-size: 0.64rem;
    padding: 4px 10px;
    letter-spacing: 0.8px;
  }

  /* --- Promo Banner --- */
  .promo-banner-card {
    padding: 16px 18px;
    margin-bottom: 22px;
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .promo-banner-left {
    min-width: auto;
  }

  .promo-banner-title {
    font-size: 0.98rem;
  }

  .promo-banner-sub {
    font-size: 0.78rem;
  }

  .promo-banner-actions {
    justify-content: center;
  }

  /* --- Services Grid (2-col compact) --- */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 28px;
  }

  .service-img-box {
    height: 125px;
  }

  .service-body {
    padding: 12px 14px 14px;
  }

  .service-header-title {
    margin-bottom: 4px;
    gap: 6px;
  }

  .service-icon-svg {
    width: 16px;
    height: 16px;
  }

  .service-title {
    font-size: 0.85rem;
    font-weight: 800;
  }

  .service-worker-meta {
    font-size: 0.66rem;
    margin: 2px 0 6px;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
  }

  .worker-meta-name {
    max-width: 100%;
    font-size: 0.68rem;
  }

  .worker-meta-loc {
    max-width: 100%;
    text-align: left;
    font-size: 0.64rem;
  }

  .service-desc {
    font-size: 0.72rem;
    margin-bottom: 10px;
    min-height: auto;
    -webkit-line-clamp: 2;
  }

  .service-card-bottom {
    padding-top: 10px;
    gap: 6px;
    flex-direction: column;
    align-items: stretch;
  }

  .service-card-rate {
    max-width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 6px;
  }

  .rate-label {
    font-size: 0.6rem;
  }

  .rate-val {
    font-size: 0.7rem;
  }

  .service-wa-btn {
    font-size: 0.7rem;
    padding: 7px 10px;
    justify-content: center;
    border-radius: var(--radius-full);
  }

  .service-wa-btn svg {
    width: 14px;
    height: 14px;
  }

  .promoted-tag-pill {
    font-size: 0.58rem;
    padding: 3px 8px;
    top: 8px;
    right: 8px;
  }

  .btn-all-services {
    font-size: 0.78rem;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    width: 100%;
  }

  /* --- Footer --- */
  .site-footer {
    padding: 30px 0 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 22px;
  }

  .footer-about-text {
    font-size: 0.76rem;
  }

  .footer-col-title {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }

  .footer-contact-item {
    font-size: 0.76rem;
  }

  .footer-service-item {
    font-size: 0.76rem;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 0.7rem;
  }

  /* --- Blog Article Section on Homepage --- */
  .blog-showcase-grid,
  .articles-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 6px;
  }

  .blog-showcase-grid::-webkit-scrollbar,
  .articles-grid::-webkit-scrollbar {
    display: none;
  }

  .blog-showcase-grid > *,
  .articles-grid > * {
    min-width: 260px;
    max-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  /* --- Floating WA Button --- */
  .floating-wa-btn {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
  }

  .floating-wa-btn svg {
    width: 22px;
    height: 22px;
  }

  /* --- Modal --- */
  .modal-container {
    border-radius: var(--radius-lg);
    max-height: 85vh;
  }

  .modal-header-img {
    height: 180px;
  }

  .modal-body {
    padding: 16px 18px;
  }

  .modal-title {
    font-size: 1.1rem;
  }

  .modal-long-desc {
    font-size: 0.78rem;
  }

  /* --- Forms --- */
  .form-input, .form-select, .form-textarea {
    font-size: 0.85rem;
    padding: 9px 11px;
  }

  .form-label {
    font-size: 0.76rem;
  }
}

/* ==========================================================================
   RESPONSIVE: SMALL MOBILE (max-width: 480px)
   ========================================================================== */
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-section {
    min-height: 80vh;
  }

  .hero-title-main {
    font-size: 1.45rem;
  }

  .hero-title-sub {
    font-size: 0.85rem;
    letter-spacing: 2px;
  }

  .hero-tagline {
    font-size: 0.52rem;
  }

  .hero-pillars {
    gap: 10px;
  }

  .pillar-title {
    font-size: 0.6rem;
  }

  .design-card {
    min-width: 210px;
    max-width: 230px;
  }

  .trade-categories-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .trade-cat-card {
    padding: 8px 10px;
    gap: 8px;
  }

  .cat-card-icon-box {
    width: 30px;
    height: 30px;
  }

  .cat-card-name {
    font-size: 0.7rem;
  }

  .promo-banner-card {
    padding: 14px 14px;
  }

  .promo-banner-title {
    font-size: 0.88rem;
  }

  .section-title {
    font-size: 1.05rem;
  }
}

