/* ================================================
   GATI XPRESS PACKERS & MOVERS - PREMIUM STYLES
   Color: Dark Green #005c3b | Gold #b8860b
   ================================================ */

/* ---- CSS Variables ---- */
:root {
  --green: #005c3b;
  --green-dark: #003d28;
  --green-light: #007a50;
  --gold: #b8860b;
  --gold-light: #d4a017;
  --gold-dark: #8b6508;
  --white: #ffffff;
  --off-white: #f8faf9;
  --light-gray: #f2f4f3;
  --gray: #6b7280;
  --dark: #1a1a2e;
  --text: #2d3748;
  --border: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(0,92,59,0.08);
  --shadow-md: 0 8px 32px rgba(0,92,59,0.12);
  --shadow-lg: 0 20px 60px rgba(0,92,59,0.18);
  --shadow-gold: 0 8px 32px rgba(184,134,11,0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --font-main: 'Inter', 'Segoe UI', sans-serif;
  --font-heading: 'Poppins', 'Segoe UI', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }
input, textarea, select { font-family: inherit; outline: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.3; color: var(--dark); }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light-gray); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 10px; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(0,92,59,0.1), rgba(184,134,11,0.1));
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(0,92,59,0.2);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-title span { color: var(--gold); }
.section-title .green { color: var(--green); }

.section-desc {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 48px;
}

.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto 48px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
  letter-spacing: 0.3px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: rgba(255,255,255,0.15);
  transition: left 0.4s ease;
}
.btn:hover::before { left: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,92,59,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,92,59,0.45);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(184,134,11,0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.8);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green);
  transform: translateY(-2px);
}

.btn-outline-green {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline-green:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }

/* ---- Grid ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 28px; }

/* ---- Image Placeholder ---- */
.img-placeholder {
  background: linear-gradient(135deg, #e8f5ef 0%, #f0e8d0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px dashed rgba(0,92,59,0.25);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.img-placeholder i { font-size: 2.5rem; opacity: 0.5; }
.img-placeholder span { opacity: 0.6; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar a {
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.top-bar a:hover { color: var(--gold-light); }
.top-bar i { color: var(--gold-light); font-size: 0.75rem; }
.top-bar .social-links { display: flex; gap: 10px; }
.top-bar .social-links a {
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  transition: var(--transition);
}
.top-bar .social-links a:hover { background: var(--gold); color: white; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.header.scrolled {
  box-shadow: 0 4px 30px rgba(0,92,59,0.15);
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}

/* ---- Logo ---- */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-main {
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.logo-gati {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  font-style: italic;
  color: var(--green);
  letter-spacing: -1px;
}
.logo-xpress {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  font-style: italic;
  color: var(--gold);
  letter-spacing: -1px;
}
.logo-sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-top: 1px;
  padding-left: 2px;
}

/* ---- Nav Menu ---- */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link i { font-size: 0.65rem; transition: var(--transition); }
.nav-link:hover, .nav-link.active {
  color: var(--green);
  background: rgba(0,92,59,0.06);
}
.nav-link:hover i { transform: rotate(180deg); }

/* ---- Dropdown ---- */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,92,59,0.18);
  border: 1px solid var(--border);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 999;
  padding: 8px;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.dropdown a i { color: var(--green); width: 16px; }
.dropdown a:hover { background: var(--light-gray); color: var(--green); }

/* ---- Nav CTA ---- */
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--green);
  font-size: 0.9rem;
}
.nav-phone i { color: var(--gold); }

/* ---- Hamburger ---- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2.5px;
  background: var(--green);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Mobile Menu ---- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 9999;
}
.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}
.mobile-menu-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(360px, 90vw);
  height: 100%;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, var(--green), var(--green-light));
}
.mobile-close {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.2);
  border: none; border-radius: 50%;
  color: white;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.mobile-close:hover { background: rgba(255,255,255,0.35); }
.mobile-nav-list { padding: 16px; }
.mobile-nav-item { border-bottom: 1px solid var(--border); }
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 12px;
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
  transition: var(--transition);
}
.mobile-nav-link:hover { color: var(--green); }
.mobile-submenu { display: none; padding: 0 0 8px 16px; }
.mobile-submenu a {
  display: block;
  padding: 8px 12px;
  font-size: 0.85rem;
  color: var(--gray);
  transition: var(--transition);
}
.mobile-submenu a:hover { color: var(--green); }
.mobile-nav-contact {
  padding: 20px 24px;
  background: var(--light-gray);
  margin: 12px;
  border-radius: var(--radius-md);
}
.mobile-nav-contact p { font-size: 0.78rem; color: var(--gray); margin-bottom: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.mobile-nav-contact .btn { width: 100%; justify-content: center; margin-bottom: 10px; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 40%, #006b47 70%, #004d35 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg .img-placeholder {
  position: absolute;
  inset: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  opacity: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,39,26,0.92) 0%, rgba(0,92,59,0.75) 50%, rgba(0,60,40,0.88) 100%);
  z-index: 1;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(184,134,11,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  width: 100%;
}
.hero-left { color: var(--white); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,134,11,0.2);
  border: 1px solid rgba(184,134,11,0.4);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}
.hero-badge i { font-size: 0.75rem; }
.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 22px;
  color: var(--white);
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat .num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---- Hero Quote Form ---- */
.hero-form-wrap {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero-form-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.hero-form-sub {
  font-size: 0.82rem;
  color: var(--gold-light);
  margin-bottom: 24px;
  font-weight: 600;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-light);
  background: rgba(255,255,255,0.18);
  box-shadow: 0 0 0 3px rgba(184,134,11,0.2);
}
.form-group select option { background: var(--dark); color: var(--white); }
.form-submit { width: 100%; padding: 15px; font-size: 1rem; border-radius: var(--radius-sm); }

/* ---- Scroll Indicator ---- */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5px;
}
.scroll-wheel {
  width: 3px; height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 18px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 0.88rem;
  font-weight: 700;
}
.trust-item i { font-size: 1.1rem; opacity: 0.9; }
.trust-divider {
  width: 1px; height: 24px;
  background: rgba(255,255,255,0.4);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-main-img {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.about-float-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  min-width: 180px;
}
.about-float-card .num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.about-float-card .txt {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.about-float-card2 {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--green);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: 0 8px 30px rgba(0,92,59,0.35);
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-float-card2 i { color: var(--gold-light); font-size: 1.4rem; }
.about-float-card2 .info .num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: block;
}
.about-float-card2 .info .txt {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}
.about-feature i { color: var(--green); font-size: 1rem; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 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 var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,92,59,0.2);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover::after { transform: scaleX(1); }
.service-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.service-img .img-placeholder { height: 100%; border-radius: 0; border: none; }
.service-icon-wrap {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,92,59,0.4);
  z-index: 2;
}
.service-icon-wrap i { color: var(--white); font-size: 1.3rem; }
.service-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-body p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 18px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  transition: var(--transition);
}
.service-link i { transition: var(--transition); }
.service-card:hover .service-link i { transform: translateX(4px); }
.service-link:hover { color: var(--gold); }

/* ============================================================
   STATS / COUNTER SECTION
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--green-dark) 100%);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0L80 12v2L54 40h-2zm4 0L80 16v2L58 40h-2zm4 0L80 20v2L62 40h-2zm4 0L80 24v2L66 40h-2zm4 0L80 28v2L70 40h-2zm4 0L80 32v2L74 40h-2zm4 0L80 36v2L78 40h-2zm4 0L80 40h-2zm-2 0h2v-2L78 40zm-4 0h2v-4L74 40zm-4 0h2v-6L70 40zm-4 0h2v-8L66 40zm-4 0h2v-10L62 40zm-4 0h2v-12L58 40zm-4 0h2v-14L54 40zm-4 0h2v-16L50 40zm-4 0h2v-18L46 40zm-4 0h2v-20L42 40z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  color: var(--white);
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.stat-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.stat-item .icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 6px 20px rgba(184,134,11,0.4);
}
.stat-item .icon i { color: white; font-size: 1.5rem; }
.stat-item .count {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item .count .plus { color: var(--gold-light); font-size: 1.8rem; }
.stat-item .stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.why-features { display: flex; flex-direction: column; gap: 22px; }
.why-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 1px solid transparent;
}
.why-feature:hover {
  background: var(--off-white);
  border-color: var(--border);
  transform: translateX(6px);
}
.why-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,92,59,0.3);
  transition: var(--transition);
}
.why-feature:hover .why-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: var(--shadow-gold);
}
.why-icon i { color: var(--white); font-size: 1.2rem; }
.why-text h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}
.why-text p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }
.why-img { position: relative; }
.why-main-img {
  width: 100%;
  height: 500px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.why-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: white;
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 16px;
}
.why-badge-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-badge-icon i { color: white; font-size: 1.3rem; }
.why-badge-text strong {
  display: block;
  font-size: 1rem;
  color: var(--dark);
  font-weight: 800;
}
.why-badge-text span {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section { background: var(--off-white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--green));
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 76px; height: 76px;
  background: var(--white);
  border: 3px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step-circle:hover { background: var(--green); border-color: var(--green); }
.step-circle i { color: var(--green); font-size: 1.4rem; transition: var(--transition); }
.step-circle:hover i { color: var(--white); }
.step-num {
  position: absolute;
  top: -5px; right: -5px;
  width: 22px; height: 22px;
  background: var(--gold);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.process-step h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}
.process-step p { font-size: 0.78rem; color: var(--gray); line-height: 1.5; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(0,92,59,0.15);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 5rem;
  color: rgba(0,92,59,0.07);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testimonial-stars i { color: var(--gold); font-size: 0.9rem; }
.testimonial-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.author-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}
.author-info span {
  font-size: 0.78rem;
  color: var(--gray);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--off-white); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(0,92,59,0.2); box-shadow: var(--shadow-sm); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  transition: var(--transition);
  user-select: none;
}
.faq-question:hover { color: var(--green); }
.faq-item.open .faq-question { color: var(--green); }
.faq-icon {
  width: 28px; height: 28px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--green);
  transition: var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--green);
  color: white;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 22px 18px;
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.7;
}
.faq-img { position: relative; }
.faq-img .img-placeholder { height: 400px; border-radius: var(--radius-xl); }

/* ============================================================
   GOOGLE REVIEWS
   ============================================================ */
.reviews-section { background: var(--white); }
.google-rating-bar {
  background: linear-gradient(135deg, var(--off-white), #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.rating-big .score {
  font-size: 5rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}
.rating-big .stars {
  display: flex;
  gap: 4px;
  margin: 8px 0;
}
.rating-big .stars i { color: var(--gold); font-size: 1.3rem; }
.rating-big .count { font-size: 0.85rem; color: var(--gray); font-weight: 600; }
.rating-bars { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 600;
}
.rating-bar-track {
  flex: 1;
  height: 8px;
  background: var(--light-gray);
  border-radius: 10px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  transition: width 1s ease;
}
.rating-bar-row span:last-child { width: 32px; text-align: right; }
.google-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  min-width: 120px;
}
.google-badge i { color: #4285F4; font-size: 2.5rem; }
.google-badge span { font-size: 0.75rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(0,92,59,0.35) 0%, transparent 60%),
              radial-gradient(circle at 70% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  max-width: 500px;
}
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-white {
  background: var(--white);
  color: var(--gold-dark);
  font-weight: 800;
}
.btn-white:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.8);
  color: var(--white);
  font-weight: 700;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.contact-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(0,92,59,0.2);
  transform: translateX(4px);
}
.contact-card-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon i { color: var(--white); font-size: 1.2rem; }
.contact-card-info h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.contact-card-info a, .contact-card-info p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}
.contact-card-info a:hover { color: var(--green); }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}
.contact-form-sub {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 28px;
}
.form-group-light input,
.form-group-light select,
.form-group-light textarea {
  padding: 13px 16px;
  background: var(--light-gray);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.9rem;
  width: 100%;
  transition: var(--transition);
}
.form-group-light label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: block;
}
.form-group-light input:focus,
.form-group-light select:focus,
.form-group-light textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0,92,59,0.08);
}
.form-group-light { margin-bottom: 18px; }
.form-row-light { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================================
   MAP PLACEHOLDER
   ============================================================ */
.map-section { padding: 0; }
.map-placeholder {
  height: 360px;
  background: linear-gradient(135deg, #e8f5ef 0%, #f0e8d0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  border-top: 4px solid var(--green);
}
.map-placeholder i { font-size: 3rem; color: var(--green); opacity: 0.5; }
.map-placeholder p { font-size: 1rem; color: var(--green); font-weight: 600; opacity: 0.7; }

/* ============================================================
   CITIES SECTION
   ============================================================ */
.cities-section { background: var(--white); }
.cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.city-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
  text-decoration: none;
}
.city-chip i { color: var(--green); font-size: 0.75rem; }
.city-chip:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,92,59,0.25);
}
.city-chip:hover i { color: var(--gold-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(180deg, #001f14 0%, #000d09 100%);
  color: rgba(255,255,255,0.75);
  padding-top: 70px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .footer-logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 22px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: white; transform: translateY(-2px); }
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-light);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(184,134,11,0.25);
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
}
.footer-col ul li a i { font-size: 0.65rem; color: var(--gold); opacity: 0.7; }
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item i { color: var(--gold); margin-top: 2px; font-size: 0.9rem; flex-shrink: 0; }
.footer-contact-item a, .footer-contact-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-cert {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.cert-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 7px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 5px;
}
.cert-badge i { color: var(--gold); }
.footer-middle {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.seo-links-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.seo-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  padding: 4px 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}
.seo-links a:hover { color: var(--gold-light); background: rgba(184,134,11,0.1); border-color: rgba(184,134,11,0.2); }
.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom p a { color: var(--gold); }
.footer-bottom p a:hover { color: var(--gold-light); }
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--gold-light); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-btns {
  position: fixed;
  bottom: 30px;
  right: 24px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  white-space: nowrap;
}
.float-btn i { font-size: 1.1rem; }
.float-whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.float-call { background: linear-gradient(135deg, var(--green), var(--green-light)); }
.float-btn:hover { transform: translateX(-4px) scale(1.05); }
.float-label { font-size: 0.8rem; }

/* ============================================================
   LEAD POPUP
   ============================================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.popup-overlay.show { opacity: 1; visibility: visible; }
.popup-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  transform: scale(0.9) translateY(20px);
  transition: var(--transition);
  position: relative;
}
.popup-overlay.show .popup-box { transform: scale(1) translateY(0); }
.popup-header {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  padding: 32px 36px 28px;
  text-align: center;
  color: white;
}
.popup-header h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 6px; }
.popup-header p { font-size: 0.88rem; opacity: 0.85; }
.popup-body { padding: 28px 32px 32px; }
.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.2);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.popup-close:hover { background: rgba(255,255,255,0.35); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-bar {
  background: var(--off-white);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
}
.breadcrumb a { color: var(--green); font-weight: 600; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gray); }
.breadcrumb .current { color: var(--gray); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 70px 0 60px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; margin-bottom: 12px; color: white; }
.page-hero p { font-size: 1rem; opacity: 0.85; max-width: 580px; margin: 0 auto; }
.page-hero .gold-text { color: var(--gold-light); }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-img { height: 200px; overflow: hidden; }
.blog-img .img-placeholder { height: 100%; border-radius: 0; border: none; }
.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
}
.blog-tag {
  display: inline-block;
  background: rgba(0,92,59,0.08);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-date {
  font-size: 0.78rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 4px;
}
.blog-date i { font-size: 0.7rem; }
.blog-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
  flex: 1;
}
.blog-body h3 a:hover { color: var(--green); }
.blog-body p { font-size: 0.84rem; color: var(--gray); margin-bottom: 18px; line-height: 1.6; }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
  margin-top: auto;
}
.blog-read-more i { transition: var(--transition); }
.blog-card:hover .blog-read-more i { transform: translateX(4px); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.animate-fadeup { animation: fadeInUp 0.7s ease forwards; }
.animate-left { animation: fadeInLeft 0.7s ease forwards; }
.animate-right { animation: fadeInRight 0.7s ease forwards; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   MEDIA QUERIES
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 900px) {
  .nav-menu, .nav-cta .btn-primary { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-form-wrap { max-width: 500px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-float-card { right: 0; bottom: -15px; }
  .about-float-card2 { left: 0; top: 20px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-img { order: -1; }
  .why-main-img { height: 350px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-img { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .google-rating-bar { flex-direction: column; gap: 24px; }
}

@media (max-width: 640px) {
  .section-pad { padding: 60px 0; }
  .hero { min-height: auto; padding: 30px 0 60px; }
  .hero-content { padding: 30px 0; }
  .hero-title { font-size: 2rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-row-light { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .float-btn .float-label { display: none; }
  .float-btn { padding: 14px; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
  .top-bar .top-bar-left { display: none; }
  .logo-gati, .logo-xpress { font-size: 1.6rem; }
  .hero-form-wrap { padding: 24px; }
  .contact-form-wrap { padding: 24px; }
}

@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .header, .floating-btns, .popup-overlay, .top-bar { display: none !important; }
}
