/* =====================================================
   World King Pest Control – Premium CSS Design System v2
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800;900&display=swap');

:root {
  --green-950: #061510;
  --green-900: #0d2918;
  --green-800: #1a4731;
  --green-700: #1f5939;
  --green-600: #256b44;
  --green-500: #2a7d4f;
  --green-400: #3a9d64;
  --green-300: #6abf8b;
  --green-100: #d4edda;
  --green-50:  #edf7f0;

  --orange:    #f5a623;
  --orange-dark: #e08a00;
  --orange-light: #ffd166;
  --orange-pale: rgba(245,166,35,0.12);

  --dark:      #0f1a14;
  --gray-900:  #111827;
  --gray-800:  #1c2b22;
  --gray-700:  #2d3e34;
  --gray-500:  #5a6e62;
  --gray-400:  #8fa395;
  --gray-300:  #b0bdb5;
  --gray-100:  #f1f5f2;
  --gray-50:   #f8faf9;
  --white:     #ffffff;

  --font-body: 'Inter', sans-serif;
  --font-head: 'Poppins', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 100px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --cubic: cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.16);
  
  --max-width: 1220px;
}

/* ── BASE STYLES ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
* { box-sizing: border-box; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }





/* ── Utilities ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; overflow: hidden; }
.section-sm { padding: 56px 0; overflow: hidden; }
.text-center { text-align: center; }

/* ── LAYOUT GRIDS ── */
.service-detail-grid, .contact-page-grid {
  display: grid;
  gap: 48px;
  align-items: start;
}
.service-detail-grid { grid-template-columns: 1.2fr 1fr; }
.contact-page-grid { grid-template-columns: 1fr 1.4fr; }

@media (max-width: 768px) {
  .service-detail-grid, .contact-page-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
}

.text-green { color: var(--green-600); }
.text-orange { color: var(--orange); }
.fw-800 { font-weight: 800; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}
.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #f0b32a);
  color: var(--dark);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(245,166,35,0.5);
}

.btn-secondary {
  background: var(--white);
  color: var(--green-800);
  border: 2px solid var(--green-800);
}
.btn-secondary:hover {
  background: var(--green-800);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-green {
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  color: var(--white);
  box-shadow: var(--shadow-green);
}
.btn-green:hover {
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(26,71,49,0.4);
}

.btn-outline-white {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--green-800);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 40px; font-size: 1.1rem; border-radius: var(--radius-md); }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

/* ── Section Headings ── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-pale);
  border: 1px solid rgba(245,166,35,0.25);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--green-900);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.08rem;
  color: var(--gray-500);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── NAVIGATION ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,41,24,0.92);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: var(--transition);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
#navbar.scrolled {
  background: rgba(13,41,24,0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.3s;
}
.nav-logo:hover { transform: scale(1.02); }
.nav-logo img {
  height: 46px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}
.nav-logo-icon { display: none; }
.nav-logo-text { line-height: 1.2; }
.nav-logo-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  display: block;
}
.nav-logo-tag {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 0.68rem;
  opacity: 0.7;
}
.dropdown-menu {
  position: absolute;
  top: 90%; /* Slight overlap to prevent hover gaps */
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,0.2), 0 0 0 1px rgba(0,0,0,0.06);
  min-width: 240px;
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.98);
  transform-origin: top center;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
}
/* Extended hover bridge to prevent edge-case hover loss */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 50%; left: -20px; width: calc(100% + 40px); height: 100%;
  background: transparent;
  z-index: 90;
  display: none;
}
.nav-dropdown:hover::before { display: block; }
@media (min-width: 1025px) {
  .dropdown-menu {
    min-width: 520px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    padding: 20px;
  }
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: scale(1);
}
.dropdown-menu a {
  display: flex !important;
  align-items: center;
  color: var(--gray-800) !important;
  padding: 9px 12px !important;
  border-radius: var(--radius-sm) !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  background: transparent !important;
  transition: var(--transition);
  gap: 6px;
}
.dropdown-menu a:hover {
  background: var(--green-50) !important;
  color: var(--green-700) !important;
  padding-left: 16px !important;
}
.nav-cta { margin-left: 12px; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px;
  border-radius: 10px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; 
  width: 100vw; height: 100vh;
  background: linear-gradient(160deg, var(--green-950), #061a0f);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 80px 20px 40px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 13px 32px;
  border-radius: var(--radius-md);
  text-align: center;
  width: 85%;
  max-width: 360px;
  transition: var(--transition);
  border: 1px solid transparent;
}
.nav-mobile a:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  color: var(--white);
}
.nav-mobile-close {
  position: absolute;
  top: 20px; right: 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.nav-mobile-close:hover { background: rgba(255,255,255,0.2); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--green-950);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* Radial ambient glows */
.hero::before {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 60vw; height: 60vw;
  max-width: 700px;
  background: radial-gradient(circle, rgba(37,107,68,0.35) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%; right: -5%;
  width: 50vw; height: 50vw;
  max-width: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 65%);
  pointer-events: none;
}
/* Background image layer */
.hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('../images/hero.png') center/cover no-repeat;
  opacity: 0.15;
  transform: scale(1.04);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.10); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(6,21,16,0.95) 0%,
    rgba(13,41,24,0.85) 50%,
    rgba(26,71,49,0.5) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 150px 0 100px;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.35);
  color: var(--orange-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeSlideIn 0.8s ease both;
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeSlideIn 0.8s 0.15s ease both;
}
.hero-title span {
  color: var(--orange);
  position: relative;
}
.hero-title span::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--orange), transparent);
  border-radius: 2px;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin-bottom: 42px;
  line-height: 1.75;
  animation: fadeSlideIn 0.8s 0.3s ease both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
  animation: fadeSlideIn 0.8s 0.45s ease both;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  animation: fadeSlideIn 0.8s 0.6s ease both;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 600;
}
.hero-trust-icon {
  width: 34px; height: 34px;
  background: rgba(245,166,35,0.18);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: heroScroll 2s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(245,166,35,0.6));
}
@keyframes heroScroll {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 1; }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: linear-gradient(90deg, var(--green-900), var(--green-800), var(--green-900));
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 48px; height: 48px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--orange);
  flex-shrink: 0;
  transition: var(--transition);
}
.trust-item:hover .trust-icon {
  background: rgba(245,166,35,0.22);
  transform: scale(1.08);
}
.trust-label { font-size: 0.7rem; color: rgba(255,255,255,0.45); font-weight: 600; text-transform: uppercase; letter-spacing: 1.2px; }
.trust-value { font-size: 0.98rem; color: var(--white); font-weight: 700; }

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-700), var(--green-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 1;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-100);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card-img {
  height: 210px;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,41,24,0.75), rgba(13,41,24,0.1) 60%, transparent);
}
.service-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
  transition: transform 0.3s ease;
}
.service-card:hover .service-card-icon { transform: scale(1.15) rotate(-5deg); }
.service-card-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 10px;
}
.service-card-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 22px;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-600);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}
.service-card-link:hover { color: var(--orange); gap: 12px; }

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 52px;
}
.why-card {
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(180deg, transparent, var(--green-50));
  transition: height 0.4s ease;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-100);
}
.why-card:hover::after { height: 60px; }
.why-card-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(26,71,49,0.12);
}
.why-card:hover .why-card-icon {
  background: linear-gradient(135deg, var(--green-100), var(--green-200, #a8d8b9));
  transform: scale(1.1) rotate(5deg);
}
.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 10px;
}
.why-card p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.65; }

/* ── STATS BAR ── */
.stats-section {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 50%, var(--green-700) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 100%;
  max-width: 1200px;
  background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px;
  text-align: center;
  position: relative;
}
.stats-grid .fade-in {
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stats-grid .fade-in:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 2px 20px rgba(245,166,35,0.3);
}
.stat-label { color: rgba(255,255,255,0.7); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.5px; }

/* ── PROCESS STEPS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 56px;
  position: relative;
  counter-reset: steps;
}
.process-step {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.process-step-num {
  width: 62px; height: 62px;
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  box-shadow: var(--shadow-green);
  position: relative;
}
.process-step-num::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--green-400);
  opacity: 0;
  transform: scale(1.2);
  transition: all 0.4s ease;
}
.process-step:hover .process-step-num::before {
  opacity: 1;
  transform: scale(1);
}
.process-step h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 10px;
}
.process-step p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.65; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--gray-50); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 52px;
}
.testimonial-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px; right: 28px;
  font-size: 5.5rem;
  color: var(--green-50);
  font-family: Georgia, serif;
  line-height: 1;
  font-weight: 900;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-100);
}
.testimonial-stars {
  color: var(--orange);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-text { font-size: 0.97rem; color: var(--gray-700); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26,71,49,0.3);
}
.testimonial-name { font-weight: 700; font-size: 0.95rem; color: var(--green-900); }
.testimonial-location { font-size: 0.78rem; color: var(--gray-400); font-weight: 500; }

/* ── FAQ ACCORDION ── */
.faq-section { background: var(--gray-100); }
.faq-list { max-width: 820px; margin: 44px auto 0; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.open {
  border-color: var(--green-200, #a8d8b9);
  box-shadow: 0 4px 24px rgba(26,71,49,0.1);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--green-900);
  transition: var(--transition);
}
.faq-question:hover { color: var(--green-600); }
.faq-icon {
  width: 32px; height: 32px;
  background: var(--green-50);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--green-700);
  font-size: 1.1rem;
  transition: var(--transition);
  font-weight: 700;
  border: 1.5px solid var(--green-100);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--green-800);
  color: var(--white);
  border-color: var(--green-700);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 0.97rem;
  color: var(--gray-500);
  line-height: 1.78;
}

/* ── CONTACT FORM ── */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.05);
}
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--green-900);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--green-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(42,125,79,0.1);
}
.form-control.error { border-color: #e74c3c; box-shadow: 0 0 0 4px rgba(231,76,60,0.08); }
.form-error { font-size: 0.78rem; color: #e74c3c; margin-top: 5px; display: none; }
.form-error.show { display: block; }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-success {
  display: none;
  background: var(--green-50);
  border: 1.5px solid var(--green-300);
  color: var(--green-700);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  margin-top: 16px;
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--green-950) 0%, var(--green-900) 40%, var(--green-800) 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -40%; left: -10%;
  width: 50vw; height: 50vw;
  max-width: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%; right: -10%;
  width: 40vw; height: 40vw;
  max-width: 500px;
  background: radial-gradient(circle, rgba(37,107,68,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-sub { color: rgba(255,255,255,0.65); font-size: 1.1rem; margin-bottom: 44px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* ── SERVICE DETAIL PAGE ── */
.page-hero {
  background: linear-gradient(135deg, var(--green-950), var(--green-900), var(--green-800));
  padding: 100px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero.png') center/cover no-repeat;
  opacity: 0.08;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 100%;
  background: radial-gradient(ellipse, rgba(37,107,68,0.25) 0%, transparent 75%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(245,166,35,0.14);
  border: 1px solid rgba(245,166,35,0.3);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}
.page-hero-sub {
  color: rgba(255,255,255,0.68);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── BREADCRUMB ── */
.breadcrumb-bar {
  background: var(--gray-50);
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-500);
}
.breadcrumb a { color: var(--green-600); font-weight: 500; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--green-800); }
.breadcrumb-sep { color: var(--gray-300); }
.breadcrumb-current { font-weight: 600; color: var(--gray-800); }

/* ── BENEFITS LIST ── */
.benefits-list { margin-top: 20px; display: flex; flex-direction: column; gap: 14px; }
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}
.benefit-item:hover { background: var(--green-50); border-color: var(--green-100); }
.benefit-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  color: var(--white);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}
.benefit-text h4 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green-900);
  margin-bottom: 3px;
}
.benefit-text p { font-size: 0.86rem; color: var(--gray-500); line-height: 1.55; }

/* ── SERVICE DETAIL IMAGE ── */
.service-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 24px;
  border: 1px solid rgba(0,0,0,0.06);
}
.service-detail-img img { width: 100%; height: 320px; object-fit: cover; display: block; }

/* ── FOOTER ── */
footer {
  background: linear-gradient(160deg, #071a10 0%, #030a06 100%);
  color: var(--white);
  border-top: 1px solid rgba(37,107,68,0.2);
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 100%; height: 100%;
  background: radial-gradient(circle at center, rgba(37,107,68,0.1) 0%, transparent 70%);
  transform: translateX(-50%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1.2fr 1fr;
  gap: 60px;
  padding: 80px 0 60px;
}
.footer-brand { margin-bottom: 0; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
}
.footer-logo img {
  height: 52px;
  width: auto;
  display: block;
}
.footer-logo-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  max-width: 360px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.92rem;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.7);
}
.footer-contact-icon { 
  font-size: 1.1rem; 
  color: var(--orange);
  flex-shrink: 0; 
  width: 20px;
}
.footer-contact-item a { color: inherit; transition: var(--transition); }
.footer-contact-item a:hover { color: var(--white); }

.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 30px; height: 2px;
  background: var(--orange);
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover {
  color: var(--orange);
  transform: translateX(5px);
}
.footer-links a::before {
  content: '→';
  font-weight: 900;
  opacity: 0;
  transition: 0.3s;
  margin-left: -15px;
}
.footer-links a:hover::before {
  opacity: 1;
  margin-left: 0;
}
.footer-bottom {
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.35);
}
.footer-attribution {
  font-weight: 500;
}
.footer-attribution a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}
.footer-attribution a:hover {
  color: var(--white);
  text-decoration: none;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ── FLOATING BUTTONS ── */
.float-whatsapp, .float-call {
  position: fixed;
  right: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 990;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}
.float-whatsapp {
  bottom: 24px;
  background: linear-gradient(135deg, #25D366, #1da851);
}
.float-call {
  bottom: 94px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}
.float-whatsapp:hover, .float-call:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.3);
}
.float-whatsapp svg, .float-call svg {
  width: 26px; height: 26px;
  fill: var(--white);
}

/* ── FADE IN ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── TEAM SECTION ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.team-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-100);
}
.team-avatar {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 16px rgba(37,107,68,0.2);
}
.team-name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green-950);
  margin-bottom: 6px;
}
.team-role {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.team-bio {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .trust-bar-inner { flex-wrap: wrap; }
  .trust-item { flex: 1 1 45%; border-right: 1px solid rgba(255,255,255,0.06); padding: 20px; }
  .trust-item:nth-child(2n) { border-right: none; }
}

@media (max-width: 768px) {
  .nav-spacer { height: 95px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; position: relative; z-index: 1001; }
  #navbar { padding: 12px 0; width: 100%; }
  .nav-inner { width: 100%; padding: 0 16px; }
  
  .hero-content { padding: 130px 0 70px; }
  .hero-title { font-size: 2.1rem; line-height: 1.15; }
  .hero-sub { font-size: 0.95rem; }
  
  .page-hero { padding: 90px 0 50px; width: 100%; }
  .page-hero-title { font-size: 1.7rem; line-height: 1.2; letter-spacing: -0.4px; }
  .breadcrumb-bar { padding: 20px 0; }
  .stats-grid > div { 
    border-right: 1px solid rgba(255,255,255,0.08); 
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 30px 20px;
  }
  .stats-grid > div:nth-child(2n) { border-right: none; }
  .stats-grid > div:nth-child(n+3) { border-bottom: none; }

  .services-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
  .why-grid { grid-template-columns: 1fr; gap: 20px; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: left; }
  
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 32px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  
  .page-hero { padding: 80px 0 50px; width: 100%; }
  .page-hero-title { font-size: 1.8rem; line-height: 1.2; letter-spacing: -0.5px; }
  .breadcrumb { flex-wrap: wrap; gap: 4px 8px; font-size: 0.8rem; }
  .breadcrumb-sep { font-size: 0.7rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; width: 100%; max-width: 100vw; }
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.75rem; }
  .stat-number { font-size: 2.2rem; }
  .btn { width: 100%; justify-content: center; max-width: 100%; }
  .hero-actions { flex-direction: column; gap: 12px; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .trust-item { width: 100%; flex: 1 1 100%; border-right: none; }
  
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-bottom-links { flex-direction: column; gap: 10px; }

  .float-whatsapp, .float-call {
    width: 50px; height: 50px;
    right: 12px;
  }
  .float-whatsapp { bottom: 12px; }
  .float-call { bottom: 72px; }
  
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 32px 16px !important; }
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--green-700); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-600); }

/* ── SELECTION ── */
::selection { background: rgba(37,107,68,0.25); color: var(--green-900); }
