/*
Theme Name: Narwastu Protect
Theme URI: https://narwastuprotect.com
Author: Narwastu Protect
Author URI: https://narwastuprotect.com
Description: Tema profesional untuk perusahaan pembasmian rayap dan hama Narwastu Protect. Simple, minimalis, dan modern dengan warna orange dan biru.
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: narwastu-protect
Tags: business, minimal, orange, blue, pest-control
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --orange:       #F97316;
  --orange-dark:  #EA580C;
  --orange-light: #FED7AA;
  --orange-pale:  #FFF7ED;
  --blue:         #1E3A5F;
  --blue-mid:     #1D4ED8;
  --blue-light:   #DBEAFE;
  --blue-pale:    #EFF6FF;
  --white:        #FFFFFF;
  --gray-50:      #F8FAFC;
  --gray-100:     #F1F5F9;
  --gray-200:     #E2E8F0;
  --gray-400:     #94A3B8;
  --gray-600:     #475569;
  --gray-800:     #1E293B;
  --black:        #0F172A;
  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    32px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.12);
  --transition:   0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   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);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--blue);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(1.75rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.0625rem; }

p {
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 1rem;
}
p:last-child { margin-bottom: 0; }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 48px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .badge {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange-dark);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 14px;
}

.section-header p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
}

.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}

.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
}

.btn-blue:hover {
  background: #16304F;
  border-color: #16304F;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 58, 95, 0.3);
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}

#site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 12px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}

.logo-text .brand {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logo-text .tagline {
  font-size: 0.625rem;
  color: var(--gray-400);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Nav */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-nav ul {
  display: flex;
  gap: 4px;
  align-items: center;
}

.main-nav a {
  padding: 7px 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.current {
  color: var(--orange);
  background: var(--orange-pale);
}

.header-cta {
  flex-shrink: 0;
}

.header-cta .btn {
  padding: 9px 18px;
  font-size: 0.8125rem;
}

/* Mobile hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.menu-toggle:hover {
  background: var(--gray-100);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: var(--transition);
  margin: 0 auto;
}

/* Hamburger animate to X */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav dropdown */
.main-nav.open {
  display: flex !important;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  padding: 8px 0 16px;
  justify-content: flex-start;
}

.main-nav.open ul {
  flex-direction: column;
  gap: 2px;
  width: 100%;
  padding: 0 1.25rem;
}

.main-nav.open ul li a {
  display: block;
  padding: 11px 14px;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  background: linear-gradient(135deg, var(--blue) 0%, #0F2744 60%, #1A3A6E 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 64px;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

#hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(29,78,216,0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(249, 115, 22, 0.2);
  color: var(--orange-light);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(249, 115, 22, 0.3);
  margin-bottom: 20px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.hero-content h1 span {
  color: var(--orange);
}

.hero-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}

.stat-item .number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.stat-item .label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-illustration {
  width: 100%;
  max-width: 400px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  backdrop-filter: blur(10px);
  text-align: center;
}

.hero-illustration .icon-wrap {
  width: 88px;
  height: 88px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 42px;
}

.hero-illustration h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.hero-illustration p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.cert-badges {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cert-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
#trust-bar {
  background: var(--orange-pale);
  border-top: 1px solid var(--orange-light);
  border-bottom: 1px solid var(--orange-light);
  padding: 18px 0;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-dark);
  font-size: 0.875rem;
  font-weight: 600;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  fill: var(--orange);
  flex-shrink: 0;
}

/* ============================================================
   LAYANAN / SERVICES
   ============================================================ */
#layanan {
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--orange-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--orange);
}

.service-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 8px;
  color: var(--blue);
}

.service-card p {
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
}

.service-card .learn-more:hover {
  gap: 10px;
}

/* ============================================================
   MENGAPA KAMI / WHY US
   ============================================================ */
#mengapa-kami {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-content .lead {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 28px;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.why-point {
  display: flex;
  gap: 14px;
}

.why-point-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.why-point h4 {
  font-size: 0.9375rem;
  margin-bottom: 4px;
  color: var(--blue);
}

.why-point p {
  font-size: 0.875rem;
  margin: 0;
}

.why-visual {
  position: relative;
}

.why-image-wrap {
  background: linear-gradient(135deg, var(--blue) 0%, #0D2137 100%);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  color: white;
}

.why-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.why-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
}

.why-stat .n {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--orange);
}

.why-stat .l {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* ============================================================
   PROSES KERJA / HOW IT WORKS
   ============================================================ */
#proses {
  background: var(--blue);
  position: relative;
  overflow: hidden;
}

#proses::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

#proses .section-header .badge {
  background: rgba(249, 115, 22, 0.25);
  color: var(--orange-light);
}

#proses .section-header h2 {
  color: var(--white);
}

#proses .section-header p {
  color: rgba(255,255,255,0.65);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.step-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}

.step-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.step-number {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 16px;
}

.step-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.step-card h3 {
  color: var(--white);
  font-size: 0.9375rem;
  margin-bottom: 8px;
}

.step-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimoni {
  background: var(--gray-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--orange-light);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.stars span {
  color: #F59E0B;
  font-size: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 18px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--blue);
}

.author-location {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
#cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  pointer-events: none;
}

#cta-section .container {
  position: relative;
  z-index: 1;
}

#cta-section h2 {
  color: var(--white);
  margin-bottom: 14px;
}

#cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-actions .btn-white {
  background: var(--white);
  color: var(--orange-dark);
  border: 2px solid var(--white);
  padding: 13px 28px;
}

.cta-actions .btn-white:hover {
  background: var(--orange-pale);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.cta-actions .btn-transparent {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  padding: 13px 28px;
}

.cta-actions .btn-transparent:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* ============================================================
   KONTAK / CONTACT
   ============================================================ */
#kontak {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.375rem;
  margin-bottom: 10px;
}

.contact-info > p {
  margin-bottom: 28px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--orange-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-item-label {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.contact-item-value {
  font-size: 0.9rem;
  color: var(--gray-800);
  font-weight: 500;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
}

.contact-form-wrap h3 {
  font-size: 1.1875rem;
  margin-bottom: 22px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ============================================================
   FOOTER
   ============================================================ */
#colophon {
  background: var(--black);
  color: rgba(255,255,255,0.7);
}

.footer-top {
  padding: 56px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-brand .site-logo {
  margin-bottom: 14px;
}

.footer-brand .site-logo .logo-text .brand {
  color: var(--white);
}

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--orange);
  color: white;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 9px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--orange);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.footer-contact-item span {
  font-size: 15px;
  flex-shrink: 0;
}

.footer-contact-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.8125rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.8125rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--orange);
}

/* ============================================================
   FLOATING WA BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.wa-float a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.wa-float a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

.wa-float svg {
  width: 20px;
  height: 20px;
  fill: white;
  flex-shrink: 0;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  animation: fadeInUp 0.6s ease both;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .section { padding: 64px 0; }

  /* Nav */
  .main-nav a { font-size: 0.8125rem; padding: 7px 10px; }
  .header-cta .btn { padding: 8px 14px; font-size: 0.8rem; }

  /* Hero */
  .hero-grid { gap: 40px; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-visual { max-width: 520px; margin: 0 auto; width: 100%; }

  /* Steps */
  .steps-grid { grid-template-columns: repeat(2, 1fr); }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid .testimonial-card:last-child { grid-column: 1 / -1; max-width: 420px; margin: 0 auto; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ============================================================
   RESPONSIVE — MOBILE LARGE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 52px 0; }
  .section-header { margin-bottom: 36px; }

  /* Header */
  .main-nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }

  /* Hero */
  #hero {
    padding: 56px 0 48px;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero-visual { order: -1; }

  .hero-content p { max-width: 100%; }

  .hero-actions {
    justify-content: center;
  }

  .hero-actions .btn {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
  }

  .hero-stats {
    justify-content: center;
    gap: 20px;
  }

  .hero-illustration {
    max-width: 320px;
    padding: 28px 20px;
  }

  .hero-illustration .icon-wrap {
    width: 72px;
    height: 72px;
    font-size: 36px;
  }

  /* Trust bar */
  .trust-items { gap: 14px; }
  .trust-item { font-size: 0.8125rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 24px 20px; }

  /* Why */
  .why-grid { gap: 32px; }
  .why-image-wrap { padding: 32px 24px; }
  .why-stats-grid { gap: 10px; }
  .why-stat .n { font-size: 1.5rem; }

  /* Steps */
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .step-card { padding: 22px 16px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:last-child { grid-column: auto; max-width: none; }

  /* CTA */
  #cta-section { padding: 52px 0; }
  .cta-actions { gap: 10px; }
  .cta-actions .btn-white,
  .cta-actions .btn-transparent {
    width: 100%;
    max-width: 280px;
  }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Footer */
  .footer-top { padding: 40px 0 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  /* WA float — teks disembunyikan di mobile kecil */
  .wa-float { bottom: 16px; right: 16px; }
}

/* ============================================================
   RESPONSIVE — MOBILE SMALL (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .section { padding: 44px 0; }

  /* Header */
  .header-inner { height: 60px; }
  .logo-text .brand { font-size: 0.9375rem; }
  .logo-text .tagline { display: none; }
  .main-nav.open { top: 60px; }

  /* Hero */
  #hero { padding: 44px 0 36px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; }
  .hero-stats { flex-direction: column; align-items: center; gap: 14px; }
  .cert-badges { gap: 6px; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; }

  /* Services */
  .service-card { padding: 20px 16px; }

  /* Why */
  .why-stats-grid { grid-template-columns: 1fr 1fr; }

  /* CTA */
  .cta-actions .btn-white,
  .cta-actions .btn-transparent { max-width: 100%; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-links { flex-direction: column; gap: 8px; }

  /* WA float — icon only */
  .wa-float a span { display: none; }
  .wa-float a {
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }
}

/* ============================================================
   WORDPRESS DEFAULT STYLES
   ============================================================ */
.wp-block-image { margin: 1.5rem 0; }
.wp-block-quote { border-left: 4px solid var(--orange); padding-left: 20px; }

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

.alignleft  { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { margin-left: auto; margin-right: auto; text-align: center; }