/* ==============================================
   SHIVANG PEST CONTROL SERVICE — Main Stylesheet
   Premium Pest Control Design Theme
   Color Palette: Emerald Greens, Dark Charcoals, Clean Whites
   ============================================== */

/* ---- CSS Variables (Design Tokens) ---- */
:root {
  /* Primary Colors — Emerald/Forest Green */
  --primary-50:  #ecfdf5;
  --primary-100: #d1fae5;
  --primary-200: #a7f3d0;
  --primary-300: #6ee7b7;
  --primary-400: #34d399;
  --primary-500: #10b981;
  --primary-600: #059669;
  --primary-700: #047857;
  --primary-800: #065f46;
  --primary-900: #064e3b;

  /* Neutral / Dark */
  --dark-50:  #f8fafc;
  --dark-100: #f1f5f9;
  --dark-200: #e2e8f0;
  --dark-300: #cbd5e1;
  --dark-400: #94a3b8;
  --dark-500: #64748b;
  --dark-600: #475569;
  --dark-700: #334155;
  --dark-800: #1e293b;
  --dark-900: #0f172a;

  /* Accent */
  --accent-gold:    #f59e0b;
  --accent-orange:  #f97316;
  --accent-red:     #ef4444;

  /* WhatsApp */
  --whatsapp:       #25D366;
  --whatsapp-dark:  #128C7E;

  /* Backgrounds */
  --bg-light:       #f8faf9;
  --bg-white:       #ffffff;
  --bg-section-alt: #f0fdf4;

  /* Typography */
  --font-primary:   'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-pad:    80px 0;
  --container-max:  1200px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.1);
  --shadow-xl:   0 20px 60px rgba(0,0,0,.12);
  --shadow-green: 0 8px 30px rgba(5,150,105,.2);

  /* Radius */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 50%;

  /* Transitions */
  --transition-fast:   all .2s ease;
  --transition-normal: all .35s ease;
  --transition-slow:   all .5s cubic-bezier(.22,1,.36,1);
}

/* ---- Global Reset & Safety ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark-800);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-900);
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Section Padding ---- */
.section-padding {
  padding: var(--section-pad);
  position: relative;
}

/* ---- Section Header ---- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  background: var(--primary-50);
  color: var(--primary-700);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: .5px;
  text-transform: uppercase;
  border: 1px solid var(--primary-200);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 12px;
  color: var(--dark-900);
}

.text-accent {
  color: var(--primary-600);
  position: relative;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--dark-500);
  max-width: 560px;
  margin: 0 auto;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition-normal);
  white-space: nowrap;
  text-align: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.15), transparent);
  transform: translateX(-100%);
  transition: transform .5s ease;
}

.btn:hover::after {
  transform: translateX(100%);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  color: #fff;
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-700), var(--primary-800));
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(5,150,105,.3);
}

.btn-glow {
  animation: btnGlow 2s ease-in-out infinite alternate;
}

@keyframes btnGlow {
  0%   { box-shadow: 0 4px 20px rgba(5,150,105,.25); }
  100% { box-shadow: 0 8px 35px rgba(5,150,105,.45); }
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: #fff;
  box-shadow: 0 6px 20px rgba(37,211,102,.25);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37,211,102,.35);
}

.btn-outline {
  background: transparent;
  color: var(--primary-700);
  border: 2px solid var(--primary-300);
}

.btn-outline:hover {
  background: var(--primary-50);
  border-color: var(--primary-500);
  transform: translateY(-2px);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
  transition: var(--transition-normal);
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 16px rgba(6,78,59,.08);
  padding: 10px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
  flex-shrink: 1;
  min-width: 0;
}

.logo-icon {
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: .95rem;
  color: var(--primary-900);
  line-height: 1.15;
  letter-spacing: -.01em;
  max-width: 240px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.nav-link {
  padding: 8px 14px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--dark-600);
  border-radius: 8px;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-700);
  background: var(--primary-50);
}

.nav-cta {
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
  color: #fff !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: .85rem;
  margin-left: 6px;
  box-shadow: var(--shadow-green);
  white-space: nowrap;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--primary-700), var(--primary-900));
  transform: translateY(-1px);
}

/* Mobile Menu Backdrop Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  flex-shrink: 0;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary-800);
  border-radius: 4px;
  transition: var(--transition-normal);
}

.nav-toggle.active {
  background: var(--primary-100);
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scale(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 80px;
  background: linear-gradient(160deg, #ffffff 0%, #f0fdf4 25%, #ecfdf5 50%, #d1fae5 80%, #a7f3d0 100%);
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}

.hero-blob-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-300);
  top: -100px;
  right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}

.hero-blob-2 {
  width: 300px;
  height: 300px;
  background: var(--primary-400);
  bottom: -50px;
  left: -80px;
  animation: blobFloat 10s ease-in-out infinite reverse;
}

.hero-blob-3 {
  width: 200px;
  height: 200px;
  background: rgba(245,158,11,.2);
  top: 40%;
  left: 50%;
  animation: blobFloat 12s ease-in-out infinite;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(30px,-20px) scale(1.05); }
  66%      { transform: translate(-20px,15px) scale(.95); }
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary-800);
  margin-bottom: 16px;
  border: 1px solid var(--primary-200);
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: 16px;
  color: var(--dark-900);
  line-height: 1.15;
}

.hero-highlight {
  color: var(--primary-600);
  position: relative;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--primary-200);
  border-radius: 4px;
  z-index: -1;
  opacity: .6;
}

.hero-subtitle {
  font-size: .95rem;
  color: var(--dark-600);
  margin-bottom: 24px;
  max-width: 520px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--dark-600);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero-shield-svg {
  width: 100%;
  height: auto;
  animation: shieldFloat 6s ease-in-out infinite;
}

@keyframes shieldFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.shield-check {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: checkDraw 1.5s ease-out 1s forwards;
}

@keyframes checkDraw {
  to { stroke-dashoffset: 0; }
}

/* Floating badges */
.hero-image-wrapper {
  overflow: visible;
}

.hero-float-badge {
  position: absolute;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--dark-800);
  box-shadow: 0 4px 20px rgba(6,78,59,.1);
  border: 1px solid rgba(5,150,105,.12);
  white-space: nowrap;
}

.badge-icon {
  font-size: 1.1rem;
}

.badge-1 {
  top: 8%;
  right: 2%;
  animation: floatBadge 4s ease-in-out infinite;
}

.badge-2 {
  bottom: 28%;
  left: 2%;
  animation: floatBadge 5s ease-in-out infinite .5s;
}

.badge-3 {
  bottom: 8%;
  right: 8%;
  animation: floatBadge 4.5s ease-in-out infinite 1s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* Hero curve */
.hero-curve {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.hero-curve svg {
  width: 100%;
  height: 80px;
}

/* ========== ABOUT SECTION ========== */
.about {
  background: var(--bg-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.about-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-illustration svg {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
}

.about-badge-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.about-exp-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-exp-badge strong {
  font-size: 1.8rem;
  font-family: var(--font-primary);
  line-height: 1;
}

.about-exp-badge small {
  font-size: .75rem;
  opacity: .9;
  margin-top: 2px;
}

.about-content .section-tag {
  margin-bottom: 8px;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.about-text {
  color: var(--dark-600);
  margin-bottom: 16px;
  font-size: .98rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--dark-700);
  padding: 10px 14px;
  background: var(--primary-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--primary-100);
}

.highlight-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ---- Animated Counters ---- */
.counters-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.counter-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--primary-100);
  transition: var(--transition-normal);
}

.counter-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.counter-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.counter-number {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-700);
  line-height: 1.1;
}

.counter-number::after {
  content: '+';
}

.counter-label {
  font-size: .85rem;
  color: var(--dark-500);
  margin-top: 4px;
  font-weight: 500;
}

/* ========== SERVICES SECTION ========== */
.services {
  background: var(--bg-white);
  position: relative;
}

.services-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, var(--primary-50) 0%, transparent 50%),
                     radial-gradient(circle at 80% 20%, var(--primary-50) 0%, transparent 50%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--dark-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-200);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--primary-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: var(--transition-normal);
}

.service-card:hover .service-icon-wrap {
  background: var(--primary-100);
  transform: scale(1.05);
}

.service-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--dark-900);
}

.service-desc {
  font-size: .88rem;
  color: var(--dark-500);
  line-height: 1.65;
}

.services-cta {
  text-align: center;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.services-cta p {
  font-size: 1.05rem;
  color: var(--dark-600);
  margin-bottom: 16px;
}

/* ========== WHY CHOOSE US ========== */
.why-us {
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--bg-white);
  border: 1px solid var(--dark-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(0deg, var(--primary-50) 0%, transparent 100%);
  transition: height .4s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-200);
}

.why-card:hover::after {
  height: 60%;
}

.why-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.why-card p {
  font-size: .88rem;
  color: var(--dark-500);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ========== PROCESS SECTION ========== */
.process {
  background: linear-gradient(135deg, var(--primary-900), var(--primary-800));
  color: #fff;
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(16,185,129,.15);
  border-radius: 50%;
  filter: blur(80px);
}

.process .section-tag {
  background: rgba(255,255,255,.1);
  color: var(--primary-200);
  border-color: rgba(255,255,255,.15);
}

.process .section-title {
  color: #fff;
}

.process .text-accent {
  color: var(--primary-300);
}

.process .section-subtitle {
  color: rgba(255,255,255,.7);
}

.process-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.process-line {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,.15);
}

.process-step {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary-500), var(--primary-400));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(16,185,129,.3);
}

.step-content {
  padding-top: 8px;
}

.step-content h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.step-content p {
  color: rgba(255,255,255,.7);
  font-size: .92rem;
  line-height: 1.6;
}

.process-cta {
  text-align: center;
  margin-top: 48px;
}

.process-cta .btn-primary {
  background: linear-gradient(135deg, var(--primary-400), var(--primary-300));
  color: var(--primary-900);
}

.process-cta .btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-300), var(--primary-200));
}

/* ========== GALLERY SECTION ========== */
.gallery {
  background: var(--bg-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.gallery-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px dashed var(--primary-200);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.gallery-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(5,150,105,.08));
  opacity: 0;
  transition: opacity .3s ease;
}

.gallery-placeholder:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-300);
}

.gallery-placeholder:hover::before {
  opacity: 1;
}

.gallery-icon {
  font-size: 2.5rem;
}

.gallery-placeholder span {
  font-weight: 600;
  font-size: .9rem;
  color: var(--primary-700);
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
  background: var(--bg-section-alt);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--dark-200);
  transition: var(--transition-normal);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  color: var(--primary-100);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: .92rem;
  color: var(--dark-600);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: .92rem;
  color: var(--dark-800);
}

.testimonial-author span {
  font-size: .8rem;
  color: var(--dark-400);
}

/* ========== LOCATION SECTION ========== */
.location {
  background: var(--bg-white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.location-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.location-map-placeholder {
  background: linear-gradient(135deg, var(--primary-50), #d1fae5);
  padding: 60px 32px;
  text-align: center;
  border-radius: var(--radius-xl);
  border: 1px solid var(--primary-200);
  margin-bottom: 16px;
}

.map-pin-animation {
  margin-bottom: 20px;
  animation: pinBounce 2s ease-in-out infinite;
}

@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.location-map-placeholder h3 {
  font-size: 1.15rem;
  color: var(--primary-800);
  margin-bottom: 8px;
}

.location-map-placeholder p {
  color: var(--dark-500);
  font-size: .92rem;
}

.location-info {
  padding: 20px 0;
}

.location-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--dark-200);
}

.loc-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.location-detail strong {
  display: block;
  font-size: .88rem;
  color: var(--dark-800);
  margin-bottom: 2px;
}

.location-detail p {
  font-size: .88rem;
  color: var(--dark-500);
}

.location-detail a {
  color: var(--primary-600);
  font-weight: 500;
}

.location-detail a:hover {
  color: var(--primary-800);
}

.service-areas {
  margin-top: 24px;
}

.service-areas h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--dark-800);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--primary-50);
  color: var(--primary-700);
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 500;
  border: 1px solid var(--primary-200);
  transition: var(--transition-fast);
}

.area-tag:hover {
  background: var(--primary-100);
}

/* ========== CONTACT SECTION ========== */
.contact {
  background: var(--bg-section-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--dark-200);
}

.contact-info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--dark-900);
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  border: 1px solid var(--dark-200);
  background: var(--bg-light);
}

.contact-btn:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.contact-btn strong {
  display: block;
  font-size: .92rem;
}

.contact-btn span {
  font-size: .82rem;
  color: var(--dark-400);
}

.contact-call:hover {
  border-color: var(--primary-300);
  background: var(--primary-50);
}

.contact-call svg {
  color: var(--primary-600);
}

.contact-wa:hover {
  border-color: #25D366;
  background: #f0fdf4;
}

.contact-wa svg {
  color: var(--whatsapp);
}

.contact-dir:hover {
  border-color: #3b82f6;
  background: #eff6ff;
}

.contact-dir svg {
  color: #3b82f6;
}

.contact-fb:hover {
  border-color: #1877F2;
  background: #eff6ff;
}

.contact-fb svg {
  color: #1877F2;
}

.contact-ig:hover {
  border-color: #E4405F;
  background: #fff1f2;
}

.contact-ig svg {
  color: #E4405F;
}

.contact-address {
  padding-top: 12px;
  border-top: 1px solid var(--dark-200);
}

.contact-address p {
  font-size: .92rem;
  color: var(--dark-600);
}

/* Contact Form */
.contact-form-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--dark-200);
}

.contact-form-card h3 {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: var(--dark-900);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--dark-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--dark-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--dark-800);
  background: var(--bg-light);
  transition: var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-400);
  box-shadow: 0 0 0 3px rgba(16,185,129,.1);
  background: var(--bg-white);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--dark-900);
  color: var(--dark-300);
  padding: 60px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  color: var(--dark-400);
}

.footer h4 {
  color: #fff;
  font-size: .95rem;
  margin-bottom: 16px;
}

.footer-links li,
.footer-services li {
  margin-bottom: 10px;
  font-size: .88rem;
}

.footer-links a:hover {
  color: var(--primary-400);
}

.footer-contact p {
  font-size: .88rem;
  margin-bottom: 8px;
}

.footer-contact a {
  color: var(--primary-400);
}

.footer-contact a:hover {
  color: var(--primary-300);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: .82rem;
  color: var(--dark-500);
}

/* ========== STICKY MOBILE CTA ========== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: var(--bg-white);
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  padding: 8px 12px;
  padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
}

.sticky-cta {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.sticky-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 6px;
  border-radius: var(--radius-sm);
  font-size: .72rem;
  font-weight: 600;
  text-align: center;
  transition: var(--transition-fast);
}

.sticky-call {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  color: #fff;
}

.sticky-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: #fff;
}

.sticky-direction {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
}

.sticky-btn:hover {
  transform: scale(1.03);
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}

.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translate(0,0);
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablets & Small Desktops */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  :root {
    --section-pad: 56px 0;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Nav — Premium Compact Header */
  .navbar {
    padding: 10px 0;
  }

  .navbar.scrolled {
    padding: 8px 0;
  }

  .nav-logo {
    flex-shrink: 0;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .logo-icon svg {
    width: 30px;
    height: 30px;
  }

  .logo-text {
    font-size: .82rem;
    max-width: 180px;
    line-height: 1.15;
    -webkit-line-clamp: 2;
  }

  .nav-menu {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: 78%;
    max-width: 300px;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-white);
    flex-direction: column;
    align-items: stretch;
    padding: 90px 24px 32px;
    box-shadow: -10px 0 40px rgba(15, 23, 42, 0.08);
    z-index: 1000;
    gap: 8px;
    overflow-y: auto;
    border-left: 1px solid var(--dark-200);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 12px 18px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-700);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--primary-700);
    background: var(--primary-50);
  }

  .nav-cta {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-top: 16px;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
    color: #fff !important;
  }

  /* Hero — Mobile Optimized */
  .hero {
    padding-top: 72px;
    padding-bottom: 60px;
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .hero-content {
    order: 0;
  }

  .hero-visual {
    order: 1;
  }

  .hero-image-wrapper {
    max-width: 220px;
    margin: 0 auto;
    overflow: visible;
  }

  .hero-title {
    font-size: 1.65rem;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .hero-badge {
    font-size: .75rem;
    padding: 5px 14px;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: .88rem;
    line-height: 1.55;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }

  .hero-actions {
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
  }

  .hero-trust-strip {
    justify-content: center;
    gap: 14px;
  }

  .trust-item {
    font-size: .78rem;
  }

  .hero-float-badge {
    font-size: .68rem;
    padding: 6px 10px;
    gap: 5px;
  }

  .badge-icon {
    font-size: .95rem;
  }

  .badge-1 { right: 2px; top: 2%; }
  .badge-2 { left: 2px; bottom: 22%; }
  .badge-3 { right: 2px; bottom: 2%; }

  .hero-blob-1 {
    width: 180px;
    height: 180px;
    right: -60px;
    top: -60px;
  }

  .hero-blob-2 {
    width: 140px;
    height: 140px;
    left: -40px;
  }

  .hero-blob-3 {
    width: 80px;
    height: 80px;
  }

  .hero-curve svg {
    height: 50px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-content .section-title {
    text-align: center;
  }

  .about-content .section-tag {
    text-align: center;
    display: block;
  }

  .about-content .btn {
    display: flex;
    width: 100%;
    justify-content: center;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .counters-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 24px 20px;
  }

  /* Why Us */
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-card {
    padding: 28px 22px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  /* Location */
  .location-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 24px 18px;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer {
    padding-bottom: 80px;
  }

  /* Show sticky CTA on mobile */
  .sticky-cta {
    display: grid;
  }

  /* Section headers */
  .section-header {
    margin-bottom: 36px;
  }

  .section-subtitle {
    font-size: .92rem;
  }

  /* Form fields */
  input,
  select,
  textarea,
  button {
    width: 100%;
    max-width: 100%;
  }

  /* Overflow protection */
  .hero,
  .hero-content,
  .contact-info-card,
  .contact-form-card {
    max-width: 100%;
  }

  .hero-bg-shapes,
  .services-bg-pattern {
    overflow: hidden;
  }

  section {
    overflow: hidden;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.55rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: .88rem;
  }

  .hero-float-badge {
    font-size: .65rem;
    padding: 5px 8px;
    gap: 4px;
  }

  .badge-icon {
    font-size: .85rem;
  }

  .badge-1 { right: 0; top: 0; }
  .badge-2 { left: 0; }
  .badge-3 { right: 0; }

  .hero-image-wrapper {
    max-width: 190px;
  }

  .counter-card {
    padding: 20px 10px;
  }

  .counter-number {
    font-size: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr !important;
  }

  .section-title {
    font-size: 1.35rem;
  }

  .btn {
    padding: 11px 20px;
    font-size: .85rem;
  }

  .step-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 1rem;
  }

  .process-line {
    left: 21px;
  }

  .process-step {
    gap: 14px;
  }

  .location-map-placeholder {
    padding: 32px 16px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 20px 16px;
  }

  .contact-btn {
    padding: 12px 14px;
    gap: 10px;
  }
}

/* Ultra-small screens (360px and below) */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.4rem;
  }

  .hero-subtitle {
    font-size: .84rem;
  }

  .hero-image-wrapper {
    max-width: 170px;
  }

  .logo-text {
    font-size: .78rem;
    max-width: 155px;
  }

  .trust-item {
    font-size: .75rem;
  }

  .trust-item svg {
    width: 14px;
    height: 14px;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .counters-row {
    gap: 8px;
  }

  .counter-card {
    padding: 16px 8px;
  }

  .counter-number {
    font-size: 1.35rem;
  }

  .counter-label {
    font-size: .78rem;
  }
}

/* 320px safety */
@media (max-width: 320px) {
  .hero-title {
    font-size: 1.3rem;
  }

  .logo-text {
    font-size: .75rem;
    max-width: 140px;
  }

  .hero-image-wrapper {
    max-width: 150px;
  }

  .hero-float-badge {
    display: none;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .nav-toggle span {
    width: 18px;
  }
}

/* Fix for safe area (notch phones) */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .sticky-cta {
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
  }

  .footer {
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
  }
}

/* ========== PRINT STYLES ========== */
@media print {
  .navbar,
  .sticky-cta,
  .hero-bg-shapes,
  .hero-curve {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero {
    background: #fff;
    min-height: auto;
    padding: 20px 0;
  }

  .section-padding {
    padding: 20px 0;
  }
}
