/* ============================================================
   CV. Rahma Jaya Abadi — Company Profile Website
   Pure CSS, zero framework | Theme: White + Navy Blue
   ============================================================ */

/* ── 1. CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  --blue:       #0077B6;
  --blue-dark:  #005F92;
  --blue-dim:   rgba(0, 119, 182, 0.10);
  --cyan:       #00B4D8;
  --cyan-dim:   rgba(0, 180, 216, 0.10);
  --white:      #FFFFFF;
  --light:      #F0F7FF;
  --light-2:    #E1F0FC;
  --border:     rgba(0, 119, 182, 0.14);
  --text:       #1A1A2E;
  --text-muted: #4A5568;
  --text-dim:   #94A3B8;
  --green:      #25D366;
  --shadow:     0 4px 24px rgba(0, 119, 182, 0.10);
  --shadow-lg:  0 12px 40px rgba(0, 119, 182, 0.18);

  --font-display: 'Bebas Neue', Arial, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-h:  72px;
  --radius: 12px;
  --radius-sm: 6px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

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

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* ── 3. LAYOUT ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

/* ── 4. TYPOGRAPHY ────────────────────────────────────────── */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.label-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
  padding-left: 2px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-heading { margin-left: auto; margin-right: auto; }
.section-header .section-sub { margin: 0 auto; }

/* ── 5. BUTTONS ───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(0, 119, 182, 0.2);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0, 119, 182, 0.3); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 12px 28px;
  border: 2px solid var(--white);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.btn-ghost:hover { background: var(--white); color: var(--blue); border-color: var(--white); }

/* ── 6. PLACEHOLDER BLOCKS ────────────────────────────────── */
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: var(--light);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  color: var(--text-dim);
  text-align: center;
  padding: 2rem;
  transition: border-color 0.2s;
}
.img-placeholder svg { opacity: 0.3; }
.img-placeholder p { font-size: 0.88rem; font-weight: 500; }
.img-placeholder small { font-size: 0.72rem; color: var(--text-dim); opacity: 0.7; }
.img-placeholder--gallery {
  min-height: 220px;
  border-radius: 0;
  background: linear-gradient(135deg, var(--light) 0%, var(--light-2) 100%);
  border-style: dashed;
}
.img-placeholder--gallery:hover { border-color: var(--blue); background: var(--light-2); }

/* ── 7. NAVBAR ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 8px rgba(0, 119, 182, 0.08);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: filter 0.3s;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.4));
}
.navbar.scrolled .logo-img {
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.1));
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.navbar.scrolled .nav-link { color: var(--text-muted); }
.nav-link:hover, .nav-link.active { color: var(--blue); background: rgba(0, 119, 182, 0.06); }
.navbar.scrolled .nav-link.active { color: var(--blue); background: rgba(0, 119, 182, 0.1); }

.btn-wa {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  background: var(--green);
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s;
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.25);
}
.btn-wa:hover { background: #1fab5c; transform: translateY(-2px); box-shadow: 0 5px 16px rgba(37, 211, 102, 0.4); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.navbar.scrolled .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 8. HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.65) 45%,
    rgba(0,0,0,0.25) 100%
  );
}

.hero-body {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-top: var(--nav-h);
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.2rem;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,180,216,0.6); }
  50%       { box-shadow: 0 0 0 6px rgba(0,180,216,0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 9vw, 7.2rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 1.6rem;
}
.hero-title em {
  font-style: normal;
  color: var(--cyan);
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 440px;
  margin-bottom: 2.2rem;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-card {
  flex-shrink: 0;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 20px 24px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hcard-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}
.hcard-item svg { color: var(--cyan); flex-shrink: 0; }
.hcard-item div { display: flex; flex-direction: column; gap: 2px; }
.hcard-item strong { font-size: 0.9rem; font-weight: 600; color: var(--white); }
.hcard-item small  { font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.hcard-divider { height: 1px; background: rgba(255,255,255,0.15); }

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  z-index: 1;
  animation: scroll-bounce 2s ease infinite;
}
.scroll-bar {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── 9. STATS ─────────────────────────────────────────────── */
.stats {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 1rem;
  grid-column: span 1;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1;
  color: var(--text);
  letter-spacing: 0.02em;
}
.stat-num .counter { color: var(--blue); }
.stat-lbl { font-size: 0.8rem; color: var(--text-muted); text-align: center; }
.stat-sep {
  grid-column: span 1;
  height: 40px;
  width: 1px;
  background: var(--border);
  margin: 0 auto;
}

/* ── 10. ABOUT ────────────────────────────────────────────── */
.about {
  padding: 120px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-img-wrap .img-placeholder { height: 460px; min-height: unset; }
.about-accent-box {
  position: absolute;
  bottom: -1px;
  right: -1px;
  background: var(--blue);
  color: var(--white);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: var(--radius) 0 var(--radius) 0;
  box-shadow: 0 -6px 20px rgba(0, 119, 182, 0.2);
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 2rem 0 2.4rem;
}
.about-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text);
}
.check-icon {
  width: 24px; height: 24px;
  background: var(--blue-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}

/* ── 11. SERVICES ─────────────────────────────────────────── */
.services {
  padding: 120px 0;
  background: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── 11b. SERVICES LARGE CARD (2-col layout) ─────────────── */
.svc-card-large {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 119, 182, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.svc-card-large:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.svc-cat-header {
  padding: 1.8rem 2rem;
  color: var(--white);
}
.svc-cat-header.svc-blue  { background: var(--blue); }
.svc-cat-header.svc-cyan  { background: var(--cyan); }
.svc-cat-header h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}
.svc-cat-header p { font-size: 0.88rem; opacity: 0.85; margin: 0; }

.svc-cat-body {
  padding: 1.6rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  flex: 1;
}

.svc-subcat h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 0;
  list-style: none;
}
.svc-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}
.svc-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: bold;
}

/* ── 12. GALLERY ──────────────────────────────────────────── */
.gallery {
  padding: 120px 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 8px;
  border-radius: var(--radius);
  overflow: hidden;
}

.g-item {
  position: relative;
  overflow: hidden;
  background: var(--light);
  border-radius: var(--radius);
  cursor: pointer;
}
.g-item--featured {
  grid-row: span 2;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
  min-height: 220px;
  display: block;
}
.g-item--featured img { min-height: 460px; }
.g-item:hover img { transform: scale(1.04); }

.g-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s;
}
.g-item:hover .g-caption { opacity: 1; }

/* ── 13. LIGHTBOX ────────────────────────────────────────── */
.lightbox-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(4px);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s ease;
}
.lightbox-overlay.active { display: flex; }

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

.lightbox-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-content img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: -40px; right: 0;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }

/* ── 14. TESTIMONIALS ────────────────────────────────────── */
.testimonials {
  padding: 120px 0;
  background: var(--light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--white);
  padding: 2.4rem 2rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0, 119, 182, 0.08);
  transition: all 0.3s ease;
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 0; left: 2rem;
  font-size: 4rem;
  font-family: var(--font-display);
  color: var(--cyan);
  opacity: 0.3;
  line-height: 1;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.testi-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
  position: relative;
  z-index: 1;
}

.testi-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testi-name {
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
}
.testi-title {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ── 15. CONTACT & FORM ───────────────────────────────────── */
.contact {
  padding: 120px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 360px;
}

.contact-list { display: flex; flex-direction: column; gap: 8px; }

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--light);
  transition: all 0.2s;
  cursor: pointer;
}
.contact-row:hover { border-color: var(--blue); background: var(--light-2); }
.contact-row--featured {
  border-color: rgba(37, 211, 102, 0.3);
  background: rgba(37, 211, 102, 0.05);
}
.contact-row--featured:hover { border-color: var(--green); background: rgba(37, 211, 102, 0.08); }

.crow-icon {
  width: 38px; height: 38px;
  background: var(--blue-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.crow-icon--green { background: rgba(37, 211, 102, 0.1); color: var(--green); }
.crow-label { display: block; font-size: 0.7rem; color: var(--text-dim); margin-bottom: 2px; }
.contact-row div:nth-child(2) strong { font-size: 0.88rem; color: var(--text); }
.crow-arrow { margin-left: auto; color: var(--text-dim); }

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: var(--light);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

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

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  transition: all 0.2s;
  min-height: 44px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}

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

.form-submit {
  display: flex;
  gap: 12px;
}

.form-submit button {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}

.form-submit .btn-submit {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 119, 182, 0.2);
}
.form-submit .btn-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 119, 182, 0.3);
}

.form-submit .btn-reset {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
}
.form-submit .btn-reset:hover {
  color: var(--text);
  border-color: var(--text-muted);
}

.contact-map-wrap {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-map {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: var(--radius) var(--radius) 0 0;
  filter: grayscale(20%) contrast(1.1);
}
.btn-maps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--light);
  border: 1.5px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s;
}
.btn-maps:hover { color: var(--blue); background: var(--light-2); border-color: var(--blue); }

/* ── 16. VISI & MISI ──────────────────────────────────────── */
.visi-misi {
  padding: 120px 0;
  background: var(--light);
}

.visi-misi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.vm-card {
  background: var(--white);
  padding: 2.8rem 2.4rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  border-left: 4px solid var(--blue);
  transition: all 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.vm-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text);
  margin: 0;
}

.vm-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

.vm-misi {
  border-left-color: var(--cyan);
}

.misi-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.misi-list li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.misi-list li:before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: bold;
}

/* ── 17. KEUNGGULAN ───────────────────────────────────────── */
.advantages {
  padding: 120px 0;
  background: var(--white);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.adv-card {
  background: var(--light);
  padding: 2.4rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 3px solid var(--blue);
}

.adv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.adv-icon {
  width: 60px;
  height: 60px;
  background: var(--blue-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin: 0 auto 1.2rem;
  transition: all 0.3s ease;
}

.adv-card:hover .adv-icon {
  background: var(--blue);
  color: var(--white);
}

.adv-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.8rem;
}

.adv-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

/* ── 18. PORTOFOLIO KLIEN ─────────────────────────────────── */
.clients {
  padding: 120px 0;
  background: var(--light);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.client-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 1.8rem 1rem 1.4rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  text-align: center;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.22s ease,
              box-shadow 0.22s ease;
  will-change: transform;
  position: relative;
}

.client-card:hover {
  border-color: var(--c, var(--blue));
  box-shadow: 0 8px 24px rgba(0, 119, 182, 0.15);
  transform: translateY(-4px) scale(1.05);
  z-index: 1;
}

.client-logo-wrap {
  width: 90px;
  height: 90px;
  border-radius: 14px;
  background: var(--blue-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease;
  overflow: hidden;
}

.client-card:hover .client-logo-wrap {
  background: var(--c, var(--blue));
}

.client-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.client-logo-wrap:has(img) {
  background: transparent;
}
.client-card:hover .client-logo-wrap:has(img) {
  background: transparent;
}

.client-initials {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.05em;
  color: var(--c, var(--blue));
  line-height: 1;
  transition: color 0.25s ease;
}

.client-card:hover .client-initials {
  color: var(--white);
}

.client-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.45;
  transition: color 0.2s ease;
}

.client-card:hover .client-name {
  color: var(--c, var(--blue));
}

/* ── 19. PRODUK ───────────────────────────────────────────── */
.product {
  padding: 120px 0;
  background: var(--white);
}

.product-card {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  padding: 3.2rem 2.8rem;
  border-radius: var(--radius);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 119, 182, 0.25);
}

.product-header {
  margin-bottom: 1.6rem;
}

.product-header h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  margin: 0 0 0.4rem;
  letter-spacing: 0.04em;
}

.product-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
  font-weight: 500;
}

.product-desc {
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.product-card .btn-primary {
  background: var(--white);
  color: var(--blue);
  box-shadow: none;
}

.product-card .btn-primary:hover {
  background: var(--light);
  transform: translateY(-2px);
}

/* ── 20. FAQ ──────────────────────────────────────────────── */
.faq {
  padding: 120px 0;
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--light);
  transition: all 0.3s ease;
}

.faq-item.open {
  border-color: var(--blue);
  background: var(--light-2);
  box-shadow: 0 4px 16px rgba(0, 119, 182, 0.12);
}

.faq-question {
  width: 100%;
  padding: 1.6rem;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
  text-align: left;
}

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

.faq-question svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--blue);
  transition: transform 0.3s ease;
}

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

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

.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 1.6rem 1.6rem;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.faq-answer p:last-child { margin-bottom: 0; }

.faq-answer ul,
.faq-answer ol {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-left: 1.2rem;
  margin-bottom: 0.8rem;
}

.faq-answer li {
  margin-bottom: 0.4rem;
}

.faq-answer strong {
  color: var(--text);
}

/* ── 21. FOOTER ───────────────────────────────────────────── */
.footer {
  background: var(--blue);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  margin-top: 1.2rem;
  margin-bottom: 1.4rem;
  max-width: 300px;
  line-height: 1.75;
}
.footer-brand .logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
  width: 100%;
}
.footer-brand .logo-img {
  height: 80px;
  width: 80px;
  object-fit: contain;
  object-position: left;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}
.footer-contact-short {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-contact-short a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.footer-contact-short a:hover { color: var(--cyan); }

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.footer-col a,
.footer-col span {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cyan); }

.footer-bottom {
  background: rgba(0, 0, 0, 0.1);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.6); }

/* ── 22. BACK TO TOP ──────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 92px;
  right: 28px;
  z-index: 199;
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 119, 182, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
}

/* ── 23. FORM ERROR MESSAGES ──────────────────────────────── */
.form-error {
  font-size: 0.78rem;
  color: #e53e3e;
  display: none;
  margin-top: 2px;
}
.form-group.has-error .form-error {
  display: block;
}
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

/* ── 24. FLOATING WA ──────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 54px; height: 54px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.2s;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}
.wa-tooltip {
  position: absolute;
  right: 64px;
  background: rgba(0,0,0,0.8);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.2s, transform 0.2s;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ── 25. SCROLL REVEAL ANIMATIONS ────────────────────────── */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-reveal="up"]    { transform: translateY(32px); }
[data-reveal="left"]  { transform: translateX(-50px); }
[data-reveal="right"] { transform: translateX(50px); }
[data-reveal="hero"]  { opacity: 0; transform: translateY(20px); }

[data-reveal].visible {
  opacity: 1;
  transform: translate(0);
}

/* ── 26. RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid        { grid-template-columns: 1fr; gap: 48px; }
  .about-visual      { order: -1; }
  .contact-grid      { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand      { grid-column: span 2; }
  .services-grid     { grid-template-columns: repeat(2, 1fr); }
  .services-2col     { grid-template-columns: 1fr !important; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid          { grid-template-columns: 1fr; max-width: 100%; }
  .visi-misi-grid    { grid-template-columns: 1fr; gap: 24px; }
  .advantages-grid   { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .clients-grid      { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .stats-grid        { grid-template-columns: repeat(4, 1fr) !important; }
  .stat-sep:nth-child(6),
  .stat-sep:nth-child(8) { display: none; }
}

@media (max-width: 768px) {
  /* Navigation */
  .nav-links, .btn-wa { display: none; }
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 1.5rem 24px 2rem;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform 0.35s var(--ease-out);
    z-index: 99;
  }
  .nav-links.open {
    display: flex;
    transform: translateY(0);
  }
  .nav-link { padding: 12px 16px; font-size: 1rem; color: var(--text); }
  .nav-link.active { background: var(--blue-dim); }

  /* Buttons — touch friendly */
  .btn-primary, .btn-ghost {
    min-height: 48px;
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  /* Hero */
  .hero { padding-bottom: 60px; }
  .hero-body   { flex-direction: column; align-items: flex-start; }
  .hero-card   { display: none; }
  .hero-title  { font-size: clamp(2.8rem, 11vw, 4.8rem); }
  .hero-desc   { font-size: 0.95rem; }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0;
  }
  .stat-sep { display: none !important; }
  .stat { border-bottom: 1px solid var(--border); }
  .stat:nth-child(odd) { border-right: 1px solid var(--border); }

  /* Section spacing */
  .about, .visi-misi, .services, .advantages, .clients,
  .product, .gallery, .faq, .testimonials, .contact { padding: 72px 0; }
  .section-header { margin-bottom: 2.4rem; }
  .section-heading { font-size: clamp(2rem, 7vw, 2.8rem); }

  /* About */
  .about-img-wrap img,
  .about-img-wrap .img-placeholder { height: 300px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .services-2col { grid-template-columns: 1fr; }
  .svc-cat-body  { padding: 1.2rem; }

  /* Grids */
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-grid          { grid-template-columns: 1fr; }
  .visi-misi-grid    { grid-template-columns: 1fr; }
  .advantages-grid   { grid-template-columns: 1fr; }
  .clients-grid      { grid-template-columns: repeat(3, 1fr); gap: 14px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .g-item--featured { grid-column: span 2; }
  .g-item--featured img { min-height: 260px; }

  /* Lightbox */
  .lightbox-content { width: 95%; }
  .lightbox-nav { position: fixed; width: 40px; height: 40px; font-size: 16px; top: 50%; transform: translateY(-50%); }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }

  /* Contact */
  .contact-grid { gap: 32px; }
  .contact-form { padding: 1.4rem; }
  .contact-map  { height: 280px; }

  /* Forms — prevent iOS zoom */
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
    min-height: 48px;
    padding: 13px 14px;
  }
  .form-group textarea { min-height: 90px; }
  .form-submit button  { min-height: 48px; }

  /* Footer */
  .footer-grid        { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand       { grid-column: span 1; }
  .footer-bottom-inner{ flex-direction: column; text-align: center; gap: 6px; }

  /* Floating WA & Back to Top — smaller on mobile */
  .wa-float    { width: 48px; height: 48px; bottom: 20px; right: 20px; }
  .back-to-top { width: 40px; height: 40px; bottom: 78px; right: 20px; }
}

@media (max-width: 480px) {
  /* Hero */
  .hero-title { font-size: clamp(2.4rem, 12vw, 3.4rem); }
  .hero-cta   { flex-direction: column; gap: 10px; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; gap: 6px; }
  .g-item--featured { grid-column: span 1; }
  .g-item--featured img { min-height: 240px; }

  /* Grids */
  .visi-misi-grid  { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .clients-grid    { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Lightbox nav — minimal on small screens */
  .lightbox-content { width: 100%; border-radius: 0; }
  .lightbox-nav { display: none; }
  .lightbox-close { top: 10px; right: 10px; }

  /* Product */
  .product-card       { padding: 2rem 1.2rem; }
  .product-header h2  { font-size: 1.8rem; }

  /* Form */
  .form-submit { flex-direction: column; }
  .form-submit button { width: 100%; }

  /* FAQ */
  .faq-question { font-size: 0.9rem; padding: 1.2rem; }
  .faq-answer   { padding: 0 1.2rem; }
  .faq-item.open .faq-answer { padding: 0 1.2rem 1.2rem; }
}
