/*
Theme Name: Amanah Epoxy
Theme URI: https://amanahepoxy.com
Author: Amanah Epoxy
Author URI: https://amanahepoxy.com
Description: Theme profesional untuk jasa coating dan epoxy lantai. Desain modern, responsif, cepat, dan SEO-friendly.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: amanah-epoxy
Tags: business, one-page, responsive, custom-colors, custom-logo, featured-images, full-width-template, theme-options, translation-ready
*/

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --primary:        #2563EB;
  --primary-dark:   #1D4ED8;
  --primary-light:  #EFF6FF;
  --dark:           #0A1628;
  --dark2:          #1E3A5F;
  --white:          #FFFFFF;
  --light:          #F8FAFF;
  --muted:          #64748B;
  --border:         #E2E8F0;
  --text:           #374151;
  --heading:        #0A1628;
  --accent:         #4A9EFF;

  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);

  --container: 1200px;
  --section-py: 90px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color .2s;
}

a:hover { color: var(--primary-dark); }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--heading);
  line-height: 1.2;
  font-weight: 800;
}

/* =============================================
   UTILITY
   ============================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-py) 0; }
.section--dark { background: var(--dark); }
.section--dark2 { background: var(--dark2); }
.section--light { background: var(--light); }
.section--white { background: var(--white); }
.section--blue { background: var(--primary); }

.section-tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}
.section--dark .section-tag,
.section--dark2 .section-tag { color: var(--accent); }
.section--blue .section-tag { color: rgba(255,255,255,0.75); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-tag { display: block; }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 14px;
}
.section--dark .section-title,
.section--dark2 .section-title,
.section--blue .section-title { color: var(--white); }

.section-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}
.section--dark .section-desc,
.section--dark2 .section-desc { color: rgba(255,255,255,0.55); }
.section--blue .section-desc { color: rgba(255,255,255,0.85); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
  letter-spacing: .3px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,99,235,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-outline-dark {
  background: transparent;
  color: var(--heading);
  border: 1.5px solid var(--border);
}
.btn-outline-dark:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: #0d1f38;
  color: var(--white);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 15px;
}

.divider {
  width: 40px;
  height: 3px;
  background: var(--primary);
  margin: 16px auto 0;
  border-radius: 2px;
}
.divider--left { margin-left: 0; }

/* =============================================
   SKIP LINK (Accessibility)
   ============================================= */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
  font-size: 14px;
}
.skip-link:focus { top: 0; }

/* =============================================
   NAVBAR
   ============================================= */
#masthead {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all .35s;
}

/* Homepage: navbar transparan di atas hero gelap */
.home #masthead .navbar {
  background: transparent;
}

/* Semua halaman selain homepage: navbar solid dari awal */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(10,22,40,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all .35s;
}

/* Homepage: transparan sebelum scroll */
.home .navbar {
  background: transparent;
  backdrop-filter: none;
}

/* Saat di-scroll (semua halaman) */
#masthead.scrolled .navbar {
  background: rgba(10,22,40,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 40px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar__logo-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
}

.navbar__logo-sub {
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  font-weight: 500;
  line-height: 1;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__nav a {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .5px;
  text-decoration: none;
  transition: color .2s;
  position: relative;
}

.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .25s;
}

.navbar__nav a:hover,
.navbar__nav a:hover::after {
  color: var(--white);
  width: 100%;
}

.navbar__cta { margin-left: 12px; }

/* Hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all .3s;
  border-radius: 2px;
}
.navbar__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.active span:nth-child(2) { opacity: 0; }
.navbar__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.navbar__mobile {
  display: none;
  flex-direction: column;
  background: rgba(10,22,40,0.98);
  padding: 20px 24px 28px;
  gap: 4px;
}
.navbar__mobile a {
  color: rgba(255,255,255,0.8);
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: block;
  text-decoration: none;
}
.navbar__mobile a:last-child { border: none; margin-top: 12px; }
.navbar__mobile.open { display: flex; }

/* =============================================
   HERO
   ============================================= */
#hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,158,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,158,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__bg-glow {
  position: absolute;
  top: 20%;
  right: 15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-block;
  border: 1px solid rgba(74,158,255,0.35);
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  margin-bottom: 24px;
  border-radius: 20px;
  font-weight: 600;
  animation: fadeUp .7s ease both;
}

.hero__title {
  font-size: clamp(42px, 8vw, 80px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  animation: fadeUp .7s ease .1s both;
}
.hero__title span { color: var(--accent); }

.hero__subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.8;
  animation: fadeUp .7s ease .2s both;
}

.hero__btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .7s ease .3s both;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.3);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeUp .7s ease .5s both;
}
.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}

/* =============================================
   STATS BAR
   ============================================= */
#stats {
  background: var(--dark2);
  padding: 36px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 1px;
  background: rgba(255,255,255,0.06);
}

.stats__item {
  background: var(--dark2);
  padding: 24px 20px;
}

.stats__num {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stats__label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

/* =============================================
   LAYANAN
   ============================================= */
.layanan__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.layanan__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.layanan__card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}

.layanan__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}
.layanan__card:hover::before { transform: scaleX(1); }

.layanan__icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.layanan__icon svg { width: 24px; height: 24px; fill: var(--primary); }

.layanan__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 8px;
}

.layanan__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.layanan__link {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: .5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.layanan__link:hover { gap: 8px; }

/* =============================================
   GALERI
   ============================================= */
.galeri__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}

.galeri__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--dark2);
  cursor: pointer;
}

.galeri__item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.galeri__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
  min-height: 200px;
}
.galeri__item:first-child .galeri__img { min-height: 400px; }

.galeri__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(10,22,40,0.85));
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.galeri__item:hover .galeri__overlay { opacity: 1; }
.galeri__item:hover .galeri__img { transform: scale(1.04); }

.galeri__caption {
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
}

.galeri__placeholder {
  width: 100%;
  height: 100%;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--dark2);
}
.galeri__item:first-child .galeri__placeholder { min-height: 400px; }
.galeri__placeholder-icon { font-size: 32px; opacity: .25; }
.galeri__placeholder-label { font-size: 10px; letter-spacing: 1.5px; color: rgba(255,255,255,0.25); text-transform: uppercase; }

/* =============================================
   TENTANG
   ============================================= */
.tentang__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.tentang__content .section-tag,
.tentang__content .section-title { text-align: left; }
.tentang__content .section-title { font-size: clamp(26px, 3.5vw, 38px); }
.tentang__content .divider { margin-left: 0; }

.tentang__desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin: 20px 0 28px;
}
.tentang__desc strong { color: var(--heading); }

.tentang__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.tentang__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
}

.tentang__check {
  width: 20px;
  height: 20px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tentang__check svg { width: 11px; height: 11px; fill: var(--primary); }

.tentang__area {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}
.tentang__area strong { color: var(--heading); display: block; margin-bottom: 6px; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; }

.tentang__img-wrap {
  position: relative;
}

.tentang__img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 480px;
}

.tentang__img-placeholder {
  width: 100%;
  height: 480px;
  background: var(--primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--primary);
  color: var(--primary);
  font-size: 13px;
  letter-spacing: 1px;
}

.tentang__badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.tentang__badge-num {
  font-size: 36px;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.tentang__badge-label { font-size: 11px; opacity: .85; letter-spacing: 1px; }

/* =============================================
   KEUNGGULAN
   ============================================= */
.keung__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.keung__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-bottom: 4px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all .3s;
}
.keung__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.keung__icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.keung__icon svg { width: 24px; height: 24px; fill: var(--primary); }

.keung__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 8px;
}

.keung__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* =============================================
   HARGA / PRICING
   ============================================= */
.harga__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.harga__card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all .3s;
}
.harga__card:hover { box-shadow: var(--shadow-lg); }

.harga__card--featured {
  border: 2px solid var(--primary);
  box-shadow: 0 0 0 6px rgba(37,99,235,0.07);
}

.harga__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: .5px;
}

.harga__header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border);
}

.harga__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.harga__icon svg { width: 22px; height: 22px; }
.icon--light { background: var(--primary-light); }
.icon--light svg { fill: var(--primary); }
.icon--blue { background: var(--primary); }
.icon--blue svg { fill: var(--white); }
.icon--dark { background: var(--dark); }
.icon--dark svg { fill: var(--white); }

.harga__name {
  font-size: 18px;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 4px;
}

.harga__sub {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
}

.harga__price-wrap { display: flex; align-items: baseline; gap: 3px; }
.harga__currency { font-size: 13px; color: var(--muted); font-weight: 500; }
.harga__amount {
  font-size: 38px;
  font-weight: 800;
  color: var(--heading);
  line-height: 1;
}
.harga__card--featured .harga__amount { color: var(--primary); }
.harga__unit { font-size: 12px; color: var(--muted); margin-left: 2px; }

.harga__body { padding: 20px 28px; }

.harga__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.harga__feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
}
.harga__feat--dim { color: var(--border); }
.harga__feat--highlight { font-weight: 700; color: var(--primary); }

.harga__feat-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.harga__feat-dot svg { width: 10px; height: 10px; fill: var(--primary); }
.harga__feat--dim .harga__feat-dot { border-color: var(--border); }
.harga__feat--dim .harga__feat-dot svg { fill: var(--border); }
.harga__feat--highlight .harga__feat-dot { background: var(--primary-light); }

.harga__note {
  margin-top: 48px;
  background: var(--primary-light);
  border: 1px solid #BFDBFE;
  border-radius: var(--radius-md);
  padding: 16px 24px;
  text-align: center;
  font-size: 14px;
  color: #1E40AF;
  line-height: 1.7;
}

/* =============================================
   CTA BANNER
   ============================================= */
#cta {
  padding: 80px 0;
  background: var(--primary);
  text-align: center;
}
#cta .section-title { color: var(--white); }
#cta .section-desc { color: rgba(255,255,255,0.85); margin-bottom: 32px; }

/* =============================================
   KONTAK
   ============================================= */
.kontak__wrap {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
}

.kontak__form { display: flex; flex-direction: column; gap: 18px; }

.form__group { display: flex; flex-direction: column; gap: 6px; }
.form__group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  border-radius: var(--radius-sm);
  transition: border-color .2s;
  outline: none;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--accent);
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form__group select option { background: var(--dark); }
.form__group textarea { resize: vertical; min-height: 120px; }

.kontak__submit {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  letter-spacing: .5px;
  transition: all .25s;
}
.kontak__submit:hover { background: var(--primary-dark); transform: translateY(-1px); }

.kontak__info { display: flex; flex-direction: column; gap: 12px; }

.kontak__info-card {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: background .2s;
}
.kontak__info-card:hover { background: rgba(255,255,255,0.08); }

.kontak__info-icon {
  width: 34px;
  height: 34px;
  background: rgba(74,158,255,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kontak__info-icon svg { width: 16px; height: 16px; fill: var(--accent); }

.kontak__info-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.kontak__info-val {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25D366;
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all .3s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); color: var(--white); }
.wa-float svg { width: 28px; height: 28px; fill: var(--white); }

/* =============================================
   FOOTER
   ============================================= */
#colophon {
  background: #060E1A;
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.footer__brand-tag {
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.footer__brand-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  max-width: 280px;
}

.footer__heading {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color .2s;
}
.footer__links a:hover { color: var(--accent); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer__bottom-links {
  display: flex;
  gap: 20px;
}
.footer__bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color .2s;
}
.footer__bottom-links a:hover { color: var(--accent); }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollLine {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.3); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  :root { --section-py: 70px; }
  .layanan__grid { grid-template-columns: repeat(2, 1fr); }
  .keung__grid { grid-template-columns: repeat(2, 1fr); }
  .harga__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }
  .navbar { padding: 16px 20px; }
  #masthead.scrolled .navbar { padding: 12px 20px; }
  .navbar__nav, .navbar__cta { display: none; }
  .navbar__toggle { display: flex; }
  .hero__title { font-size: clamp(36px, 10vw, 56px); }
  .hero__subtitle { font-size: 15px; }
  .stats__grid { grid-template-columns: repeat(3,1fr); }
  .stats__num { font-size: 30px; }
  .layanan__grid { grid-template-columns: 1fr; }
  .galeri__grid { grid-template-columns: 1fr 1fr; }
  .galeri__item:first-child { grid-column: span 2; grid-row: span 1; }
  .tentang__wrap { grid-template-columns: 1fr; gap: 40px; }
  .tentang__img, .tentang__img-placeholder { height: 280px; }
  .tentang__badge { bottom: -16px; left: 50%; transform: translateX(-50%); }
  .keung__grid { grid-template-columns: 1fr 1fr; }
  .kontak__wrap { grid-template-columns: 1fr; gap: 36px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .hero__btns { flex-direction: column; align-items: center; }
  .stats__grid { grid-template-columns: 1fr; }
  .keung__grid { grid-template-columns: 1fr; }
  .galeri__grid { grid-template-columns: 1fr; }
  .galeri__item:first-child { grid-column: span 1; }
}

/* =============================================
   PRINT
   ============================================= */
@media print {
  #masthead, .wa-float, .hero__scroll { display: none; }
  body { color: #000; background: #fff; }
}
