/* ===========================
   CSS VARIABLES & RESET
=========================== */
:root {
  --orange: #f97316;
  --orange-deep: #c2410c;
  --orange-glow: rgba(249,115,22,0.25);
  --dark: #080808;
  --dark2: #111111;
  --dark3: #1a1a1a;
  --dark4: #222222;
  --gray: #2e2e2e;
  --steel: #3f3f46;
  --text: #e4e4e7;
  --muted: #71717a;
  --white: #ffffff;
  --yellow: #fbbf24;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* FIX: cegah horizontal overflow di level html */
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  padding-top: 72px;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===========================
   SCROLLBAR
=========================== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 10px; }

/* ===========================
   SCROLL PROGRESS BAR
=========================== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ===========================
   GRAIN OVERLAY
=========================== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  opacity: 0.4;
}

/* ===========================
   CONTAINER
=========================== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   UTILITY — LABEL TAG
=========================== */
.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.label-tag::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--orange);
}

/* ===========================
   UTILITY — SECTION TITLE
=========================== */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.5px;
}

.highlight-orange {
  color: var(--orange);
}

/* ===========================
   BUTTONS
=========================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px var(--orange-glow);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.1));
  opacity: 0;
  transition: opacity 0.25s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px var(--orange-glow);
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-primary:active {
  transform: scale(0.97);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  border-radius: var(--radius);
  transition: all 0.25s ease;
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-glow);
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 16px 0;
}

.navbar.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 10px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1;
}

.logo-text span {
  display: block;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 2px;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.25s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ===========================
   HAMBURGER & MOBILE MENU
=========================== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(20px);
  padding: 24px;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid var(--gray);
  z-index: 999;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray);
  color: var(--text);
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 100vh;               /* fallback browser lama */
  min-height: 100svh;              /* fallback svh */
  min-height: calc(var(--vh, 1vh) * 100); /* FIX UTAMA: pakai JS-injected --vh */
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8,8,8,0.92) 0%,
    rgba(8,8,8,0.75) 50%,
    rgba(8,8,8,0.3) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.3);
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
  -webkit-text-stroke: 0px;
}

.hero h1 .outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}

.hero-desc {
  font-size: 16px;
  color: #a1a1aa;
  max-width: 460px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-num span {
  color: var(--orange);
}

.hero-stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* HERO RIGHT CARD */
.hero-card {
  background: rgba(17,17,17,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.hero-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.chip {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 7px 13px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
  cursor: default;
}

.chip:hover {
  background: var(--orange-glow);
  border-color: var(--orange);
  color: var(--orange);
}

.hero-open-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 20px;
}

.open-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 10px #22c55e;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 6px #22c55e; }
  50%       { box-shadow: 0 0 14px #22c55e; }
}

.open-text {
  font-size: 13px;
  font-weight: 500;
  color: #4ade80;
}

.hero-card .btn-primary {
  width: 100%;
  justify-content: center;
}

/* HERO SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}

.scroll-indicator span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* HERO NAVIGATION DOTS */
.hero-nav-dots {
  position: absolute;
  bottom: 80px;
  right: 32px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-dot {
  width: 4px;
  height: 20px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.hero-dot.active {
  background: var(--orange);
  height: 36px;
}

/* ===========================
   BRAND STRIP / MARQUEE
=========================== */
.brand-strip {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
  overflow: hidden;
}

.brand-track {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brand-item {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--steel);
  text-transform: uppercase;
  flex-shrink: 0;
  transition: color 0.3s;
}

.brand-item:hover {
  color: var(--orange);
}

.brand-dot {
  color: var(--orange);
  font-size: 10px;
}

/* ===========================
   STATS SECTION
=========================== */
.stats-section {
  padding: 80px 0;
  background: var(--dark2);
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(249,115,22,0.04), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}

.stat-block {
  padding: 40px 32px;
  background: var(--dark3);
  text-align: center;
  position: relative;
  transition: background 0.3s;
}

.stat-block:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.stat-block:last-child  { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }

.stat-block:hover {
  background: var(--dark4);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--white), #a1a1aa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-num .plus {
  color: var(--orange);
  -webkit-text-fill-color: var(--orange);
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 500;
}

.stat-icon {
  font-size: 24px;
  margin-bottom: 12px;
}

/* ===========================
   SERVICES
=========================== */
.services {
  padding: 120px 0;
  position: relative;
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}

.services-header-right {
  text-align: right;
}

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

.service-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.35s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  border-color: rgba(249,115,22,0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(249,115,22,0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(249,115,22,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  transition: background 0.3s;
}

.service-card:hover .service-icon-wrap {
  background: rgba(249,115,22,0.18);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card-link {
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Featured (orange) service card */
.service-card.featured {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  border: none;
}

.service-card.featured h3              { color: #fff; }
.service-card.featured p               { color: rgba(255,255,255,0.75); }
.service-card.featured .service-icon-wrap { background: rgba(255,255,255,0.15); }
.service-card.featured .service-card-link { color: rgba(255,255,255,0.85); }

.service-card.featured:hover {
  box-shadow: 0 20px 60px rgba(249,115,22,0.35);
}

/* ===========================
   ABOUT
=========================== */
.about {
  padding: 120px 0;
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,0.06), transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-img-inset {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 4px solid var(--dark2);
}

.about-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
}

.about-badge-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.about-badge-text {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
}

.about-feature-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 13px;
  color: var(--muted);
}

.about-text > p {
  font-size: 15px;
  color: #a1a1aa;
  line-height: 1.75;
  margin-bottom: 20px;
}

.cert-row {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.06);
}

/* ===========================
   PROCESS
=========================== */
.process {
  padding: 120px 0;
}

.process-header {
  text-align: center;
  margin-bottom: 64px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.4;
}

.process-step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.step-num-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  position: relative;
}

.step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(249,115,22,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--orange);
  background: rgba(249,115,22,0.06);
  transition: all 0.3s;
}

.process-step:hover .step-num {
  background: rgba(249,115,22,0.15);
  border-color: var(--orange);
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===========================
   GALLERY
=========================== */
.gallery {
  padding: 40px 0 120px;
}

.gallery-header {
  text-align: center;
  margin-bottom: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}

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

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

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials {
  padding: 120px 0;
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}

.testi-header {
  text-align: center;
  margin-bottom: 64px;
}

.testi-stars {
  color: var(--yellow);
  font-size: 26px;
  margin-bottom: 12px;
}

.testi-meta {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}

.testi-meta strong {
  color: var(--white);
}

/* Swiper override */
.swiper.testiSwiper {
  overflow: visible;
  padding-bottom: 48px;
}

.swiper-slide {
  opacity: 0.35;
  transform: scale(0.85);
  transition: all 0.5s ease;
  filter: blur(1px);
}

.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  filter: none;
}

.testi-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 24px;
  font-family: Georgia, serif;
  font-size: 80px;
  color: rgba(249,115,22,0.1);
  line-height: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
}

.testi-name  { font-weight: 600; font-size: 15px; }
.testi-date  { font-size: 12px; color: var(--muted); margin-top: 2px; }
.testi-gold  { color: var(--yellow); font-size: 14px; margin-bottom: 12px; }
.testi-text  { font-size: 14px; color: #a1a1aa; line-height: 1.7; }

.testi-service-tag {
  display: inline-block;
  margin-top: 16px;
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.2);
  color: var(--orange);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}

.swiper-pagination-bullet {
  width: 32px;
  height: 4px;
  border-radius: 4px;
  background: var(--steel);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--orange);
}

/* ===========================
   PACKAGES
=========================== */
.packages {
  padding: 120px 0;
}

.packages-header {
  text-align: center;
  margin-bottom: 64px;
}

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

.pkg-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: all 0.3s;
}

.pkg-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249,115,22,0.2);
}

.pkg-card.popular {
  background: linear-gradient(160deg, #1c1208, var(--dark2));
  border-color: rgba(249,115,22,0.3);
  box-shadow: 0 0 40px rgba(249,115,22,0.08);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pkg-name {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pkg-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

.pkg-desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.pkg-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 24px;
}

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

.pkg-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}

.pkg-list li .ck {
  color: var(--orange);
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 1px;
}

.pkg-list li.off {
  opacity: 0.35;
  text-decoration: line-through;
}

.pkg-list li.off .ck {
  color: var(--muted);
}

/* ===========================
   FAQ
=========================== */
.faq {
  padding: 120px 0;
  background: var(--dark2);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

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

.faq-item {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: rgba(249,115,22,0.25);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  background: var(--dark3);
  font-weight: 600;
  font-size: 15px;
  gap: 12px;
  transition: background 0.3s;
}

.faq-q:hover {
  background: var(--dark4);
}

.faq-item.open .faq-q {
  background: var(--dark4);
  color: var(--orange);
}

.faq-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.3s;
}

.faq-item.open .faq-arrow {
  background: var(--orange);
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-a {
  max-height: 200px;
}

.faq-a-inner {
  padding: 16px 20px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* ===========================
   CONTACT / CTA
=========================== */
.contact-cta {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.contact-cta-inner {
  background: linear-gradient(135deg, rgba(249,115,22,0.12), rgba(194,65,12,0.08));
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 24px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.contact-cta-inner::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(249,115,22,0.12), transparent 70%);
  pointer-events: none;
}

.cta-sub {
  font-size: 15px;
  color: #a1a1aa;
  margin-top: 12px;
  max-width: 500px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.contact-info-row {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(249,115,22,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--orange);
}

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

.social-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
}

.social-btn:hover {
  background: var(--orange-glow);
  border-color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}

/* ===========================
   STICKY WHATSAPP BUTTON
=========================== */
.sticky-wa {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  width: calc(100% - 48px);
  max-width: 480px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  padding: 14px 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.3);
  transition: all 0.25s ease;
}

.sticky-wa:hover {
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 14px 40px rgba(37,211,102,0.4);
}

/* ===========================
   RESPONSIVE — TABLET (≤1024px)
=========================== */
@media (max-width: 1024px) {
  .hero-content              { grid-template-columns: 1fr; }
  .hero-card                 { display: none; }

  .stats-grid                { grid-template-columns: repeat(2, 1fr); }
  .stat-block:first-child    { border-radius: var(--radius-lg) 0 0 0; }
  .stat-block:last-child     { border-radius: 0 0 var(--radius-lg) 0; }
  .stat-block:nth-child(2)   { border-radius: 0 var(--radius-lg) 0 0; }
  .stat-block:nth-child(3)   { border-radius: 0 0 0 var(--radius-lg); }

  .services-grid             { grid-template-columns: repeat(2, 1fr); }
  .services-header           { grid-template-columns: 1fr; }
  .services-header-right     { text-align: left; }

  .about-grid                { grid-template-columns: 1fr; }
  .about-img-inset           { display: none; }

  .process-steps             { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before     { display: none; }

  .gallery-grid              { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:first-child  { grid-column: span 2; height: 260px; }
  .gallery-item              { height: 200px; }

  .packages-grid             { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .faq-grid                  { grid-template-columns: 1fr; gap: 48px; }

  .footer-top                { grid-template-columns: 1fr 1fr; }

  .contact-cta-inner         { grid-template-columns: 1fr; }
  .cta-actions               { align-items: flex-start; }
}

/* ===========================
   RESPONSIVE — MOBILE (≤768px)
=========================== */
@media (max-width: 768px) {
  body { padding-top: 64px; }

  /* Navbar */
  .nav-links,
  .nav-cta .btn-outline { display: none; }
  .hamburger            { display: flex; }

  /* Fix: navbar "Hubungi Kami" button agar tidak wrap di mobile */
  .nav-cta .btn-primary {
    padding: 10px 14px;
    font-size: 13px;
    white-space: nowrap;
  }

  /* Fix: sticky WA button agar tidak wrap teks di mobile */
  .sticky-wa {
    font-size: 13px;
    padding: 13px 16px;
    white-space: nowrap;
    width: calc(100% - 32px);
  }

  /* FIX PADDING: kurangi padding section dari 120px → 60px di mobile */
  .services        { padding: 60px 0; }
  .about           { padding: 60px 0; }
  .process         { padding: 60px 0; }
  .gallery         { padding: 60px 0; }
  .testi           { padding: 60px 0; }
  .packages        { padding: 60px 0; }
  .faq             { padding: 60px 0; }
  .contact-cta     { padding: 60px 0; }

  /* Hero */
  .hero               { padding: 60px 0 80px; }
  .hero h1            { font-size: 52px; }
  .hero-stats         { gap: 24px; flex-wrap: wrap; }
  .hero-stat-num      { font-size: 28px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-num   { font-size: 44px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* About */
  .about-features { grid-template-columns: 1fr; }

  /* Process */
  .process-steps { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid             { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; height: 240px; }
  .gallery-item             { height: 200px; }

  /* Footer */
  .footer-top    { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Contact CTA */
  .contact-cta-inner   { padding: 32px 24px; }
  .contact-info-row    { flex-direction: column; gap: 12px; }

  /* Misc */
  .cert-row { flex-wrap: wrap; }
}