/* ============================================================
   Central Kaca Film Solo Sukoharjo — Main Stylesheet
   ============================================================ */
:root {
  --red: #D81324;
  --red-dark: #a50e1a;
  --red-bright: #f01525;
  --navy: #0B2154;
  --navy-dark: #071540;
  --navy-light: #1a3a7a;
  --gold: #f1c40f;
  --gold-dim: #c9a800;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #181818;
  --dark3: #1e1e1e;
  --dark4: #252525;
  --white: #ffffff;
  --light: #F2F2F2;
  --gray: #999999;
  --gray-mid: #666666;
  --gray-light: #cccccc;
  /* Alias variables for legacy inline styles in PHP */
  --white: #ffffff;
  --gray-50: #1e1e1e;
  --gray-100: #222222;
  --gray-200: rgba(255,255,255,.1);
  --gray-400: #777777;
  --gray-500: #aaaaaa;
  --gray-700: #cccccc;
  --gray-900: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.4);
  --font: 'Plus Jakarta Sans', sans-serif;
  --font-head: 'Sora', sans-serif;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 14px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.25);
  --shadow: 0 4px 20px rgba(0,0,0,.35);
  --shadow-lg: 0 10px 48px rgba(0,0,0,.5);
  --shadow-red: 0 4px 24px rgba(216,19,36,.35);
  --shadow-navy: 0 4px 24px rgba(11,33,84,.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--dark); color: var(--light); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* ============ LAYOUT ============ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 80px 0; }

/* ============ NAVBAR ============ */
nav#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,0.95);
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
  transition: box-shadow .3s, background .3s;
}
nav#navbar.scrolled {
  background: rgba(7,7,7,0.98);
  box-shadow: 0 2px 24px rgba(216,19,36,.15);
  border-bottom-color: rgba(216,19,36,.2);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img {
  height: 44px; width: auto; object-fit: contain;
  border-radius: 6px;
  background: #ffffff;
  padding: 3px 6px;
}
.footer-logo img {
  border-radius: 6px;
  background: #ffffff;
  padding: 3px 6px;
}

.nav-links { display: flex; list-style: none; gap: .15rem; align-items: center; }
.nav-links a {
  font-size: .84rem; font-weight: 600; color: rgba(255,255,255,.8);
  padding: .45rem .8rem; border-radius: var(--radius-sm);
  transition: color .2s, background .2s; letter-spacing: .3px;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.07); }
.nav-links a.active { color: var(--red); }
.nav-cta {
  background: var(--red) !important; color: var(--white) !important;
  padding: .5rem 1.2rem !important; border-radius: 50px !important;
  box-shadow: var(--shadow-red); transition: background .2s, transform .2s !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--red-bright) !important; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; border-radius: 6px; }
.hamburger span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; display: block; }

/* ============ MOBILE DRAWER ============ */
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.65); z-index: 1100; }
.mobile-overlay.open { display: block; }
.mobile-drawer {
  position: fixed; top: 0; right: -320px; width: 300px; height: 100vh;
  background: var(--dark2); z-index: 1200; transition: right .3s ease;
  display: flex; flex-direction: column;
  border-left: 1px solid rgba(255,255,255,.07);
}
.mobile-drawer.open { right: 0; }
.drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.drawer-title { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--white); }
.drawer-close { background: none; border: none; cursor: pointer; color: var(--gray); padding: 4px; border-radius: 6px; display: flex; }
.drawer-nav { display: flex; flex-direction: column; padding: 1rem; gap: .2rem; flex: 1; }
.drawer-nav a { font-size: .95rem; font-weight: 600; color: rgba(255,255,255,.85); padding: .75rem 1rem; border-radius: var(--radius-sm); transition: all .2s; }
.drawer-nav a:hover { color: var(--white); background: rgba(255,255,255,.07); }
.drawer-nav a.active { color: var(--red); }
.drawer-cta {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  background: #25D366 !important; color: var(--white) !important;
  padding: .9rem 1rem !important; border-radius: var(--radius) !important;
  font-size: .9rem !important; font-weight: 700 !important; margin-top: .5rem;
}
.drawer-contact { padding: 1rem 1.5rem; border-top: 1px solid rgba(255,255,255,.07); display: flex; flex-direction: column; gap: .3rem; }
.drawer-contact a { font-size: .82rem; color: var(--red); font-weight: 600; }
.drawer-contact span { font-size: .78rem; color: var(--gray); }

/* ============ SECTION HEADERS ============ */
.section-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(216,19,36,.12); color: var(--red);
  font-size: .7rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; border: 1px solid rgba(216,19,36,.25);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; color: var(--white); line-height: 1.15;
}
.section-title span { color: var(--red); }
.section-desc { font-size: .96rem; color: var(--gray-light); max-width: 520px; margin-top: .6rem; line-height: 1.75; }
.title-center { text-align: center; }
.title-center .section-desc { margin: .6rem auto 0; }
.section-divider { width: 44px; height: 3px; background: var(--red); border-radius: 2px; margin: 1rem 0; }
.title-center .section-divider { margin: 1rem auto; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-weight: 700; font-size: .9rem;
  padding: .75rem 1.6rem; border-radius: 50px; cursor: pointer;
  transition: all .25s; text-decoration: none; border: none;
}
.btn-primary { background: var(--red); color: var(--white); box-shadow: var(--shadow-red); }
.btn-primary:hover { background: var(--red-bright); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(216,19,36,.5); }
.btn-secondary { background: var(--navy); color: var(--white); box-shadow: var(--shadow-navy); }
.btn-secondary:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.3); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn-outline-red { background: transparent; color: var(--red); border: 1.5px solid var(--red); }
.btn-outline-red:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--dark); }
.btn-white:hover { background: var(--light); transform: translateY(-2px); }
.btn-wa { background: #25D366; color: var(--white); box-shadow: 0 4px 20px rgba(37,211,102,.3); }
.btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,.4); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* ============ HERO ============ */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 68px; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,.95) 0%, rgba(10,10,10,.8) 55%, rgba(11,33,84,.5) 100%);
}
.hero-stripe {
  position: absolute; top: 0; right: -60px; width: 280px; height: 100%;
  background: linear-gradient(180deg, rgba(216,19,36,.1), transparent);
  transform: skewX(-8deg); z-index: 1; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 7rem 1.5rem 4rem; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.hero-left { display: flex; flex-direction: column; }
.hero-right {
  display: flex; flex-direction: column; gap: 1rem;
}
.hero-stat-card {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 1rem 1.2rem;
  backdrop-filter: blur(8px);
}
.stat-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(216,19,36,.15); display: flex; align-items: center; justify-content: center;
  color: var(--red); flex-shrink: 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(216,19,36,.15); color: rgba(255,80,80,.9);
  font-size: .7rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; border: 1px solid rgba(216,19,36,.3);
  margin-bottom: 1.5rem; width: fit-content;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(216,19,36,.15); color: rgba(255,80,80,.9);
  font-size: .7rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; border: 1px solid rgba(216,19,36,.3);
  margin-bottom: 1.5rem; animation: fadeUp .8s ease both;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800; color: var(--white); line-height: 1.05;
  letter-spacing: -1px; margin-bottom: 1.2rem;
  animation: fadeUp .8s .1s ease both;
  text-shadow: 0 2px 40px rgba(0,0,0,.8);
}
.hero-title .red { color: var(--red); }
.hero-title .navy-glow { color: #7b9fff; }
.red-text { color: var(--red); }
.hero-desc {
  font-size: 1rem; color: rgba(255,255,255,.7); line-height: 1.75;
  max-width: 500px; margin-bottom: 2rem;
  animation: fadeUp .8s .2s ease both;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp .8s .3s ease both; }

.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 4rem; flex-wrap: wrap;
  animation: fadeUp .8s .4s ease both;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.08);
}
.stat-num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--red); line-height: 1; }
.stat-label { font-size: .75rem; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; margin-top: 3px; }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeUp 1s .8s ease both;
}
.scroll-text { font-size: .65rem; letter-spacing: 3px; color: rgba(255,255,255,.3); text-transform: uppercase; }
.scroll-dot-wrap { width: 20px; height: 32px; border: 1.5px solid rgba(255,255,255,.2); border-radius: 10px; position: relative; }
.scroll-dot-wrap::after {
  content: ''; position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 6px; background: var(--red); border-radius: 2px;
  animation: scrollAnim 1.5s ease-in-out infinite;
}
@keyframes scrollAnim { 0%,100%{top:5px;opacity:1} 80%{top:16px;opacity:0} }

/* ============ KEUNGGULAN ============ */
#keunggulan { background: var(--dark2); }
.keunggulan-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5px; margin-top: 3rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.05);
}
.keunggulan-card {
  background: var(--dark2); padding: 2rem 1.5rem;
  transition: background .3s; position: relative; overflow: hidden; text-align: left;
}
.keunggulan-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--red); transition: width .4s;
}
.keunggulan-card:hover { background: var(--dark3); }
.keunggulan-card:hover::after { width: 100%; }
.keung-icon-wrap {
  width: 48px; height: 48px; margin-bottom: 1rem; color: var(--red);
}
.keung-icon-wrap svg { width: 100%; height: 100%; }
.keung-title { font-family: var(--font-head); font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: .4rem; text-transform: uppercase; letter-spacing: .5px; }
.keung-desc { font-size: .83rem; color: var(--gray); line-height: 1.65; }

/* ============ LAYANAN ============ */
#layanan { background: var(--dark); }
.layanan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.layanan-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--dark2); border: 1px solid rgba(255,255,255,.06);
  transition: box-shadow .3s, transform .3s; position: relative;
}
.layanan-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(216,19,36,.3); }
.layanan-img { height: 220px; overflow: hidden; position: relative; background: var(--dark3); display: flex; align-items: center; justify-content: center; }
.layanan-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.layanan-card:hover .layanan-img img { transform: scale(1.05); }
.layanan-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,10,10,.7) 0%, transparent 60%); }
.layanan-img-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 1;
  background: var(--red); color: var(--white);
  font-size: .65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px;
}
.layanan-body { padding: 1.8rem; }
.layanan-title { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.layanan-desc { font-size: .87rem; color: var(--gray); line-height: 1.65; margin-bottom: 1.2rem; }
.layanan-features { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.layanan-features li { font-size: .83rem; color: rgba(255,255,255,.8); display: flex; align-items: center; gap: 8px; }
.layanan-features li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.layanan-cta { margin-top: 1.5rem; }

/* ============ PRODUK ============ */
#produk, #produk-home { background: var(--dark3); }
.produk-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.05);
  margin-top: 3rem;
}
.produk-card {
  background: var(--dark3); padding: 1.8rem;
  transition: background .3s; position: relative; overflow: hidden;
}
.produk-card::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: var(--red); transition: height .4s;
}
.produk-card:hover { background: var(--dark4); }
.produk-card:hover::after { height: 100%; }
.produk-card.featured {
  background: linear-gradient(135deg, #180010, #100018);
  border-left: 3px solid var(--gold);
}
.produk-card.featured::after { display: none; }
.produk-card.featured:hover { background: linear-gradient(135deg, #200015, #15001f); }
.best-pill {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: linear-gradient(135deg, var(--gold), #c9a800);
  color: #000; font-size: .65rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 50px;
}
.produk-variant { font-size: .65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-bottom: .3rem; }
.produk-name { font-family: var(--font-head); font-size: 1.25rem; font-weight: 800; color: var(--white); margin-bottom: 1.2rem; line-height: 1.2; }
.produk-name span { color: var(--red); }
.produk-card.featured .produk-name span { color: var(--gold); }
.heat-row { margin-bottom: 1.2rem; }
.heat-label { display: flex; justify-content: space-between; font-size: .75rem; color: var(--gray); margin-bottom: 6px; }
.heat-label strong { color: var(--red); font-weight: 700; }
.produk-card.featured .heat-label strong { color: var(--gold); }
.heat-track { height: 5px; background: rgba(255,255,255,.08); border-radius: 3px; overflow: hidden; }
.heat-fill { height: 100%; background: linear-gradient(90deg, var(--red-dark), var(--red)); border-radius: 3px; transform-origin: left; transform: scaleX(0); transition: transform 1s ease; }
.produk-card.featured .heat-fill { background: linear-gradient(90deg, #c9a800, var(--gold)); }
.heat-fill.animated { transform: scaleX(1); }
.produk-specs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.2rem; }
.spec-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.8);
  font-size: .75rem; font-weight: 600; padding: 4px 10px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.12);
}
.spec-tag svg { width: 12px; height: 12px; color: var(--red); }
.produk-card.featured .spec-tag svg { color: var(--gold); }
.produk-price-row { display: flex; align-items: baseline; gap: 5px; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.07); }
.price-from { font-size: .7rem; color: var(--gray); }
.price-num { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--white); }
.price-unit { font-size: .72rem; color: var(--gray); }
.produk-card.featured .price-num { color: var(--gold); }

/* ============ GALERI ============ */
#galeri, #galeri-home { background: var(--dark2); }
.galeri-filter { display: flex; gap: .5rem; flex-wrap: wrap; margin: 2rem 0; }
.filter-btn {
  font-family: var(--font); font-weight: 600; font-size: .82rem;
  padding: .45rem 1.1rem; border-radius: 50px; cursor: pointer;
  border: 1.5px solid rgba(255,255,255,.15);
  background: transparent; color: rgba(255,255,255,.6); transition: all .2s;
}
.filter-btn.active, .filter-btn:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.galeri-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px; gap: 4px;
}
.galeri-item {
  overflow: hidden; border-radius: 4px; position: relative; cursor: pointer;
  background: var(--dark3);
}
.galeri-item:first-child { grid-row: span 2; }
.galeri-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.galeri-item:hover img { transform: scale(1.07); }
.galeri-overlay {
  position: absolute; inset: 0; background: rgba(216,19,36,0);
  display: flex; align-items: center; justify-content: center; transition: background .3s;
}
.galeri-item:hover .galeri-overlay { background: rgba(216,19,36,.25); }
.galeri-icon { color: var(--white); opacity: 0; transition: opacity .3s; }
.galeri-item:hover .galeri-icon { opacity: 1; }
.galeri-badge {
  position: absolute; bottom: .7rem; left: .7rem;
  background: rgba(0,0,0,.6); backdrop-filter: blur(8px); color: var(--white);
  font-size: .68rem; font-weight: 600; letter-spacing: .5px; padding: 3px 10px; border-radius: 50px;
}

/* ============ BEFORE/AFTER ============ */
.before-after-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.ba-card { border-radius: var(--radius); overflow: hidden; background: var(--dark2); border: 1px solid rgba(255,255,255,.07); }
.ba-images { display: grid; grid-template-columns: 1fr 1fr; }
.ba-side { position: relative; height: 180px; }
.ba-side img { width: 100%; height: 100%; object-fit: cover; }
.ba-label { position: absolute; top: .5rem; left: .5rem; font-size: .65rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 3px 8px; border-radius: 4px; color: var(--white); }
.ba-before { background: rgba(0,0,0,.6); }
.ba-after { background: rgba(216,19,36,.7); }
.ba-body { padding: 1rem; }
.ba-title { font-weight: 700; font-size: .9rem; color: var(--white); }
.ba-meta { font-size: .78rem; color: var(--gray); margin-top: .2rem; }

/* ============ TESTIMONI ============ */
#testimoni { background: var(--dark); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.testi-card {
  background: var(--dark2); border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.06); padding: 1.8rem;
  transition: border-color .3s;
}
.testi-card:hover { border-color: rgba(216,19,36,.3); }
.testi-stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: .8rem; }
.testi-stars svg { width: 14px; height: 14px; }
.testi-text { font-size: .9rem; color: rgba(255,255,255,.85); line-height: 1.75; font-style: italic; margin-bottom: 1.2rem; }
.testi-author { display: flex; align-items: center; gap: .8rem; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  border: 2px solid rgba(216,19,36,.3);
  background: linear-gradient(135deg, var(--red-dark), var(--dark3));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--white);
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.testi-name { font-weight: 700; font-size: .9rem; color: var(--white); }
.testi-vehicle { font-size: .78rem; color: var(--gray); margin-top: 1px; }

/* ============ ESTIMASI ============ */
#estimasi { background: var(--dark2); }
.estimasi-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-top: 3rem; }
.estimasi-form { background: var(--dark3); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid rgba(255,255,255,.07); }
.form-group { margin-bottom: 1.2rem; }
.form-label { font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.9); margin-bottom: .4rem; display: block; }
.form-control {
  width: 100%; padding: .7rem 1rem; border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm); font-family: var(--font); font-size: .9rem;
  color: var(--white); background: rgba(255,255,255,.05);
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-control::placeholder { color: var(--gray); }
.form-control:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(216,19,36,.12); }
select.form-control option { background: var(--dark2); color: var(--white); }
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23888' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .75rem center; background-size: 16px; padding-right: 2.5rem;
  background-color: rgba(255,255,255,.05);
}
.estimasi-result { background: rgba(216,19,36,.07); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid rgba(216,19,36,.2); }
.estimasi-result-title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 1.2rem; }
.result-list { display: flex; flex-direction: column; gap: .8rem; }
.result-item { display: flex; justify-content: space-between; padding: .8rem 1rem; background: rgba(255,255,255,.04); border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,.07); }
.result-label { font-size: .85rem; color: rgba(255,255,255,.85); font-weight: 500; }
.result-price { font-family: var(--font-head); font-size: .95rem; font-weight: 700; color: var(--red); }
.estimasi-note { font-size: .78rem; color: var(--gray); margin-top: 1rem; line-height: 1.6; }

/* ============ BOOKING ============ */
#booking { background: var(--navy-dark); }
.booking-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.booking-left h2 { font-family: var(--font-head); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 1rem; }
.booking-left p { color: rgba(255,255,255,.8); font-size: .95rem; line-height: 1.7; margin-bottom: 1.5rem; }
.booking-features { display: flex; flex-direction: column; gap: .6rem; }
.booking-feature { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: rgba(255,255,255,.88); }
.booking-feature-icon { width: 28px; height: 28px; border-radius: 50%; background: rgba(216,19,36,.3); display: flex; align-items: center; justify-content: center; color: rgba(255,100,100,.9); flex-shrink: 0; }
.booking-form { background: var(--dark2); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid rgba(255,255,255,.07); }
.booking-form-title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ============ AREA COVERAGE ============ */
#area { background: var(--dark3); }
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: .6rem; margin-top: 2rem; }
.area-tag {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-sm);
  padding: .65rem 1rem; font-size: .83rem; font-weight: 600; color: rgba(255,255,255,.85);
  transition: all .2s;
}
.area-tag:hover { border-color: var(--red); color: var(--white); background: rgba(216,19,36,.08); }
.area-tag svg { width: 13px; height: 13px; color: var(--red); flex-shrink: 0; }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a0608 50%, #0d0d0d 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
  border-top: 1px solid rgba(216,19,36,.15);
  border-bottom: 1px solid rgba(216,19,36,.15);
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(216,19,36,.12), transparent 70%);
}
.cta-banner h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: var(--white); margin-bottom: 1rem; position: relative; }
.cta-banner p { font-size: 1rem; color: rgba(255,255,255,.75); max-width: 520px; margin: 0 auto 2.5rem; line-height: 1.75; position: relative; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ============ ABOUT ============ */
#about-section { background: var(--dark); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-grid-reverse { direction: rtl; }
.about-grid-reverse > * { direction: ltr; }
.layanan-btn-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.about-img-wrap { position: relative; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; height: 420px; object-fit: cover; }
.about-img-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--red); color: var(--white); border-radius: var(--radius);
  padding: 1.5rem; text-align: center; box-shadow: var(--shadow-red);
}
.badge-num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; line-height: 1; }
.badge-text { font-size: .75rem; font-weight: 600; margin-top: .2rem; opacity: .9; }
.about-right .section-desc { max-width: 100%; }
.about-list { display: flex; flex-direction: column; gap: .75rem; margin: 1.5rem 0; }
.about-item { display: flex; align-items: flex-start; gap: 12px; }
.about-check { width: 22px; height: 22px; background: rgba(216,19,36,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--red); margin-top: 2px; }
.about-item p { font-size: .9rem; color: rgba(255,255,255,.85); line-height: 1.65; }

/* ============ KONTAK ============ */
.kontak-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; }
.kontak-info { display: flex; flex-direction: column; gap: 1.2rem; }
.info-card { background: var(--dark2); border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius); padding: 1.5rem; }
.info-card-head { display: flex; align-items: center; gap: .8rem; margin-bottom: .8rem; }
.info-icon { width: 38px; height: 38px; background: rgba(216,19,36,.12); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--red); }
.info-card-title { font-weight: 700; font-size: .95rem; color: var(--white); }
.info-text { font-size: .87rem; color: var(--gray); line-height: 1.65; }
.info-text a { color: var(--red); font-weight: 600; transition: color .2s; }
.info-text a:hover { color: var(--red-bright); }
.map-wrap { border-radius: var(--radius); overflow: hidden; height: 240px; background: var(--dark3); }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ============ PAGE HERO ============ */
.page-hero {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, var(--black) 0%, var(--navy-dark) 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; opacity: .1;
  background: radial-gradient(circle at 20% 50%, var(--red), transparent 50%);
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 1rem; }
.breadcrumb a { font-size: .8rem; color: rgba(255,255,255,.4); transition: color .2s; }
.breadcrumb a:hover { color: rgba(255,255,255,.8); }
.breadcrumb span { font-size: .8rem; color: rgba(255,255,255,.25); }
.breadcrumb strong { font-size: .8rem; color: rgba(255,255,255,.7); }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: var(--white); }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,.82); margin-top: .75rem; max-width: 520px; }

/* ============ FOOTER ============ */
footer { background: var(--black); border-top: 1px solid rgba(255,255,255,.05); }
.footer-top { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.footer-logo img { height: 42px; width: auto; object-fit: contain; filter: brightness(1.05); }
.footer-desc { font-size: .85rem; color: var(--gray); line-height: 1.75; max-width: 280px; margin-bottom: 1.2rem; }
.footer-socials { display: flex; gap: .6rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; color: var(--gray); transition: all .3s;
}
.social-btn:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.social-btn svg { width: 16px; height: 16px; }
.footer-heading { font-family: var(--font-head); font-size: .72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-nav-col ul, .footer-service-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-nav-col a, .footer-service-col a { font-size: .85rem; color: var(--gray); transition: color .2s; display: flex; align-items: center; gap: 6px; }
.footer-nav-col a:hover, .footer-service-col a:hover { color: var(--white); }
.footer-nav-col a::before, .footer-service-col a::before { content: '›'; color: var(--red); font-size: 1rem; line-height: 1; }
.footer-contact-list { display: flex; flex-direction: column; gap: .8rem; }
.contact-item { display: flex; align-items: flex-start; gap: 10px; }
.contact-item svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.contact-item span { font-size: .85rem; color: var(--gray); line-height: 1.55; }
.contact-item a { font-size: .85rem; color: var(--red); transition: color .2s; font-weight: 600; }
.contact-item a:hover { color: var(--red-bright); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 1.5rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.footer-bottom-inner p { font-size: .8rem; color: var(--gray-mid); }
.footer-bottom-inner strong { color: var(--gray-light); }
.footer-bottom-inner a { color: var(--red); transition: color .2s; }
.footer-bottom-inner a:hover { color: var(--red-bright); }

/* ============ FLOATING WA ============ */
.floating-wa-wrap {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  display: flex; align-items: center; gap: .6rem;
  flex-direction: row-reverse;
  width: 56px; /* lock wrapper width = tombol WA, tooltip melebar ke kiri via absolute */
}
.floating-wa {
  position: relative;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center; color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: transform .3s, box-shadow .3s;
  flex-shrink: 0;
}
.floating-wa:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.6); }
.wa-pulse { position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(37,211,102,.4); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{transform:scale(1);opacity:.6} 50%{transform:scale(1.2);opacity:0} }

/* ============ HERO HIGHLIGHT ============ */
.hero-highlight {
  position: relative; display: inline-block;
  color: var(--white);
}
.hero-highlight::after {
  content: ''; position: absolute;
  bottom: 2px; left: 0; right: 0; height: 3px;
  background: var(--red); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  animation: highlightIn 0.8s 0.6s ease forwards;
}
@keyframes highlightIn { to { transform: scaleX(1); } }

/* ============ PROSES GRID (galeri page) ============ */
.proses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}
.proses-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  transition: border-color .3s, transform .3s;
}
.proses-card:hover {
  border-color: rgba(216,19,36,.35);
  transform: translateY(-4px);
}
.proses-num {
  font-family: var(--font-head);
  font-size: 3rem; font-weight: 900;
  color: rgba(216,19,36,.15);
  line-height: 1; margin-bottom: .5rem;
  letter-spacing: -2px;
}
.proses-icon {
  color: var(--red); margin-bottom: .8rem;
}
.proses-title {
  font-family: var(--font-head);
  font-size: .95rem; font-weight: 700;
  color: var(--white); text-transform: uppercase;
  letter-spacing: .5px; margin-bottom: .5rem;
}
.proses-desc {
  font-size: .83rem; color: var(--gray); line-height: 1.65;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

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

/* --- Tablet 1024px --- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand-col { grid-column: span 2; }
  .hero-content { gap: 2rem; }
  .about-grid { gap: 2.5rem; }
}

/* --- Mobile 768px --- */
@media (max-width: 768px) {
  /* Navbar */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Section spacing */
  section { padding: 52px 0; }
  .container { padding: 0 1.1rem; }

  /* Hero — stack vertically */
  .hero-content {
    grid-template-columns: 1fr;
    padding: 5rem 1.1rem 3rem;
    gap: 2rem;
  }
  .hero-right {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: .75rem;
  }
  .hero-stat-card { padding: .9rem 1rem; }
  .stat-num { font-size: 1.4rem; }
  .hero-stats { gap: 1.5rem; margin-top: 2.5rem; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-desc { font-size: .93rem; max-width: 100%; }
  .hero-phone-hours { display: none; }
  .hero-scroll { display: none; }
  .floating-wa-wrap { bottom: 1.2rem; right: 1.2rem; }

  /* Footer — pastikan semua kolom tampil di mobile */
  .footer-contact-col { grid-column: span 2; display: block; }

  /* Instagram footer */
  .footer-ig-inner { gap: 1.2rem; }
  .footer-ig-boxes { gap: .4rem; }
  .footer-ig-cta { width: 100%; justify-content: center; }

  /* Grids → single column */
  .about-grid,
  .kontak-grid,
  .booking-inner,
  .estimasi-wrap { grid-template-columns: 1fr; gap: 2rem; }

  /* About */
  .about-img-badge { right: 0; bottom: -1rem; }
  .about-img-main img { height: 280px; }
  .about-grid-reverse { direction: ltr; }
  .layanan-btn-row { flex-direction: column; }
  .layanan-btn-row .btn { justify-content: center; }

  /* Gallery */
  .galeri-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .galeri-item:first-child { grid-row: span 1; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }

  /* Booking — left text on top */
  .booking-inner { flex-direction: column; }

  /* Estimasi — form first, result second */
  .estimasi-wrap { display: flex; flex-direction: column; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-brand-col { grid-column: span 2; }
  .footer-contact-col { grid-column: span 2; }
  .footer-top { padding: 40px 0 28px; }

  /* CTA banner */
  .cta-banner { padding: 52px 0; }
  .cta-banner h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Page hero */
  .page-hero { padding: 80px 0 44px; }
  .page-hero h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }

  /* Visi-Misi tentang */
  .visi-misi-grid { grid-template-columns: 1fr !important; }

  /* Stats tentang */
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Brand logo grid */
  .brand-logo-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-logo-tile svg { width: 110px; height: 38px; }
}

/* --- Small mobile 480px --- */
@media (max-width: 480px) {
  section { padding: 44px 0; }
  .container { padding: 0 .9rem; }

  /* Hero */
  .hero-content { padding: 4.5rem .9rem 2.5rem; }
  .hero-right { grid-template-columns: 1fr 1fr; gap: .5rem; }
  .hero-stat-card { padding: .7rem .8rem; flex-direction: column; gap: 4px; text-align: center; }
  .stat-icon { width: 28px; height: 28px; }
  .stat-num { font-size: 1.2rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }

  /* Products */
  .produk-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .galeri-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }

  /* About */
  .about-img-main img { height: 220px; }
  .about-img-badge { display: none; }
  .about-grid-reverse { direction: ltr; }

  /* Keunggulan */
  .keunggulan-grid { grid-template-columns: 1fr; }

  /* Section title */
  .section-title { font-size: clamp(1.5rem, 7vw, 2rem); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand-col, .footer-contact-col { grid-column: span 1; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: .3rem; }

  /* Brand logo grid */
  .brand-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-logo-tile svg { width: 120px; height: 40px; }

  /* Visi-Misi */
  .visi-misi-grid { grid-template-columns: 1fr !important; gap: 1rem !important; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1rem !important; }
  .stats-grid > div { padding: 1.2rem 1rem !important; }
  .stats-grid > div > div:first-child { font-size: 1.8rem !important; }

  /* Kontak info + form */
  .kontak-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .map-wrap { height: 180px; }

  /* Proses grid */
  .proses-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .proses-num { font-size: 2.2rem; }

  /* Footer contact kolom full */
  .footer-contact-col { grid-column: span 1; }

  /* Instagram footer mobile */
  .footer-ig-left { width: 100%; }
  .footer-ig-box span { display: none; }
  .footer-ig-box { padding: .5rem .7rem; }
  .footer-ig-boxes { gap: .35rem; }

  /* Layanan card image */
  .layanan-img { height: 180px; }

  /* Estimasi */
  .estimasi-form, .estimasi-result { padding: 1.4rem; }

  /* Booking form */
  .booking-form { padding: 1.4rem; }

  /* Btn full width on small */
  .btn-lg { padding: .85rem 1.4rem; font-size: .93rem; }
}

/* ============ HERO PHONE ROW ============ */
.hero-phone-row {
  display: flex; align-items: center; gap: .6rem;
  margin-top: 1rem; flex-wrap: wrap;
}
.hero-phone-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .85rem; font-weight: 700; color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
  padding: .35rem .85rem; border-radius: 50px;
  transition: background .2s, color .2s;
}
.hero-phone-link:hover { background: rgba(255,255,255,.14); color: var(--white); }
.hero-phone-sep { color: rgba(255,255,255,.3); font-size: .85rem; }
.hero-phone-hours { font-size: .78rem; color: rgba(255,255,255,.45); }

/* ============ PRICE EXAMPLE ============ */
.price-example {
  font-size: .72rem; color: var(--gray);
  margin-top: .35rem; line-height: 1.5;
  padding: .3rem .6rem;
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-sm);
  border-left: 2px solid rgba(216,19,36,.4);
}
.produk-card.featured .price-example { border-left-color: rgba(232,192,0,.5); }

/* ============ FOOTER INSTAGRAM ============ */
.footer-ig {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 2rem 0;
}
.footer-ig-inner {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.footer-ig-left {
  display: flex; align-items: center; gap: 1rem; flex-shrink: 0;
}
.footer-ig-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.footer-ig-title {
  font-weight: 700; font-size: .9rem; color: var(--white);
}
.footer-ig-handle {
  font-size: .8rem; color: var(--gray); margin-top: 2px;
}
.footer-ig-boxes {
  display: flex; gap: .5rem; flex-wrap: wrap; flex: 1;
}
.footer-ig-box {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: 50px; padding: .4rem .9rem;
  font-size: .78rem; color: rgba(255,255,255,.7); font-weight: 600;
  transition: all .2s; white-space: nowrap;
}
.footer-ig-box svg { color: var(--gray); flex-shrink: 0; }
.footer-ig-box:hover {
  background: rgba(220,39,67,.15);
  border-color: rgba(220,39,67,.4);
  color: var(--white);
}
.footer-ig-box:hover svg { color: #e6683c; }
.footer-ig-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, #e6683c, #cc2366);
  color: var(--white); font-size: .82rem; font-weight: 700;
  padding: .55rem 1.2rem; border-radius: 50px;
  white-space: nowrap; transition: opacity .2s; flex-shrink: 0;
}
.footer-ig-cta:hover { opacity: .88; }

/* ============ FLOATING WA TOOLTIP ============ */
.floating-wa-wrap {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  width: 56px; height: 56px; /* fixed size = tombol WA saja */
}
.floating-wa-tooltip {
  position: absolute;
  right: calc(100% + .75rem); /* tooltip melebar ke kiri, tombol tetap di pojok kanan */
  top: 50%; transform: translateY(-50%) translateX(8px);
  background: var(--dark2); color: var(--white);
  font-size: .78rem; font-weight: 600;
  padding: .45rem .9rem; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.1);
  white-space: nowrap; pointer-events: none;
  opacity: 0;
  transition: opacity .3s, transform .3s;
  box-shadow: var(--shadow);
}
.floating-wa-tooltip.show {
  opacity: 1; transform: translateY(-50%) translateX(0);
}
.floating-wa-wrap .floating-wa {
  position: absolute; inset: 0; width: 56px; height: 56px;
}

/* ============ BRAND LOGOS ============ */
.brand-logo-wrap {
  display: flex; align-items: center; margin-bottom: 1.1rem;
}
.brand-logo-wrap svg {
  width: 140px; height: auto; max-height: 46px;
  border-radius: 6px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
}
.produk-card.featured .brand-logo-wrap svg {
  filter: drop-shadow(0 2px 12px rgba(232,192,0,.25));
}

/* Brand grid on tentang page */
.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.brand-logo-tile {
  display: flex; align-items: center; justify-content: center;
  background: var(--dark4);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: .75rem;
  transition: border-color .25s, transform .25s;
  min-height: 60px;
}
.brand-logo-tile:hover {
  border-color: rgba(216,19,36,.4);
  transform: translateY(-3px);
}
.brand-logo-tile svg {
  width: 140px; height: 44px;
  max-width: 100%;
  border-radius: 5px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.4));
}
@media (max-width: 480px) {
  .brand-logo-grid { grid-template-columns: repeat(2, 1fr); }
}
