﻿/* =========================================
   Ù…Ø¤Ø³Ø³Ø© Ø§Ù„Ø§ØªØ­Ø§Ø¯ Ø§Ù„Ù…ØªÙ…ÙŠØ² - Ù†Ù‚Ù„ Ø§Ù„Ø¹ÙØ´ Ø¨Ø¬Ø¯Ø©
   Enhanced CSS â€“ Premium Animations & Conversions
   ========================================= */

/* ===== Design Tokens ===== */
:root {
  --green-950: #031A10;
  --green-900: #062E1E;
  --green-800: #0B5D3B;
  --green-700: #0D7348;
  --green-600: #0F8A56;
  --green-500: #11A264;
  --green-100: #E8F5EE;
  --green-50:  #F0FAF5;

  --gold-700: #8A6A10;
  --gold-600: #A6891F;
  --gold-500: #C9A646;
  --gold-400: #D4B55C;
  --gold-300: #E2CC88;
  --gold-100: #FBF5E0;
  --gold-50:  #FFFDF0;

  --white:    #FFFFFF;
  --gray-950: #0A0A0A;
  --gray-900: #111827;
  --gray-800: #1F2937;
  --gray-700: #374151;
  --gray-600: #4B5563;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-300: #D1D5DB;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --gray-50:  #F9FAFB;

  --font-primary: 'Cairo', 'Tajawal', sans-serif;

  --shadow-sm:    0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.07);
  --shadow-lg:    0 10px 40px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.08);
  --shadow-xl:    0 20px 60px rgba(0,0,0,0.16), 0 8px 24px rgba(0,0,0,0.10);
  --shadow-green: 0 8px 32px rgba(11, 93, 59, 0.35);
  --shadow-gold:  0 8px 32px rgba(201, 166, 70, 0.40);

  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-full: 9999px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s var(--ease-in-out);
  --transition-base: 0.30s var(--ease-in-out);
  --transition-slow: 0.55s var(--ease-out-expo);

  --section-py:    88px;
  --container-px:  20px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-primary);
  color: var(--gray-900);
  background: var(--white);
  direction: rtl;
  text-align: right;
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition-base); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== Page Load Fade-in ===== */
body.page-loading { overflow: hidden; }
body.page-loaded { animation: pageFadeIn 0.6s var(--ease-out-expo) forwards; }
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== PAGE LOADER ===== */
.page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--green-900);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 24px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { animation: loaderPulse 1s ease-in-out infinite alternate; }
@keyframes loaderPulse {
  from { transform: scale(0.95); opacity: 0.7; }
  to   { transform: scale(1.05); opacity: 1; }
}
.loader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-full); overflow: hidden;
}
.loader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-500), var(--green-500));
  border-radius: var(--radius-full);
  animation: loadProgress 1.2s var(--ease-out-expo) forwards;
}
@keyframes loadProgress {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ===== Container ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--container-px); }

/* ===== SCROLL REVEAL SYSTEM ===== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  filter: blur(8px);
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
/* Hero stagger items */
.reveal-item {
  opacity: 0;
  transform: translateY(28px);
}
.reveal-item.in {
  animation: heroItemIn 0.8s var(--ease-out-expo) forwards;
}
@keyframes heroItemIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Section shared */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header.text-start { text-align: right; }
.section-tag {
  display: inline-block;
  background: var(--gold-100); color: var(--gold-600);
  border: 1.5px solid var(--gold-300);
  padding: 6px 18px; border-radius: var(--radius-full);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.8px;
  margin-bottom: 14px; text-transform: uppercase;
}
.section-title {
  font-size: clamp(1.55rem, 4vw, 2.4rem); font-weight: 900;
  color: var(--gray-900); line-height: 1.3; margin-bottom: 14px;
}
.section-title span { color: var(--green-800); }
.section-subtitle {
  font-size: clamp(0.92rem, 2vw, 1.08rem); color: var(--gray-500);
  max-width: 600px; margin: 0 auto; line-height: 1.8;
}
.section-header.text-start .section-subtitle { margin: 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: var(--radius-full);
  font-family: var(--font-primary); font-size: 1rem; font-weight: 700;
  cursor: pointer; border: none;
  transition: all var(--transition-base);
  white-space: nowrap; text-decoration: none; position: relative;
  overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition-fast);
  border-radius: inherit;
}
.btn:hover::after { background: rgba(255,255,255,0.06); }
.btn:active { transform: scale(0.97) !important; }

.btn-lg { padding: 18px 36px; font-size: 1.1rem; }

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.55);
  color: var(--white);
}

.btn-call {
  background: var(--white); color: var(--green-800);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-call:hover {
  background: var(--green-50); transform: translateY(-3px);
  color: var(--green-800); box-shadow: var(--shadow-lg);
}

.btn-call-outline {
  background: transparent; color: var(--white);
  border: 2.5px solid rgba(255,255,255,0.65);
}
.btn-call-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-3px); color: var(--white);
}

/* Periodic CTA pulse */
.pulse-cta { animation: ctaPulse 4s ease-in-out infinite; }
@keyframes ctaPulse {
  0%, 85%, 100% { box-shadow: 0 0 0 0 rgba(201, 166, 70, 0.5); }
  92%           { box-shadow: 0 0 0 10px rgba(201, 166, 70, 0); }
}

/* CTA button periodic pulse */
.cta-wa-btn { animation: waPulse 5s ease-in-out infinite; }
@keyframes waPulse {
  0%, 80%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  90%           { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0.0); }
}

/* ===== TOP BAR ===== */
--top-bar-h: 38px;

.top-bar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 950;
  height: var(--top-bar-h, 38px);
  background: var(--green-900);
  border-bottom: 1px solid rgba(201,166,70,0.25);
  transition: transform 0.3s ease;
}
.top-bar.hidden { transform: translateY(-100%); }
.top-bar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.top-bar-offer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  flex: 1;
}
.top-bar-offer strong { color: var(--gold-400); }
.top-bar-dot {
  width: 7px; height: 7px;
  background: var(--gold-500);
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
.top-bar-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.top-bar-phone:hover {
  background: rgba(255,255,255,0.18);
  color: var(--white);
}
.top-bar-wa {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #4ADE80;
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.25);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.top-bar-wa:hover { background: rgba(37,211,102,0.25); color: #4ADE80; }

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
  position: fixed; bottom: 24px; left: 24px;
  display: flex; flex-direction: column; gap: 12px;
  z-index: 1000;
}
.float-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 20px; border-radius: var(--radius-full);
  font-family: var(--font-primary); font-size: 0.9rem; font-weight: 700;
  color: var(--white); cursor: pointer; box-shadow: var(--shadow-xl);
  transition: all var(--transition-base); border: none;
  text-decoration: none; position: relative;
}
.float-btn svg { flex-shrink: 0; }
.whatsapp-btn { background: linear-gradient(135deg, #25D366, #128C7E); }
.whatsapp-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 48px rgba(37, 211, 102, 0.55);
  color: var(--white);
}
/* WA bounce every 5s */
.whatsapp-btn { animation: waBounce 5s ease-in-out infinite; }
@keyframes waBounce {
  0%, 70%, 100% { transform: translateY(0); }
  75%           { transform: translateY(-8px); }
  80%           { transform: translateY(-2px); }
  85%           { transform: translateY(-5px); }
  90%           { transform: translateY(0); }
}
.whatsapp-btn:hover { animation: none; transform: translateY(-4px) scale(1.05); }

/* WA glow ring */
.whatsapp-btn::before {
  content: ''; position: absolute; inset: -3px;
  border-radius: var(--radius-full);
  background: rgba(37, 211, 102, 0.4);
  animation: glowRing 2.5s ease-in-out infinite;
  z-index: -1;
}
@keyframes glowRing {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%      { transform: scale(1.25); opacity: 0; }
}

.call-btn { background: linear-gradient(135deg, var(--green-700), var(--green-950)); }
.call-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(11, 93, 59, 0.5);
  color: var(--white); animation: none;
}

/* ===== HEADER ===== */
/* The header is fixed. It sits immediately below the sticky top-bar.
   JS sets --header-top dynamically when top-bar hides on scroll. */
:root { --top-bar-h: 38px; --header-h: 68px; }

.header {
  position: fixed;
  top: var(--top-bar-h); /* sits below the top bar */
  left: 0; right: 0;
  z-index: 900;
  background: rgba(6, 46, 30, 0.60);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: top 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.header.top-bar-hidden { top: 0; }
.header.scrolled {
  background: rgba(4, 34, 18, 0.98);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 4px 28px rgba(0,0,0,0.30);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}

/* Logo */
.nav-logo { flex-shrink: 0; }
.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main { font-size: 0.95rem; font-weight: 900; color: var(--white); }
.logo-sub  { font-size: 0.68rem; color: var(--gold-400); font-weight: 600; }

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  display: inline-flex; align-items: center; gap: 4px;
  color: rgba(255,255,255,0.80);
  font-size: 0.86rem; font-weight: 600;
  padding: 7px 11px; border-radius: var(--radius-sm);
  background: none; border: none; cursor: pointer;
  font-family: var(--font-primary);
  transition: var(--transition-fast);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active { color: var(--white); background: rgba(255,255,255,0.10); }

/* Right cluster */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-cta {
  display: flex; align-items: center; gap: 7px;
  background: var(--gold-500); color: var(--white);
  padding: 9px 20px; border-radius: var(--radius-full);
  font-size: 0.85rem; font-weight: 800;
  font-family: var(--font-primary);
  transition: all var(--transition-base);
  white-space: nowrap; text-decoration: none;
}
.nav-cta:hover {
  background: var(--gold-400); transform: translateY(-2px);
  color: var(--white); box-shadow: var(--shadow-gold);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 9px 10px;
  width: 42px; height: 42px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-base);
  transform-origin: center;
}
/* open state */
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== DROPDOWN MENUS (desktop) ===== */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: rgba(4, 34, 18, 0.98);
  border: 1px solid rgba(201,166,70,0.2);
  border-radius: var(--radius-md);
  padding: 8px 0;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s var(--ease-out-expo);
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-trigger[aria-expanded="true"] + .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.78);
  font-weight: 600;
  transition: var(--transition-fast);
}
.nav-dropdown-menu a:hover { color: var(--gold-400); background: rgba(255,255,255,0.06); }
.nav-dropdown-trigger svg { transition: transform var(--transition-fast); }
.nav-dropdown-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.nav-dropdown-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 6px 0;
}

/* ===== MOBILE OVERLAY ===== */
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
  z-index: 1090;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

/* ===== MOBILE DRAWER ===== */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 88vw);
  background: var(--green-950);
  border-left: 1px solid rgba(201,166,70,0.18);
  z-index: 1100;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s var(--ease-out-expo);
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.mobile-drawer-logo {
  display: flex; align-items: center; gap: 10px;
}
.mobile-drawer-name {
  font-size: 0.92rem; font-weight: 900; color: var(--white);
}
.mobile-drawer-sub {
  font-size: 0.7rem; color: var(--gold-400); font-weight: 600;
}
.mobile-drawer-close {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: var(--white);
  cursor: pointer;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition-fast);
  flex-shrink: 0;
}
.mobile-drawer-close:hover { background: rgba(255,255,255,0.15); }

.mobile-drawer-nav {
  flex: 1;
  padding: 12px 12px;
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-nav-link {
  display: flex; align-items: center;
  padding: 13px 16px;
  border-radius: var(--radius-md);
  font-size: 1rem; font-weight: 700;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: all var(--transition-fast);
  border: none; background: none;
  cursor: pointer; font-family: var(--font-primary);
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: rgba(201,166,70,0.12);
  color: var(--gold-400);
}
.mobile-nav-group-title {
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  color: var(--gold-500) !important;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 14px 16px 4px !important;
  pointer-events: none;
  background: none !important;
}
.mobile-nav-sub {
  padding-right: 28px !important;
  font-size: 0.9rem !important;
  color: rgba(255,255,255,0.65) !important;
}
.mobile-nav-sub:hover { color: var(--white) !important; }

.mobile-drawer-cta {
  padding: 16px 14px 24px;
  display: flex; flex-direction: column; gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.mobile-cta-call {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 20px;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: var(--white); border-radius: var(--radius-full);
  font-size: 0.97rem; font-weight: 800;
  font-family: var(--font-primary);
  text-decoration: none;
  box-shadow: var(--shadow-green);
  transition: all var(--transition-base);
}
.mobile-cta-call:hover { transform: translateY(-2px); color: var(--white); }
.mobile-cta-wa {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 20px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white); border-radius: var(--radius-full);
  font-size: 0.97rem; font-weight: 800;
  font-family: var(--font-primary);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition-base);
}
.mobile-cta-wa:hover { transform: translateY(-2px); color: var(--white); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  /* top-bar (38px sticky) + header (68px fixed) = 106px offset */
  padding: calc(var(--top-bar-h, 38px) + var(--header-h, 68px) + 40px) 0 72px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg,
      rgba(3,  26, 16, 0.96) 0%,
      rgba(6,  46, 30, 0.91) 35%,
      rgba(11, 93, 59, 0.80) 65%,
      rgba(6,  46, 30, 0.93) 100%
    ),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='650' viewBox='0 0 900 650'%3E%3Crect width='900' height='650' fill='%230B5D3B'/%3E%3Cpath d='M80 400L150 220H700L780 400H80Z' fill='%23ffffff' opacity='0.05'/%3E%3Crect x='80' y='400' width='640' height='80' rx='10' fill='%23ffffff' opacity='0.04'/%3E%3Ccircle cx='160' cy='480' r='50' fill='%23ffffff' opacity='0.04'/%3E%3Ccircle cx='700' cy='480' r='50' fill='%23ffffff' opacity='0.04'/%3E%3Crect x='80' y='130' width='200' height='100' rx='8' fill='%23C9A646' opacity='0.18'/%3E%3Crect x='300' y='160' width='120' height='70' rx='6' fill='%23C9A646' opacity='0.10'/%3E%3C/svg%3E");
  background-size: cover; background-position: center;
  will-change: transform;
  animation: heroBgZoom 18s ease-out forwards;
}
@keyframes heroBgZoom {
  0% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
/* parallax handled via JS */
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 55%, rgba(201,166,70,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(11,93,59,0.30) 0%, transparent 50%);
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute; border-radius: 50%; opacity: 0.10;
  animation: floatParticle 9s ease-in-out infinite;
}
.particle:nth-child(1){ width:130px;height:130px;background:var(--gold-500);top:8%;right:12%;animation-delay:0s;}
.particle:nth-child(2){ width:70px;height:70px;background:var(--white);top:62%;left:8%;animation-delay:2.5s;}
.particle:nth-child(3){ width:55px;height:55px;background:var(--gold-400);bottom:18%;right:22%;animation-delay:4.5s;}
.particle:nth-child(4){ width:40px;height:40px;background:var(--white);top:28%;left:28%;animation-delay:1.2s;}
.particle:nth-child(5){ width:95px;height:95px;background:var(--green-600);bottom:12%;left:42%;animation-delay:3.2s;}
.particle:nth-child(6){ width:50px;height:50px;background:var(--gold-300);top:50%;right:35%;animation-delay:5s;}
@keyframes floatParticle {
  0%,100%{ transform: translate(0, 0) scale(1); }
  33%    { transform: translate(15px, -28px) scale(1.06); }
  66%    { transform: translate(-10px, -15px) scale(0.94); }
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 820px; margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18); color: var(--gold-300);
  padding: 8px 20px; border-radius: var(--radius-full);
  font-size: 0.82rem; font-weight: 600; margin-bottom: 22px;
}
.badge-dot {
  width: 8px; height: 8px; background: #25D366;
  border-radius: 50%; animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink {
  0%,100%{ opacity: 1; }
  50%    { opacity: 0.25; }
}
.hero-title {
  font-size: clamp(1.9rem, 5.5vw, 3.6rem); font-weight: 900;
  color: var(--white); line-height: 1.22; margin-bottom: 14px;
}
.hero-title-line { display: block; }
.hero-title-accent {
  display: block; color: var(--gold-400);
  font-size: 0.68em; margin-top: 6px;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.4vw, 1.2rem); color: rgba(255,255,255,0.82);
  line-height: 1.8; max-width: 600px; margin: 0 auto 28px;
}
.hero-subtitle strong { color: var(--gold-300); font-weight: 700; }

/* Trust micro row in hero */
.hero-trust-row {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap; margin-bottom: 30px;
}
.hero-trust-badge {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.85); padding: 6px 14px;
  border-radius: var(--radius-full); font-size: 0.78rem; font-weight: 600;
}
.hero-trust-badge svg { color: var(--gold-400); flex-shrink: 0; }

.hero-stats {
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.07); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-xl); padding: 18px 32px;
  margin-bottom: 36px; width: fit-content; margin-left: auto; margin-right: auto;
}
.stat-item { display: flex; flex-direction: column; align-items: center; padding: 0 24px; }
.stat-number {
  font-size: clamp(1.4rem, 3.5vw, 1.9rem); font-weight: 900;
  color: var(--gold-400); line-height: 1;
}
.stat-label { font-size: 0.74rem; color: rgba(255,255,255,0.65); margin-top: 4px; font-weight: 500; }
.stat-divider { width: 1px; height: 38px; background: rgba(255,255,255,0.18); flex-shrink: 0; }

.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Hero WhatsApp button: persistent glow in hero */
.btn-hero-wa { animation: heroWaGlow 3s ease-in-out infinite; }
@keyframes heroWaGlow {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.3); }
  50%     { box-shadow: 0 4px 36px rgba(37,211,102,0.7); }
}
.btn-hero-wa:hover { animation: none; }

.hero-scroll-indicator {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2;
}
.scroll-arrow { color: rgba(255,255,255,0.45); animation: bounce 2.2s ease-in-out infinite; }
@keyframes bounce { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(10px); } }

/* ===== TRUST SECTION ===== */
.trust-section {
  padding: 48px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.trust-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-bottom: 32px; }
.trust-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; background: var(--white);
  border-radius: var(--radius-md); border: 1.5px solid var(--gray-200);
  transition: all var(--transition-base); cursor: default;
}
.trust-item:hover {
  border-color: var(--green-700); transform: translateY(-3px); box-shadow: var(--shadow-md);
}
.trust-icon {
  flex-shrink: 0; width: 42px; height: 42px;
  background: var(--green-100); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; color: var(--green-800);
  transition: all var(--transition-base);
}
.trust-item:hover .trust-icon { background: var(--green-800); color: var(--white); }
.trust-icon svg { width: 20px; height: 20px; }
.trust-content strong { display: block; font-size: 0.9rem; font-weight: 800; color: var(--gray-900); margin-bottom: 2px; }
.trust-content span  { font-size: 0.76rem; color: var(--gray-500); }
.trust-badges { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.badge {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 18px 28px; border-radius: var(--radius-lg); font-size: 0.88rem; font-weight: 800;
  min-width: 96px; transition: all var(--transition-base); cursor: default;
}
.badge.gold { background: var(--gold-50); color: var(--gold-600); border: 2px solid var(--gold-300); }
.badge.green{ background: var(--green-50); color: var(--green-800); border: 2px solid var(--green-100); }
.badge:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

/* icon subtile float */
.icon-float { animation: iconFloat 5s ease-in-out infinite; display: inline-block; }
@keyframes iconFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%     { transform: translateY(-6px) rotate(1.5deg); }
}
.service-card:hover .icon-float { animation-duration: 2s; }

/* ===== SERVICES SECTION ===== */
.services-section { padding: var(--section-py) 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--radius-xl);
  border: 1.5px solid var(--gray-200);
  transition: all 0.4s var(--ease-out-expo);
  overflow: hidden; position: relative; cursor: default;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,93,59,0), rgba(11,93,59,0.04));
  opacity: 0; transition: opacity var(--transition-base); border-radius: inherit;
}
.service-card:hover {
  border-color: var(--green-700);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(11,93,59,0.08);
  transform: translateY(-8px) scale(1.01);
}
.service-card:hover::before { opacity: 1; }
.service-card:active { transform: translateY(-4px) scale(0.99); }

.service-card.featured { border-color: var(--gold-400); background: linear-gradient(135deg, var(--gold-50), var(--white)); }
.service-card.featured:hover { box-shadow: var(--shadow-gold), 0 0 0 1px rgba(201,166,70,0.2); }

/* Gold glow on featured hover */
.service-card.featured:hover {
  filter: drop-shadow(0 0 18px rgba(201,166,70,0.3));
}

.featured-badge-card {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold-500); color: var(--white);
  font-size: 0.73rem; font-weight: 800; padding: 4px 12px;
  border-radius: var(--radius-full); animation: featuredBadgePulse 3s ease-in-out infinite;
}
@keyframes featuredBadgePulse {
  0%,100%{ box-shadow: 0 0 0 0 rgba(201,166,70,0.5); }
  50%    { box-shadow: 0 0 0 6px rgba(201,166,70,0); }
}

.service-card-inner { padding: 30px 26px; }
.service-icon-wrap { margin-bottom: 18px; }
.service-title { font-size: 1.15rem; font-weight: 800; color: var(--gray-900); margin-bottom: 8px; }
.service-desc  { font-size: 0.87rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 16px; }
.service-features { margin-bottom: 22px; display: flex; flex-direction: column; gap: 7px; }
.service-features li {
  font-size: 0.83rem; color: var(--gray-700);
  display: flex; align-items: center; gap: 8px;
}
.service-features li::before {
  content: ''; width: 6px; height: 6px;
  background: var(--green-800); border-radius: 50%; flex-shrink: 0;
}
.service-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; padding: 13px 20px;
  background: var(--green-800); color: var(--white);
  border-radius: var(--radius-full); font-size: 0.88rem; font-weight: 700;
  font-family: var(--font-primary); transition: all var(--transition-base);
  text-decoration: none; position: relative; overflow: hidden;
}
.service-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  opacity: 0; transition: opacity var(--transition-base);
}
.service-btn span { position: relative; z-index: 1; }
.service-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-green); color: var(--white); }
.service-btn:hover::before { opacity: 1; }
.service-btn:active { transform: scale(0.97); }
.service-btn.featured-btn { background: linear-gradient(135deg, var(--gold-500), var(--gold-600)); }
.service-btn.featured-btn::before { background: linear-gradient(135deg, var(--green-700), var(--green-900)); }
.service-btn.featured-btn:hover { box-shadow: var(--shadow-gold); }

/* ===== LEAD FORM SECTION ===== */
.form-section {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--green-50) 0%, var(--gold-50) 100%);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.form-wrapper {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  background: var(--white); border-radius: var(--radius-xl);
  padding: 40px 32px; box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}
.form-badge {
  display: inline-block; background: var(--gold-100); color: var(--gold-600);
  border: 1.5px solid var(--gold-300); padding: 6px 18px;
  border-radius: var(--radius-full); font-size: 0.8rem; font-weight: 700;
  margin-bottom: 12px;
}
.form-title { font-size: clamp(1.4rem, 3.5vw, 2rem); font-weight: 900; color: var(--gray-900); margin-bottom: 10px; }
.form-subtitle { font-size: 0.92rem; color: var(--gray-500); margin-bottom: 20px; }
.form-trust { display: flex; gap: 16px; flex-wrap: wrap; }
.form-trust span { font-size: 0.82rem; font-weight: 700; color: var(--green-800); }

.lead-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.85rem; font-weight: 700; color: var(--gray-700);
}
.form-group input,
.form-group select {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--gray-300); border-radius: var(--radius-md);
  font-family: var(--font-primary); font-size: 0.95rem; color: var(--gray-900);
  background: var(--white); transition: all var(--transition-fast);
  -webkit-appearance: none; appearance: none;
  direction: rtl;
}
.form-group input:focus,
.form-group select:focus {
  outline: none; border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(11,93,59,0.12);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
  background-size: 18px;
  padding-left: 40px;
}
.form-submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 24px; background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white); border: none; border-radius: var(--radius-full);
  font-family: var(--font-primary); font-size: 1rem; font-weight: 800;
  cursor: pointer; transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}
.form-submit:hover {
  transform: translateY(-3px); box-shadow: 0 10px 36px rgba(37,211,102,0.55);
}
.form-submit:active { transform: scale(0.97); }
.form-note { font-size: 0.77rem; color: var(--gray-400); text-align: center; }

/* ===== WHY SECTION ===== */
.why-section {
  padding: var(--section-py) 0;
  background: var(--green-900); color: var(--white);
  overflow: hidden; position: relative;
}
.why-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,166,70,0.07) 0%, transparent 60%);
}
.why-wrapper { position: relative; display: grid; grid-template-columns: 1fr; gap: 48px; }
.why-section .section-tag { background: rgba(201,166,70,0.14); color: var(--gold-300); border-color: rgba(201,166,70,0.3); }
.why-section .section-title { color: var(--white); }
.why-section .section-subtitle { color: rgba(255,255,255,0.6); }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
.why-card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg); transition: all var(--transition-base);
}
.why-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(201,166,70,0.3);
  transform: translateX(-6px);
}
.why-icon {
  flex-shrink: 0; width: 50px; height: 50px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition-base);
}
.why-icon.green { background: rgba(11,93,59,0.5); border: 1.5px solid rgba(11,93,59,0.7); color: var(--green-500); }
.why-icon.gold  { background: rgba(201,166,70,0.12); border: 1.5px solid rgba(201,166,70,0.28); color: var(--gold-400); }
.why-card:hover .why-icon { transform: scale(1.1) rotate(5deg); }
.why-text h4 { font-size: 0.97rem; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.why-text p  { font-size: 0.83rem; color: rgba(255,255,255,0.60); line-height: 1.6; }

.comparison-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(201,166,70,0.22);
  border-radius: var(--radius-xl); padding: 26px 22px;
}
.comparison-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--gold-400); margin-bottom: 18px; text-align: center; }
.comparison-table { display: flex; flex-direction: column; gap: 2px; }
.comparison-header {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  padding: 9px 12px; background: rgba(201,166,70,0.14);
  border-radius: var(--radius-sm); font-size: 0.77rem; font-weight: 700;
  color: var(--gold-300); text-align: center; gap: 8px;
}
.comparison-header span:first-child { text-align: right; }
.col-us { color: #25D366; }
.comparison-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  padding: 10px 12px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.025); font-size: 0.83rem;
  color: rgba(255,255,255,0.70); text-align: center; gap: 8px;
  align-items: center; transition: var(--transition-fast);
}
.comparison-row:hover { background: rgba(255,255,255,0.07); }
.comparison-row span:first-child { text-align: right; color: var(--white); font-weight: 600; }
.check { color: #25D366 !important; font-size: 1rem; font-weight: 900; }
.cross { color: #EF4444 !important; font-size: 1rem; font-weight: 900; }

/* ===== PROCESS SECTION ===== */
.process-section { padding: var(--section-py) 0; background: var(--gray-50); }
.process-timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.process-timeline::before {
  content: ''; position: absolute; right: 35px; top: 60px; bottom: 60px;
  width: 2px; background: linear-gradient(to bottom, var(--green-800), var(--gold-500));
  z-index: 0;
}
.process-step { display: flex; gap: 22px; position: relative; z-index: 1; }
.step-number {
  flex-shrink: 0; width: 70px; height: 70px;
  background: var(--green-800); color: var(--white);
  font-size: 1.2rem; font-weight: 900; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 4px solid var(--white); box-shadow: var(--shadow-green);
  position: relative; z-index: 2;
  transition: all 0.4s var(--ease-out-expo);
}
.process-step.visible .step-number {
  animation: stepPop 0.5s var(--ease-out-expo) forwards;
}
@keyframes stepPop {
  0%  { transform: scale(0.7); }
  60% { transform: scale(1.12); }
  100%{ transform: scale(1); }
}
.process-step:hover .step-number {
  background: var(--gold-500); box-shadow: var(--shadow-gold);
  transform: scale(1.1);
}
.step-content {
  flex: 1; background: var(--white); border-radius: var(--radius-lg);
  padding: 22px 22px; border: 1.5px solid var(--gray-200);
  margin-bottom: 18px; transition: all var(--transition-base);
}
.process-step:hover .step-content { border-color: var(--green-700); box-shadow: var(--shadow-md); }
.step-icon {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; background: var(--green-100);
  border-radius: var(--radius-sm); color: var(--green-800); margin-bottom: 12px;
  transition: all var(--transition-base);
}
.process-step:hover .step-icon { background: var(--green-800); color: var(--white); transform: rotate(8deg); }
.step-content h3 { font-size: 1rem; font-weight: 800; color: var(--gray-900); margin-bottom: 6px; }
.step-content p  { font-size: 0.85rem; color: var(--gray-600); line-height: 1.7; }

/* ===== TESTIMONIALS SLIDER ===== */
.testimonials-section { padding: var(--section-py) 0; background: var(--white); }
.slider-wrapper {
  position: relative; margin-bottom: 48px;
  background: var(--gray-50); border-radius: var(--radius-xl);
  border: 1.5px solid var(--gray-200); overflow: hidden;
}
.testimonials-slider {
  display: flex;
  transition: transform 0.55s var(--ease-out-expo);
}
.testimonial-slide {
  min-width: 100%; padding: 36px 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.testimonial-stars { font-size: 1.1rem; }
.testimonial-text {
  font-size: 1rem; color: var(--gray-700); line-height: 1.85;
  font-style: italic; position: relative; padding-right: 20px;
}
.testimonial-text::before {
  content: '"'; position: absolute; right: 0; top: -8px;
  font-size: 48px; color: var(--green-100); font-family: Georgia, serif; line-height: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 46px; height: 46px; background: var(--green-800); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; flex-shrink: 0;
}
.author-avatar.gold { background: linear-gradient(135deg, var(--gold-500), var(--gold-600)); }
.author-info strong { display: block; font-size: 0.92rem; font-weight: 800; color: var(--gray-900); }
.author-info span   { font-size: 0.78rem; color: var(--gray-500); }

.slider-controls {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 20px 24px; border-top: 1px solid var(--gray-200);
  background: var(--white);
}
.slider-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--gray-300);
  color: var(--gray-600); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition-base);
}
.slider-btn:hover { background: var(--green-800); border-color: var(--green-800); color: var(--white); transform: scale(1.1); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gray-300); cursor: pointer; border: none;
  transition: all var(--transition-base);
}
.slider-dot.active { background: var(--green-800); width: 24px; border-radius: 4px; }

.overall-rating {
  text-align: center; background: var(--green-900);
  color: var(--white); border-radius: var(--radius-xl); padding: 38px 28px;
}
.rating-number { font-size: 4rem; font-weight: 900; color: var(--gold-400); line-height: 1; margin-bottom: 8px; }
.rating-stars  { font-size: 1.7rem; margin-bottom: 10px; }
.rating-text   { font-size: 1.05rem; color: rgba(255,255,255,0.78); font-weight: 600; }
.rating-count  { font-size: 0.83rem; color: rgba(255,255,255,0.45); margin-top: 4px; }

/* ===== FAQ SECTION ===== */
.faq-section { padding: var(--section-py) 0; background: var(--gray-50); }
.faq-grid { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto 40px; }
.faq-item {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-200); overflow: hidden;
  transition: all var(--transition-base);
}
.faq-item.open { border-color: var(--green-700); box-shadow: var(--shadow-md); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; background: none; border: none; cursor: pointer;
  font-family: var(--font-primary); font-size: 0.97rem; font-weight: 700; color: var(--gray-900);
  text-align: right; transition: var(--transition-fast);
}
.faq-question:hover { color: var(--green-800); }
.faq-item.open .faq-question { color: var(--green-800); }
.faq-icon {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: var(--green-100); display: flex; align-items: center; justify-content: center;
  color: var(--green-800); transition: all var(--transition-base);
}
.faq-item.open .faq-icon { background: var(--green-800); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s var(--ease-out-expo), padding 0.3s ease;
  padding: 0 22px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 22px 20px; }
.faq-answer p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.8; border-top: 1px solid var(--gray-100); padding-top: 14px; }
.faq-cta { text-align: center; }
.faq-cta p { font-size: 0.95rem; color: var(--gray-500); margin-bottom: 16px; }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 50%, var(--green-950) 100%);
  position: relative; overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; }
.cta-glow {
  position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,166,70,0.13) 0%, transparent 70%);
}
.cta-content { position: relative; z-index: 2; text-align: center; }
.cta-badge {
  display: inline-block; background: rgba(239,68,68,0.15);
  border: 1.5px solid rgba(239,68,68,0.3); color: #FCA5A5;
  padding: 7px 22px; border-radius: var(--radius-full); font-size: 0.85rem;
  font-weight: 700; margin-bottom: 22px;
  animation: urgencyPulseSmall 2s ease-in-out infinite;
}
@keyframes urgencyPulseSmall {
  0%,100%{ opacity:1; } 50%{ opacity:0.75; }
}
.cta-title { font-size: clamp(1.5rem, 4.5vw, 2.7rem); font-weight: 900; color: var(--white); line-height: 1.3; margin-bottom: 18px; }
.cta-subtitle { font-size: clamp(0.92rem, 2vw, 1.08rem); color: rgba(255,255,255,0.72); line-height: 1.8; margin-bottom: 24px; }
.cta-trust-row { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 32px; }
.cta-trust-row span { font-size: 0.85rem; color: rgba(255,255,255,0.75); font-weight: 600; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.cta-note { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

/* ===== FOOTER ===== */
.footer { background: var(--gray-950); color: var(--white); }
.footer-top { padding: 60px 0 44px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-logo-name { font-size: 0.98rem; font-weight: 800; color: var(--white); }
.footer-logo-sub  { font-size: 0.72rem; color: var(--gold-400); }
.footer-desc { font-size: 0.86rem; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 22px; }
.footer-contact-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-wa-btn, .footer-call-btn {
  display: flex; align-items: center; gap: 7px; padding: 9px 18px;
  border-radius: var(--radius-full); font-size: 0.83rem; font-weight: 700;
  transition: all var(--transition-base); text-decoration: none;
}
.footer-wa-btn   { background: rgba(37,211,102,0.12); border: 1.5px solid rgba(37,211,102,0.28); color: #4ADE80; }
.footer-wa-btn:hover { background: #25D366; color: var(--white); border-color: #25D366; }
.footer-call-btn { background: rgba(201,166,70,0.12); border: 1.5px solid rgba(201,166,70,0.28); color: var(--gold-400); }
.footer-call-btn:hover { background: var(--gold-500); color: var(--white); border-color: var(--gold-500); }
.footer-col-title { font-size: 0.92rem; font-weight: 800; color: var(--white); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid rgba(201,166,70,0.25); }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.84rem; color: rgba(255,255,255,0.48); transition: var(--transition-fast); display: flex; align-items: center; gap: 7px; }
.footer-links a::before { content: 'â†'; font-size: 0.72rem; color: var(--gold-500); }
.footer-links a:hover { color: var(--gold-400); transform: translateX(-4px); }
.footer-contact-info { display: flex; flex-direction: column; gap: 13px; }
.contact-item { display: flex; align-items: flex-start; gap: 9px; font-size: 0.84rem; color: rgba(255,255,255,0.6); }
.contact-item svg { color: var(--gold-500); flex-shrink: 0; margin-top: 1px; }
.contact-item a { color: rgba(255,255,255,0.6); }
.contact-item a:hover { color: var(--gold-400); }
.footer-bottom { padding: 18px 0; text-align: center; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); line-height: 1.6; }
.footer-seo-text { margin-top: 4px; color: rgba(255,255,255,0.18) !important; }

/* ===== RESPONSIVE â€“ 640px+ ===== */
@media (min-width: 640px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .form-wrapper { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== RESPONSIVE â€“ 768px+ ===== */
@media (min-width: 768px) {
  :root { --section-py: 100px; --container-px: 32px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== RESPONSIVE â€“ 1024px+ ===== */
@media (min-width: 1024px) {
  :root { --section-py: 112px; --container-px: 40px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-wrapper { grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; }

  /* Desktop horizontal process */
  .process-timeline {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }
  .process-timeline::before {
    right: auto; left: calc(10% + 35px); right: calc(10% + 35px);
    top: 34px; bottom: auto; width: auto; height: 2px;
    background: linear-gradient(to right, var(--green-800), var(--gold-500));
  }
  .process-step { flex-direction: column; align-items: center; text-align: center; padding: 0 10px; }
  .step-content { text-align: center; margin-bottom: 0; }
  .step-icon { margin: 0 auto 12px; }
  .step-connector { display: none; }
  .nav-toggle { display: none; }
}

/* ===== Mobile Nav ===== */
@media (max-width: 1023px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 70px; left: 0; right: 0;
    background: var(--green-900); flex-direction: column;
    padding: 20px 16px; gap: 6px;
    transform: translateY(-110%);
    transition: transform var(--transition-slow);
    z-index: 800; box-shadow: var(--shadow-xl);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-link { display: block; padding: 12px 16px; background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.9); font-size: 1rem; width: 100%; text-align: center; border-radius: var(--radius-sm); }
  .nav-cta { width: 100%; justify-content: center; padding: 13px 24px; font-size: 1rem; margin-right: 0; margin-top: 6px; }
}

/* ===== Very small screens ===== */
@media (max-width: 480px) {
  .hero-stats { padding: 14px 16px; flex-wrap: wrap; gap: 10px; }
  .stat-divider { display: none; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .float-btn span { display: none; }
  .float-btn { padding: 14px; width: 52px; height: 52px; border-radius: 50%; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .urgency-inner { gap: 8px; font-size: 0.8rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .form-wrapper { padding: 28px 20px; }
}

/* ===== HERO URGENCY LINE ===== */
.hero-urgency {
  display: inline-block;
  background: rgba(255, 87, 34, 0.18);
  border: 1.5px solid rgba(255, 87, 34, 0.45);
  color: #FFB74D;
  padding: 8px 22px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 24px;
  animation: urgencyPulse 2.5s ease-in-out infinite;
}
@keyframes urgencyPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.3); }
  50%       { box-shadow: 0 0 0 8px rgba(255, 87, 34, 0); }
}

/* ===== MID CTA SECTION ===== */
.mid-cta-section {
  padding: 56px 0;
  background: linear-gradient(135deg, var(--green-950) 0%, var(--green-800) 100%);
  position: relative; overflow: hidden;
}
.mid-cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(201,166,70,0.12) 0%, transparent 60%);
}
.mid-cta-box {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
}
.mid-cta-icon {
  font-size: 3rem;
  flex-shrink: 0;
  animation: iconFloat 4s ease-in-out infinite;
}
.mid-cta-text { flex: 1; min-width: 260px; }
.mid-cta-text h2 {
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.4;
}
.mid-cta-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.mid-cta-btns {
  display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0;
}
.mid-cta-btns .btn-call {
  background: var(--white) !important;
  color: var(--green-800) !important;
  border: none !important;
}
.mid-cta-btns .btn-call:hover {
  background: var(--gold-50) !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ===== Enhanced service features (override dot with text) ===== */
.service-features li::before { display: none; }
.service-features li { padding-right: 0; }

@media (max-width: 768px) {
  .mid-cta-box { padding: 28px 24px; flex-direction: column; text-align: center; }
  .mid-cta-text { text-align: center; }
  .mid-cta-btns { justify-content: center; width: 100%; }
  .mid-cta-btns .btn { flex: 1; justify-content: center; min-width: 180px; }
}

@media (max-width: 480px) {
  .mid-cta-btns { flex-direction: column; }
  .hero-urgency { font-size: 0.78rem; padding: 6px 16px; }
}

/* ===== HERO URGENCY LINE ===== */
.hero-urgency {
  display: inline-block;
  background: rgba(255, 87, 34, 0.18);
  border: 1.5px solid rgba(255, 87, 34, 0.45);
  color: #FFB74D; padding: 8px 22px;
  border-radius: var(--radius-full); font-size: 0.88rem; font-weight: 800;
  margin-bottom: 24px; animation: urgencyPulse 2.5s ease-in-out infinite;
}
@keyframes urgencyPulse {
  0%,100%{ box-shadow: 0 0 0 0 rgba(255,87,34,0.3); }
  50%    { box-shadow: 0 0 0 8px rgba(255,87,34,0); }
}

/* ===== READING PROGRESS BAR ===== */
#readingProgress {
  position: fixed; top: 0; right: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--green-600));
  z-index: 9999; width: 0%; transition: width 0.1s linear;
  border-radius: 0 0 2px 2px;
}

/* ===== NEIGHBORHOODS SECTION ===== */
.neighborhoods-section {
  padding: var(--section-py) 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}
.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px; margin-bottom: 32px;
}
.nb-card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px 18px; background: var(--white);
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg);
  text-decoration: none; color: var(--gray-900);
  transition: all var(--transition-base);
  opacity: 0; transform: translateY(20px);
}
.nb-card.visible { opacity: 1; transform: translateY(0); }
.nb-card:hover {
  border-color: var(--green-700); transform: translateY(-5px);
  box-shadow: var(--shadow-md); color: var(--green-800);
}
.nb-icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1; }
.nb-content h3 { font-size: 0.97rem; font-weight: 800; margin-bottom: 5px; }
.nb-content p  { font-size: 0.78rem; color: var(--gray-500); line-height: 1.5; }
.neighborhoods-cta {
  text-align: center; padding: 24px; background: var(--white);
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
}
.neighborhoods-cta p { font-size: 0.95rem; color: var(--gray-700); }
.neighborhoods-cta p strong { color: var(--green-800); }

/* ===== MAPS SECTION ===== */
.maps-section {
  padding: var(--section-py) 0;
  background: var(--white);
}
.maps-wrapper {
  display: grid; grid-template-columns: 1fr;
  gap: 28px; border-radius: var(--radius-xl);
  overflow: hidden; border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
}
.maps-info {
  padding: 28px 28px; background: var(--green-900);
  display: flex; flex-direction: column; gap: 16px;
}
.maps-info-item {
  display: flex; align-items: flex-start; gap: 14px;
}
.maps-info-icon {
  font-size: 1.4rem; flex-shrink: 0;
  width: 42px; text-align: center;
}
.maps-info-item strong {
  display: block; font-size: 0.85rem; color: var(--white); font-weight: 700; margin-bottom: 2px;
}
.maps-info-item span, .maps-info-item a {
  font-size: 0.82rem; color: rgba(255,255,255,0.65);
}
.maps-info-item a:hover { color: var(--gold-400); }
.btn-map-cta { margin-top: 8px; }
.maps-embed { height: 320px; }
.maps-embed iframe { border: none; width: 100%; height: 100%; }

/* ===== INTERNAL LINKS SECTION ===== */
.internal-links-section {
  padding: 56px 0;
  background: var(--green-50);
  border-top: 1px solid var(--gray-200);
}
.internal-links-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px; margin-bottom: 24px;
}
.int-link-card {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 16px; background: var(--white);
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-md);
  font-size: 0.87rem; font-weight: 700; color: var(--gray-800);
  transition: all var(--transition-base); text-decoration: none;
}
.int-link-card svg { flex-shrink: 0; color: var(--green-700); }
.int-link-card:hover { border-color: var(--green-700); color: var(--green-800); transform: translateX(-4px); box-shadow: var(--shadow-sm); }
.blog-links-row {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 16px 20px; background: var(--white);
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-md);
}
.blog-links-row span { font-size: 0.87rem; font-weight: 700; color: var(--gray-600); flex-shrink: 0; }
.blog-links-row a {
  font-size: 0.85rem; font-weight: 700; color: var(--green-700);
  padding: 4px 12px; border-radius: var(--radius-full);
  background: var(--green-50); border: 1px solid var(--green-100);
  transition: all var(--transition-fast);
}
.blog-links-row a:hover { background: var(--green-800); color: var(--white); border-color: var(--green-800); }

/* ===== MID CTA SECTION ===== */
.mid-cta-section {
  padding: 56px 0;
  background: linear-gradient(135deg, var(--green-950) 0%, var(--green-800) 100%);
  position: relative; overflow: hidden;
}
.mid-cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(201,166,70,0.12) 0%, transparent 60%);
}
.mid-cta-box {
  position: relative; display: flex; align-items: center;
  justify-content: space-between; gap: 28px; flex-wrap: wrap;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px); border-radius: var(--radius-xl); padding: 36px 40px;
}
.mid-cta-icon { font-size: 3rem; flex-shrink: 0; animation: iconFloat 4s ease-in-out infinite; }
@keyframes iconFloat { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-8px); } }
.mid-cta-text { flex: 1; min-width: 260px; }
.mid-cta-text h2 { font-size: clamp(1.1rem,3vw,1.6rem); font-weight: 900; color: var(--white); margin-bottom: 8px; line-height: 1.4; }
.mid-cta-text p  { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.mid-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.mid-cta-btns .btn-call { background: var(--white) !important; color: var(--green-800) !important; border: none !important; }
.mid-cta-btns .btn-call:hover { background: var(--gold-50) !important; transform: translateY(-3px); }

/* ===== Service features override ===== */
.service-features li::before { display: none; }
.service-features li { padding-right: 0; }

/* ===== Responsive ===== */
@media (min-width: 768px) {
  .maps-wrapper { grid-template-columns: 340px 1fr; }
  .maps-embed   { height: auto; min-height: 380px; }
  .trust-grid   { grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 768px) {
  .mid-cta-box { padding: 28px 24px; flex-direction: column; text-align: center; }
  .mid-cta-text { text-align: center; }
  .mid-cta-btns { justify-content: center; width: 100%; }
  .mid-cta-btns .btn { flex: 1; justify-content: center; min-width: 180px; }
  .neighborhoods-cta { flex-direction: column; }
}
@media (max-width: 480px) {
  .mid-cta-btns { flex-direction: column; }
  .trust-grid { grid-template-columns: 1fr; }
  .form-wrapper { padding: 28px 20px; }
  .hero-stats { padding: 14px 16px; flex-wrap: wrap; gap: 10px; }
  .stat-divider { display: none; }
  .hero-btns, .cta-btns { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .float-btn span { display: none; }
  .float-btn { padding: 14px; width: 52px; height: 52px; border-radius: 50%; justify-content: center; }
  /* Top bar: hide offer text on very small screens */
  .top-bar-offer { display: none; }
  .top-bar-inner { justify-content: space-between; }
}

/* ===== HEADER RESPONSIVE ===== */
/* Mobile: show hamburger, hide desktop nav */
@media (max-width: 1023px) {
  .nav-toggle { display: flex; }
  .nav-links  { display: none; }     /* hidden â€“ drawer handles mobile nav */
  .nav-cta    { display: none; }     /* hidden on mobile â€“ drawer has CTA */
}
/* Desktop: always show nav, hide hamburger */
@media (min-width: 1024px) {
  .nav-toggle  { display: none !important; }
  .nav-links   { display: flex !important; }
  .nav-cta     { display: flex !important; }
  .mobile-drawer, .mobile-overlay { display: none !important; }
}
/* mid-size (768â€“1023): hide some nav items if needed */
@media (max-width: 840px) {
  /* Top bar: hide offer text to save space */
  .top-bar-offer { display: none; }
  .top-bar-inner { justify-content: space-between; }
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.1ms !important; }
}
.header.scrolled .nav-logo-img { filter: brightness(0) invert(1); }
@media (max-width: 480px) { .nav-logo-img { height: 40px; max-width: 160px; } }

.nav-logo-img {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  /* NO filter - show real colors */
  /* Add a white background pill to make colors visible on dark header */
  background: rgba(255,255,255,0.92);
  border-radius: 8px;
  padding: 4px 10px;
  transition: opacity 0.2s ease, background 0.2s ease;
}
.nav-logo-img:hover { opacity: 0.9; background: rgba(255,255,255,1); }

.footer-logo-img {
  max-width: 200px;
  height: auto;
  display: block;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 8px 14px;
  /* Invert for white footer display */
  filter: brightness(0) invert(1);
}

@media (max-width: 480px) {
  .nav-logo-img { height: 38px; max-width: 150px; padding: 3px 8px; }
}

/* End */
/* ========================================= */
/* ===== NEW TOP BAR & HEADER DESIGN ===== */
/* ========================================= */

:root {
  --top-bar-bg: #0d2b1a; /* Dark green/gold aesthetic */
  --header-bg: #ffffff;
  --header-shadow: 0 4px 20px rgba(0,0,0,0.06);
  --header-text: #1a1a1a;
  --header-text-hover: #0b5d3b;
  --logo-text-color: #0b5d3b;
  --nav-dropdown-bg: #ffffff;
}

/* --- OVERRIDES FOR OLD CSS CONFLICTS (if any) --- */
.header, .top-bar { display: none !important; }

/* ===== TOP BAR ===== */
.site-top-bar {
  background: var(--top-bar-bg);
  color: white;
  font-size: 0.85rem;
  padding: 8px 0;
  position: relative; /* Scrolls away naturally */
  z-index: 1010;
}
.site-top-bar .top-bar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-bar-offer { margin: 0 auto; color: #fff; font-size: 0.9rem; }
.top-bar-offer strong { color: #C9A646; font-weight: 800; }
.top-bar-left { display: flex; align-items: center; gap: 15px; }
.top-bar-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}
.top-bar-link:hover { opacity: 0.8; }
.top-bar-wa { padding: 4px; border-radius: 50%; background: #25D366; color: white !important; }

/* ===== MAIN HEADER ===== */
.site-header {
  position: relative; 
  /* It becomes sticky via JS when scrolled past top-bar */
  background: var(--header-bg);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  z-index: 1000;
}
.site-header.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: slideDown 0.4s ease forwards;
  box-shadow: var(--header-shadow);
}
@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

/* --- LOGO --- */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.site-logo .logo-box {
  width: 48px;
  height: 48px;
  background: #f8f9fa;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.site-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.site-logo-text .logo-main { font-size: 1.1rem; font-weight: 900; color: var(--logo-text-color); }
.site-logo-text .logo-sub { font-size: 0.75rem; color: #C9A646; font-weight: 700; }

/* --- DESKTOP NAV LINKS --- */
.site-nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.site-nav-link {
  color: var(--header-text);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.site-nav-link:hover, .site-nav-link.active {
  color: var(--header-text-hover);
  background: rgba(11, 93, 59, 0.05);
}

/* --- DROPDOWN --- */
.site-nav-dropdown { position: relative; }
.site-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--nav-dropdown-bg);
  min-width: 200px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}
.site-nav-dropdown:hover .site-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.site-dropdown-menu a:hover { background: #f4f6f8; color: var(--header-text-hover); }
.site-dropdown-divider { height: 1px; background: #eee; margin: 8px 0; }

/* --- CTA & HAMBURGER --- */
.site-nav-right { display: flex; align-items: center; gap: 16px; }
.site-cta-btn {
  background: #C9A646;
  color: white !important;
  font-weight: 800;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(201, 166, 70, 0.3);
}
.site-cta-btn:hover {
  background: #b5923b;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(201, 166, 70, 0.4);
}

.site-hamburger {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  background: rgba(0,0,0,0.03);
  transition: background 0.2s;
}
.site-hamburger:hover { background: rgba(0,0,0,0.06); }
.site-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--header-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== MOBILE DRAWER MENU ===== */
.site-mobile-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.site-mobile-overlay.active { opacity: 1; visibility: visible; }

.site-mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 320px;
  max-width: 85%;
  height: 100%;
  background: white;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -5px 0 25px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}
.site-mobile-drawer.open { transform: translateX(0); }

.mobile-drawer-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-drawer-close {
  background: #f4f6f8;
  border: none;
  font-size: 24px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  cursor: pointer;
}

.mobile-drawer-body {
  padding: 24px 20px;
  overflow-y: auto;
  flex: 1;
}
.mobile-link {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  text-decoration: none;
  padding: 12px 10px;
  border-radius: 8px;
  transition: background 0.2s;
  margin-bottom: 4px;
}
.mobile-link:active { background: #f4f6f8; color: var(--header-text-hover); }
.mobile-group-title {
  font-size: 0.85rem;
  color: #888;
  font-weight: 800;
  margin: 16px 10px 8px;
  text-transform: uppercase;
}
.mobile-link.nested {
  font-size: 1rem;
  font-weight: 600;
  padding-right: 24px;
  color: #555;
  border-right: 2px solid #eee;
  border-radius: 0;
}

.mobile-drawer-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-drawer-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  color: white !important;
}
.drawer-call-btn { background: var(--top-bar-bg); }
.drawer-wa-btn { background: #25D366; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .site-nav-links, .site-cta-btn { display: none; }
  .site-hamburger { display: flex; }
  .top-bar-offer { display: none; } /* Mobile top bar has only contact info */
  .top-bar-flex { justify-content: space-between; }
  .site-nav { height: 70px; }
}
@media (max-width: 480px) {
  /* Let top bar scroll away completely by making it normal flow */
  .site-top-bar { position: relative; }
}


/* ==========================================
   CRO ENHANCEMENTS â€“ Ø§Ù„Ø§ØªØ­Ø§Ø¯ Ø§Ù„Ù…ØªÙ…ÙŠØ²
   ========================================== */

/* ===== COUNTDOWN TIMER (Top Bar) ===== */
.top-bar-countdown {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,166,70,0.15);
  border: 1px solid rgba(201,166,70,0.30);
  border-radius: var(--radius-full);
  padding: 3px 12px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold-300);
  white-space: nowrap;
  flex-shrink: 0;
}
.top-bar-countdown .cd-label {
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  font-size: 0.72rem;
}
.top-bar-countdown .cd-time {
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
  color: var(--gold-400);
  font-size: 0.83rem;
}
@keyframes cdPulse {
  0%,100% { opacity:1; }
  50%      { opacity:0.5; }
}
.cd-colon { animation: cdPulse 1s ease-in-out infinite; }

/* ===== HERO LOGO BADGE ===== */
.hero-logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  animation: heroLogoBounce 6s ease-in-out infinite;
}
@keyframes heroLogoBounce {
  0%,100% { transform: translateY(0) scale(1); filter: drop-shadow(0 0 16px rgba(201,166,70,0.5)); }
  50%     { transform: translateY(-8px) scale(1.04); filter: drop-shadow(0 0 32px rgba(201,166,70,0.8)); }
}
.hero-logo-badge img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(201,166,70,0.6));
}
@media (max-width: 768px) {
  .hero-logo-badge img { width: 78px; height: 78px; }
}


  /* Popup injected by JS */

  /* ===== SOCIAL PROOF TOAST ===== */
.sp-toast-container {
  position: fixed;
  bottom: 110px;
  right: 20px;
  z-index: 8888;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
@media (max-width: 600px) {
  .sp-toast-container {
    bottom: 90px;
    right: 10px;
    left: 10px;
  }
}
.sp-toast {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-right: 4px solid var(--green-700);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  max-width: 310px;
  width: 100%;
  pointer-events: auto;
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.5s var(--ease-out-expo), opacity 0.5s ease;
}
.sp-toast.show {
  transform: translateX(0);
  opacity: 1;
}
.sp-toast-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 900; font-size: 1rem;
  flex-shrink: 0;
}
.sp-toast-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gray-900);
}
.sp-toast-text span {
  font-size: 0.76rem;
  color: var(--gray-500);
}
.sp-toast-icon {
  font-size: 1.3rem;
  margin-right: auto;
  flex-shrink: 0;
}

/* ===== STICKY MOBILE BOTTOM BAR ===== */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: var(--green-950);
  border-top: 2px solid rgba(201,166,70,0.35);
  padding: 10px 14px;
  gap: 10px;
  box-shadow: 0 -6px 28px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
  .mobile-bottom-bar { display: flex; }
  /* Push floating buttons up so they don't overlap */
  .floating-buttons { bottom: 90px; }
  /* Add bottom padding so last section isn't hidden behind bar */
  body { padding-bottom: 70px; }
}
.mbb-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 6px;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  transition: all var(--transition-base);
}
.mbb-call {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  box-shadow: 0 4px 16px rgba(11,93,59,0.4);
}
.mbb-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  animation: mbbWaPulse 3s ease-in-out infinite;
}
@keyframes mbbWaPulse {
  0%,100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50%     { box-shadow: 0 4px 28px rgba(37,211,102,0.7); }
}

/* ===== PRICE SECTION ===== */
.price-section {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.price-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  cursor: default;
}
.price-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-700), var(--green-500));
  opacity: 0;
  transition: opacity var(--transition-base);
}
.price-card:hover {
  border-color: var(--green-700);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.price-card:hover::before { opacity: 1; }
.price-card.featured-price {
  border-color: var(--gold-500);
  background: linear-gradient(180deg, var(--gold-50) 0%, var(--white) 60%);
  box-shadow: 0 8px 40px rgba(201,166,70,0.25);
}
.price-card.featured-price::before {
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  opacity: 1;
}
.price-featured-badge {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-500);
  color: var(--green-950);
  font-size: 0.7rem;
  font-weight: 900;
  padding: 3px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.price-card-icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  background: var(--green-100);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-800);
  font-size: 1.8rem;
  transition: all var(--transition-base);
}
.price-card.featured-price .price-card-icon {
  background: rgba(201,166,70,0.15);
  color: var(--gold-600);
}
.price-card:hover .price-card-icon {
  background: var(--green-800);
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
}
.price-card.featured-price:hover .price-card-icon {
  background: var(--gold-500);
  color: var(--white);
}
.price-card-type {
  font-size: 1rem;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.price-card-range {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--green-800);
  margin-bottom: 4px;
  line-height: 1;
}
.price-card.featured-price .price-card-range { color: var(--gold-600); }
.price-card-unit {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-bottom: 18px;
}
.price-card-features {
  list-style: none;
  text-align: right;
  margin-bottom: 20px;
}
.price-card-features li {
  font-size: 0.83rem;
  color: var(--gray-600);
  padding: 5px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 7px;
}
.price-card-features li:last-child { border-bottom: none; }
.price-card-features li::before {
  content: 'âœ“';
  color: var(--green-700);
  font-weight: 900;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.price-card-cta {
  display: block;
  padding: 12px;
  background: var(--green-800);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 800;
  font-family: var(--font-primary);
  text-decoration: none;
  transition: all var(--transition-base);
}
.price-card-cta:hover {
  background: var(--green-700);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}
.price-card.featured-price .price-card-cta {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--green-950);
}
.price-card.featured-price .price-card-cta:hover {
  background: var(--gold-400);
  box-shadow: var(--shadow-gold);
}
.price-note {
  text-align: center;
  margin-top: 32px;
  color: var(--gray-500);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.price-note strong { color: var(--green-700); }

/* ===== TRUST SEALS SECTION ===== */
.trust-seals-section {
  padding: 56px 0;
  background: var(--green-950);
  position: relative;
  overflow: hidden;
}
.trust-seals-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,166,70,0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(11,93,59,0.3) 0%, transparent 55%);
}
.trust-seals-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}
.trust-seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 20px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(201,166,70,0.2);
  border-radius: var(--radius-lg);
  min-width: 120px;
  transition: all var(--transition-base);
  cursor: default;
}
.trust-seal:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(201,166,70,0.5);
  transform: translateY(-4px);
}
.trust-seal-icon {
  font-size: 2rem;
  line-height: 1;
  filter: saturate(0) brightness(1.5);
  transition: filter var(--transition-base);
}
.trust-seal:hover .trust-seal-icon { filter: none; }
.trust-seal-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold-400);
  line-height: 1;
}
.trust-seal-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  text-align: center;
  font-weight: 600;
  line-height: 1.4;
}
.trust-seals-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .trust-seals-divider { display: none; }
  .trust-seal { min-width: 90px; padding: 16px 14px; }
  .trust-seal-value { font-size: 1.2rem; }
}


/* ==========================================
   REAL PHOTOS INTEGRATION
   ========================================== */

/* ===== HERO BACKGROUND IMAGE ===== */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero.loaded .hero-bg-img { transform: scale(1); }
.hero-overlay { z-index: 1; }
.hero-particles { z-index: 2; }
.hero-content  { z-index: 3; }

/* ===== SERVICE CARD PHOTO ===== */
.service-card-photo {
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin: -24px -24px 20px;
  width: calc(100% + 48px);
  position: relative;
}
.service-card-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--white), transparent);
}
.service-card.featured .service-card-photo::after {
  background: linear-gradient(to top, var(--gold-50), transparent);
}
.service-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
  display: block;
}
.service-card:hover .service-card-photo img {
  transform: scale(1.06);
}

/* ===== WHY SECTION PHOTOS GRID ===== */
.why-photos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
  margin-bottom: 20px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.why-photo {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.why-photo:hover { transform: scale(1.03); }
.why-photo-main {
  grid-column: 1 / -1;
  height: 220px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
@media (max-width: 600px) {
  .why-photos-grid { grid-template-columns: 1fr; }
  .why-photo-main { height: 180px; border-radius: var(--radius-xl); }
  .why-photo { height: 130px; }
}



