/* ====================================================
   PITSTOP MOTOR — style.css  (FIXED + ENHANCED)
   Bengkel Motor Profesional
==================================================== */

/* ================================================
   1. CSS VARIABLES & RESET
================================================ */
:root {
  --primary:      #f97316;
  --primary-deep: #c2410c;
  --primary-glow: rgba(249, 115, 22, 0.22);
  --primary-soft: rgba(249, 115, 22, 0.08);
  --green:        #25D366;
  --green-deep:   #128C7E;
  --yellow:       #fbbf24;
  --dark:         #080808;
  --dark2:        #0d0d0d;
  --dark3:        #141414;
  --dark4:        #1c1c1c;
  --dark5:        #222222;
  --gray:         #2d2d2d;
  --steel:        #3a3a3a;
  --text:         #e2e2e5;
  --text-muted:   #6b6b72;
  --white:        #ffffff;

  --font-display: 'Russo One', sans-serif;
  --font-heading: 'Rajdhani', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --section-pad: 108px;
  --radius:      10px;
  --radius-lg:   18px;
  --radius-xl:   24px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  width: 100%;
  line-height: 1.65;
  padding-top: 72px;
  -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ================================================
   2. SCROLLBAR
================================================ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

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

/* ================================================
   4. 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.3;
}

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

.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(--primary);
  margin-bottom: 14px;
}

.label-tag::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--primary);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.5px;
}

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

.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ================================================
   6. BUTTONS
================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  background: linear-gradient(135deg, var(--primary), var(--primary-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 6px 20px var(--primary-glow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.22s;
}
.btn-primary:hover  { transform: translateY(-2px); box-shadow: 0 12px 28px var(--primary-glow); }
.btn-primary:hover::after { opacity: 1; }
.btn-primary:active { transform: scale(0.97); }
.btn-lg { padding: 16px 32px; font-size: 16px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border: 1.5px solid rgba(255,255,255,0.18);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  border-radius: var(--radius);
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-soft); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.1);
  transition: all 0.22s;
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); }

/* ================================================
   7. REVEAL ANIMATION SYSTEM — FIXED
   ================================================
   BUG FIX:
   1. Hapus override opacity:1 !important di mobile
      yang mencegah animasi berjalan sama sekali.
   2. Pindahkan transition ke .reveal-item langsung
      (bukan hanya di .revealed) agar delay bekerja.
   3. Gunakan will-change untuk GPU acceleration.
   4. Observer dijalankan SETELAH preloader selesai.
================================================ */
.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.reveal-item.reveal-delay   { transition-delay: 0.12s; }
.reveal-item.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-item.reveal-delay-3 { transition-delay: 0.36s; }

/* FIX: Jangan sembunyikan di mobile — tetap animasi tapi lebih cepat */
@media (max-width: 640px) {
  .reveal-item {
    /* Tetap tersembunyi agar animasi bisa berjalan, tapi lebih singkat */
    transition: opacity 0.45s ease, transform 0.45s ease;
  }
  .reveal-item.reveal-delay,
  .reveal-item.reveal-delay-2,
  .reveal-item.reveal-delay-3 {
    transition-delay: 0s; /* Hapus delay di mobile untuk responsivitas */
  }
}

/* ================================================
   8. PRELOADER
================================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.done { opacity: 0; visibility: hidden; }

.preloader-inner { text-align: center; }

.preloader-logo {
  font-size: 52px;
  margin-bottom: 24px;
  animation: spin 1s linear infinite;
  display: inline-block;
}

@keyframes spin { to { transform: rotate(360deg); } }

.preloader-bar {
  width: 220px;
  height: 3px;
  background: var(--dark4);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto 16px;
}
.preloader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--yellow));
  border-radius: 10px;
  animation: fillBar 1.4s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes fillBar { from { width: 0; } to { width: 100%; } }

.preloader-text {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--primary);
  letter-spacing: 3px;
}

/* ================================================
   9. NAVBAR
================================================ */
.navbar {
  position: fixed;
  top: 0; width: 100%;
  z-index: 9000;
  transition: all 0.3s ease;
  padding: 16px 0;
}
.navbar.scrolled {
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 10px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

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

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

.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px var(--primary-glow);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  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: 10px; flex-shrink: 0; }

/* ================================================
   10. HAMBURGER & MOBILE MENU
================================================ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0;
  width: 100%;
  max-width: 100vw;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 24px;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 8999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--text);
  display: block;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--primary); }
.mobile-wa-btn {
  margin-top: 8px;
  justify-content: center;
  border-bottom: none !important;
  border-radius: var(--radius) !important;
}

/* ================================================
   11. HERO SECTION
================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  min-height: 100svh;
  min-height: calc(var(--vh, 1vh) * 100);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 0;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  transform: scale(1.04);
  animation: none;
}
.hero-slide.active {
  opacity: 1;
  animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,  rgba(8,8,8,0.72) 0%, transparent 45%),
    linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.32) 65%);
}

/* Extra color accent di hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 200px;
  background: linear-gradient(to top, var(--dark), transparent);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  width: 100%;
}

.hero-eyebrow { margin-bottom: 20px; }

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.4);
  color: var(--primary);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6.5vw, 84px);
  font-weight: 400;
  line-height: 0.95;
  margin-bottom: 24px;
  color: var(--white);
}
.hero h1 em { font-style: normal; color: var(--primary); }
.hero h1 .outline-text {
  -webkit-text-stroke: 2px rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.68);
}

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.75;
}
.hero-desc strong { color: var(--white); }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  row-gap: 16px;
}
.hero-stat { padding: 0 24px; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat-divider {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-num span { font-size: 22px; }
.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Right Card */
.hero-card {
  background: rgba(12,12,12,0.88);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-xl);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
}
.hero-open-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #6ee7b7;
  font-weight: 500;
}
.open-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 4px #22c55e; transform: scale(1); }
  50%       { box-shadow: 0 0 14px #22c55e; transform: scale(1.18); }
}
.hero-card-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
}
.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 13px;
  background: var(--dark4);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  transition: all 0.22s;
  cursor: default;
}
.chip:hover { background: var(--primary-soft); border-color: var(--primary); color: var(--primary); transform: translateY(-1px); }

/* Hero Dots */
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 100px;
  background: rgba(255,255,255,0.22);
  cursor: pointer;
  transition: all 0.35s;
  border: none;
}
.hero-dot.active { background: var(--primary); width: 28px; }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 28px; right: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0.45;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 6px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollAnim 2s infinite;
}
@keyframes scrollAnim {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}
.scroll-indicator span {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ================================================
   12. BRAND 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;
  max-width: 100vw;
}
.brand-track {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (hover: hover) {
  .brand-strip:hover .brand-track { animation-play-state: paused; }
}
.brand-item {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  transition: color 0.25s;
  cursor: default;
}
.brand-item:hover { color: var(--primary); }
.dot { color: var(--primary); opacity: 0.35; }

/* ================================================
   13. STATS SECTION
================================================ */
.stats-section { padding: 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-block {
  background: var(--dark3);
  padding: 52px 36px;
  border-right: 1px solid rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
}
.stat-block:last-child { border-right: none; }
.stat-block::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.stat-block:hover { background: var(--dark4); }
.stat-block:hover::before { opacity: 1; }

.stat-icon { font-size: 30px; margin-bottom: 18px; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 64px);
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat-suffix { font-size: 0.5em; opacity: 0.7; }
.stat-label {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.stat-desc { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

/* ================================================
   14. SERVICES SECTION
================================================ */
.services { padding: var(--section-pad) 0; }
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 52px;
}
.services-header-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
.services-header-right p { color: var(--text-muted); font-size: 15px; line-height: 1.7; max-width: 340px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.service-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.30s ease, box-shadow 0.30s ease, border-color 0.30s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.45), 0 0 0 1px rgba(249,115,22,0.15);
  border-color: rgba(249,115,22,0.28);
}
.service-card--featured {
  border-color: rgba(249,115,22,0.3);
  background: linear-gradient(160deg, rgba(249,115,22,0.08), var(--dark3));
}

.service-icon-wrap { position: relative; height: 190px; overflow: hidden; }
.service-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.service-card:hover .service-img { transform: scale(1.08); }

.service-icon-badge {
  position: absolute;
  top: 14px; right: 14px;
  width: 40px; height: 40px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 1px solid rgba(255,255,255,0.08);
}

.service-body { padding: 24px; }
.service-body h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.service-body p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.service-tags span {
  font-size: 11px;
  padding: 3px 10px;
  background: var(--dark5);
  border-radius: 100px;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.06);
}
.service-cta { font-size: 13px; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 4px; transition: gap 0.22s; }
.service-cta:hover { gap: 10px; }

/* ================================================
   15. ABOUT SECTION
================================================ */
.about { padding: var(--section-pad) 0; background: var(--dark2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.about-img-col { position: relative; }
.about-img-main { position: relative; border-radius: var(--radius-xl); overflow: hidden; }
.about-img-main img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-xl); }

.about-img-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 28px rgba(249,115,22,0.35);
}
.badge-num { font-family: var(--font-display); font-size: 36px; color: var(--white); line-height: 1; }
.badge-text { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); line-height: 1.3; }

.about-img-sub {
  position: absolute;
  bottom: -32px; right: -32px;
  width: 180px; height: 160px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--dark2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.about-img-sub img { width: 100%; height: 100%; object-fit: cover; }

.about-text-col { padding-bottom: 32px; }
.about-lead { font-size: 17px; color: var(--text); line-height: 1.7; margin: 20px 0 14px; }
.about-body { font-size: 14.5px; color: var(--text-muted); line-height: 1.75; margin-bottom: 32px; }

.about-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.about-feat { display: flex; gap: 14px; align-items: flex-start; }
.feat-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.feat-title { font-weight: 600; font-size: 15px; margin-bottom: 3px; }
.feat-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

.about-certs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.cert-item {
  padding: 6px 14px;
  background: var(--dark4);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

/* ================================================
   16. PROCESS SECTION
================================================ */
.process { padding: var(--section-pad) 0; }
.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 60px;
}
.process-step { text-align: center; padding: 0 16px; }
.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  color: rgba(249,115,22,0.1);
  line-height: 1;
  margin-bottom: -10px;
}
.step-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.process-step h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.process-step p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }
.process-connector {
  display: flex;
  align-items: center;
  padding-top: 58px;
  color: var(--primary);
  font-size: 20px;
  opacity: 0.4;
}
.process-connector::before { content: '→'; }

/* ================================================
   17. GALLERY SECTION
================================================ */
.gallery { padding: var(--section-pad) 0; background: var(--dark2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
}
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius-lg); cursor: pointer; }
.gallery-item--large { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.gallery-item--large img { min-height: 420px; }
.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.32s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
}

/* ================================================
   18. PACKAGES SECTION — ENHANCED
================================================ */
.packages { padding: var(--section-pad) 0; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.package-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  transition: transform 0.30s, box-shadow 0.30s;
}
.package-card:hover { transform: translateY(-6px); box-shadow: 0 24px 52px rgba(0,0,0,0.35); }

.package-card--featured {
  border-color: var(--primary);
  background: linear-gradient(160deg, rgba(249,115,22,0.10), var(--dark3));
}
.package-card--featured:hover { box-shadow: 0 24px 64px rgba(249,115,22,0.22); }

.pkg-badge {
  position: absolute;
  top: -12px; left: 24px;
  background: var(--dark4);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.pkg-badge--best { background: var(--primary); border-color: var(--primary); color: white; }
.pkg-badge--pro  { background: #7c3aed; border-color: #7c3aed; color: white; }

.pkg-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.package-card h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; letter-spacing: 0.5px; }
.pkg-price { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.pkg-price strong { font-size: 20px; color: var(--primary); font-family: var(--font-heading); }
.pkg-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pkg-list li { font-size: 14px; color: var(--text-muted); line-height: 1.4; }
.packages-note { text-align: center; margin-top: 32px; font-size: 14px; color: var(--text-muted); }
.packages-note a { color: var(--primary); font-weight: 600; }

/* ================================================
   19. TESTIMONIALS SECTION
================================================ */
.testi { padding: var(--section-pad) 0; background: var(--dark2); }

.testi-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: 28px;
  height: 100%;
  transition: border-color 0.3s;
}
.swiper-slide-active .testi-card { border-color: rgba(249,115,22,0.3); }
.testi-stars { font-size: 15px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 14px; }
.testi-meta { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

.swiper-pagination-bullet { background: var(--text-muted); opacity: 1; width: 8px; height: 8px; }
.swiper-pagination-bullet-active { background: var(--primary); width: 24px; border-radius: 100px; }

/* Rating Summary */
.rating-summary {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: center;
  margin-top: 52px;
  padding: 32px;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  flex-wrap: wrap;
}
.rating-big { font-family: var(--font-display); font-size: 64px; color: var(--primary); line-height: 1; }
.rating-detail { display: flex; flex-direction: column; gap: 6px; }
.rating-stars { font-size: 18px; letter-spacing: 2px; }
.rating-count { font-size: 14px; color: var(--text-muted); }
.rating-platforms { display: flex; gap: 14px; flex-wrap: wrap; }
.rating-platforms span {
  font-size: 12px;
  color: var(--text-muted);
  padding: 4px 12px;
  background: var(--dark4);
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.06);
}

/* ================================================
   20. FAQ SECTION
================================================ */
.faq { padding: var(--section-pad) 0; }
.faq-grid { display: grid; grid-template-columns: 360px 1fr; gap: 80px; align-items: start; }
.faq-left p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-top: 16px; }
.faq-items { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(249,115,22,0.28); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  gap: 12px;
  transition: background 0.2s;
  user-select: none;
}
.faq-q:hover { background: var(--dark4); }
.faq-item.open .faq-q { color: var(--primary); }
.faq-arrow {
  width: 26px; height: 26px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: all 0.35s;
}
.faq-item.open .faq-arrow { background: var(--primary); transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 220px; }
.faq-a-inner {
  padding: 16px 20px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* ================================================
   21. CTA / CONTACT SECTION
================================================ */
.cta-section { padding: var(--section-pad) 0; background: var(--dark2); }
.cta-inner {
  background: linear-gradient(135deg, rgba(249,115,22,0.11), rgba(194,65,12,0.06));
  border: 1px solid rgba(249,115,22,0.22);
  border-radius: var(--radius-xl);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(249,115,22,0.14), transparent 70%);
  pointer-events: none;
}
.cta-left { max-width: 540px; }
.cta-left > p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-top: 16px; }

.contact-info { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon {
  width: 40px; height: 40px;
  background: var(--primary-soft);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 3px; }
.contact-val { font-size: 15px; font-weight: 500; color: var(--text); }

.cta-right { display: flex; flex-direction: column; gap: 14px; align-items: center; flex-shrink: 0; }

.cta-wa-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  border-radius: var(--radius-lg);
  color: white;
  transition: transform 0.22s, box-shadow 0.22s;
  box-shadow: 0 8px 28px rgba(37,211,102,0.25);
  white-space: nowrap;
  min-width: 240px;
}
.cta-wa-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(37,211,102,0.38); }
.cta-wa-icon { font-size: 28px; }
.cta-wa-text { display: flex; flex-direction: column; }
.cta-wa-text span { font-weight: 700; font-size: 16px; }
.cta-wa-text small { font-size: 12px; opacity: 0.8; }

.cta-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 500;
  transition: all 0.22s;
  min-width: 240px;
  white-space: nowrap;
}
.cta-call-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-soft); }

.cta-trust { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.cta-trust span { font-size: 12px; color: var(--text-muted); }

/* ================================================
   22. FOOTER
================================================ */
.footer { background: var(--dark2); border-top: 1px solid rgba(255,255,255,0.05); 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(--text-muted); margin-top: 16px; line-height: 1.75; max-width: 260px; }
.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  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(--text-muted); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary); }

.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.22s;
}
.social-btn:hover { background: var(--primary-soft); border-color: var(--primary); transform: translateY(-2px); }

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

/* ================================================
   23. STICKY WHATSAPP BUTTON
================================================ */
.sticky-wa {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 8500;
  width: calc(100% - 48px);
  max-width: 440px;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: white;
  padding: 14px 22px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  box-shadow: 0 8px 36px rgba(37,211,102,0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.25s;
}
.sticky-wa.visible { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.sticky-wa:hover { transform: translateX(-50%) translateY(-3px); box-shadow: 0 16px 44px rgba(37,211,102,0.42); }

.sticky-wa-pulse {
  position: absolute;
  top: -4px; right: -4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #22c55e;
  animation: waPulse 2s infinite;
}
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* ================================================
   24. RESPONSIVE — TABLET (≤1024px)
================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .hero-content          { grid-template-columns: 1fr; }
  .hero-card             { display: none; }
  .hero h1               { font-size: clamp(46px, 8vw, 72px); }
  .stats-grid            { grid-template-columns: repeat(2, 1fr); }
  .services-header       { grid-template-columns: 1fr; }
  .services-header-right { text-align: left; align-items: flex-start; }
  .services-grid         { grid-template-columns: repeat(2, 1fr); }
  .about-grid            { grid-template-columns: 1fr; gap: 48px; }
  .about-img-sub         { display: none; }
  .about-img-main img    { height: 380px; }
  .process-steps         { grid-template-columns: 1fr; gap: 28px; }
  .process-connector     { display: none; }
  .gallery-grid          { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item--large   { grid-column: span 2; grid-row: span 1; }
  .gallery-item--large img { min-height: 300px; }
  .packages-grid         { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .faq-grid              { grid-template-columns: 1fr; gap: 48px; }
  .cta-inner             { grid-template-columns: 1fr; padding: 48px; }
  .cta-right             { align-items: flex-start; }
  .footer-top            { grid-template-columns: 1fr 1fr; gap: 36px; }
}

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

  .nav-links,
  .nav-cta .btn-outline { display: none; }
  .hamburger            { display: flex; }
  .nav-cta .btn-primary { padding: 9px 14px; font-size: 13px; white-space: nowrap; }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    min-height: calc(var(--vh, 1vh) * 100);
    padding: 60px 0 100px;
    align-items: flex-start;
    padding-top: 80px;
  }
  .hero-content { grid-template-columns: 1fr; padding-top: 0; padding-bottom: 60px; }
  .hero h1 { font-size: clamp(38px, 11vw, 56px); }
  .hero-desc { font-size: 15px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn-lg,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .hero-stats { gap: 0; justify-content: flex-start; }
  .hero-stat { padding: 0 16px; }
  .hero-stat:first-child { padding-left: 0; }
  .hero-stat-num { font-size: 26px; }
  .hero-stat-label { font-size: 10px; }
  .scroll-indicator { display: none; }

  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .stat-block  { padding: 32px 20px; }

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

  .about-features { gap: 16px; }
  .about-img-main img { height: 280px; }
  .about-img-badge { padding: 12px 16px; }
  .badge-num { font-size: 28px; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--large { grid-column: span 1; }
  .gallery-item img,
  .gallery-item--large img { min-height: 220px; }

  .packages-grid { grid-template-columns: 1fr; max-width: 100%; }

  .cta-inner { padding: 32px 20px; grid-template-columns: 1fr; gap: 32px; }
  .cta-wa-btn, .cta-call-btn { min-width: unset; width: 100%; }

  .footer-top    { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-brand p { max-width: 100%; }

  .sticky-wa { font-size: 13px; padding: 13px 16px; white-space: nowrap; width: calc(100% - 32px); bottom: 16px; }

  .faq-grid { grid-template-columns: 1fr; gap: 36px; }
  .rating-summary { flex-direction: column; text-align: center; gap: 16px; }
  .rating-platforms { justify-content: center; }
}

/* ================================================
   26. RESPONSIVE — SMALL MOBILE (≤400px)
================================================ */
@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 36px; }
  .hero-stat-divider { display: none; }
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .hero-stat { padding: 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-num   { font-size: 36px; }
  .section-title { font-size: 30px; }
  .cta-inner { padding: 24px 16px; }
  .sticky-wa { font-size: 12px; padding: 12px 14px; width: calc(100% - 24px); }
}