/* =============================================
   PESTIDO PEST CONTROL SERVICES
   Production Optimized Stylesheet
   ============================================= */

:root {
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-300: #86efac;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;

  --dark-900: #0a0f0a;
  --dark-800: #111811;
  --dark-700: #1a261a;

  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;

  --white: #ffffff;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;

  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Poppins', system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1200px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

button, input, select, textarea {
  font: inherit;
}

/* Focus states & Skip Link for Accessibility */
:focus-visible {
  outline: 3px solid var(--green-400);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -120px;
  left: 16px;
  background: var(--green-600);
  color: var(--white);
  padding: 12px 22px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  z-index: 99999;
  transition: top 0.2s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
  outline: 3px solid var(--green-200);
}

/* Accessible touch targets */
button, a.btn, .nav-cta, .nav-link, .service-cta, .mobile-bar-btn {
  min-height: 44px;
}

/* === Layout Container === */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

/* === Buttons System === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--green-600);
  color: var(--white);
  border-color: var(--green-600);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--green-700);
  border-color: var(--green-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.35);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}
.btn-whatsapp:hover, .btn-whatsapp:focus-visible {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--green-700);
  border-color: var(--white);
  font-weight: 700;
}
.btn-white:hover, .btn-white:focus-visible {
  background: var(--green-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-whatsapp-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-whatsapp-outline:hover, .btn-whatsapp-outline:focus-visible {
  background: var(--whatsapp);
  border-color: var(--whatsapp);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* === Typography & Section Headers === */
.section-header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 60px);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-50);
  border: 1px solid var(--green-200);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-title.left {
  text-align: left;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.6;
}

/* === HEADER & NAVIGATION === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(10, 15, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(10, 15, 10, 0.98);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

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

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1;
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--green-400);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
}

.nav-link:hover, .nav-link:focus-visible, .nav-link.active {
  color: var(--green-400) !important;
  background: rgba(255,255,255,0.08);
}

.nav-cta {
  background: var(--green-600);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  margin-left: 8px;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
}

.nav-cta:hover, .nav-cta:focus-visible {
  background: var(--green-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(22,163,74,0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  animation: hero-zoom 8s ease-out forwards;
}

@keyframes hero-zoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,15,10,0.84) 0%, rgba(21,128,61,0.48) 50%, rgba(10,15,10,0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding-block: clamp(60px, 10vw, 120px);
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--green-400), #86efac);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 40px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 16px 28px;
  border-radius: var(--radius-lg);
  width: fit-content;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--green-400);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  text-align: center;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

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

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-dot {
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  animation: scroll-bounce 1.8s ease-in-out infinite;
  opacity: 0.7;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

/* === MARQUEE STRIP === */
.marquee-strip {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  color: var(--green-100);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* === SERVICES SECTION === */
.services {
  padding-block: clamp(64px, 8vw, 112px);
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.service-card:hover, .service-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--green-200);
}

.service-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--gray-100);
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img {
  transform: scale(1.06);
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.35));
}

.service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  line-height: 1;
}

.service-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.service-cta {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--green-600);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  transition: color var(--transition), transform var(--transition);
}

.service-cta:hover {
  color: var(--green-800);
  transform: translateX(4px);
}

.services-more-strip {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 0.88rem;
  color: var(--gray-600);
}

.services-more-strip strong {
  color: var(--green-700);
}

/* === ABOUT SECTION === */
.about {
  padding-block: clamp(64px, 8vw, 112px);
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

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

.about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--green-600);
  color: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 3px solid var(--white);
}

.badge-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}

.badge-text {
  font-size: 0.75rem;
  opacity: 0.9;
  line-height: 1.2;
}

.about-badge-float2 {
  position: absolute;
  top: 20px;
  left: -16px;
  background: rgba(10, 15, 10, 0.9);
  color: var(--green-300);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(74, 222, 128, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.about-text {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.about-highlights li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

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

.about-highlights strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gray-900);
}

.about-highlights p {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.4;
}

/* === WHY CHOOSE US === */
.why-us {
  padding-block: clamp(64px, 8vw, 112px);
  background: var(--dark-800);
  color: var(--white);
}

.why-us .section-title {
  color: var(--white);
}

.why-us .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.why-us .section-tag {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: var(--green-400);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}

.feature-card:hover {
  background: rgba(22,163,74,0.08);
  border-color: rgba(74,222,128,0.25);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  line-height: 1;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* === CERTIFICATES & CREDENTIALS === */
.certificates {
  padding-block: clamp(64px, 8vw, 112px);
  background: linear-gradient(180deg, var(--white) 0%, var(--green-50) 100%);
}

.cert-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

.cert-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 2px solid var(--green-200);
  color: var(--green-800);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 2px 8px rgba(22,163,74,0.1);
  transition: all var(--transition);
}

.cert-badge-pill:hover {
  background: var(--green-600);
  color: var(--white);
  border-color: var(--green-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22,163,74,0.25);
}

.cert-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.cert-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  text-align: left;
  transition: all var(--transition);
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}

.cert-card:hover, .cert-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(22,163,74,0.18);
  border-color: var(--green-300);
}

.cert-card-featured {
  border-color: var(--green-300);
  box-shadow: 0 4px 16px rgba(22,163,74,0.15);
}

.cert-card-featured::after {
  content: '⭐ Featured';
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--green-600);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.cert-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--gray-100);
}

.cert-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.cert-card:hover .cert-img {
  transform: scale(1.04);
}

.cert-img-hover {
  position: absolute;
  inset: 0;
  background: rgba(22,163,74,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.cert-card:hover .cert-img-hover,
.cert-card:focus-visible .cert-img-hover {
  opacity: 1;
}

.cert-zoom-icon {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  background: rgba(0,0,0,0.25);
  padding: 8px 18px;
  border-radius: var(--radius-full);
}

.cert-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.cert-logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cert-org-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  color: #fff;
}

.cert-org-badge.skill-india { background: #ff6600; }
.cert-org-badge.nsdc        { background: #003087; }
.cert-org-badge.uc          { background: #6b21a8; }
.cert-org-badge.msme        { background: #1d4ed8; }
.cert-org-badge.govt        { background: #065f46; }
.cert-org-badge.gst         { background: #0891b2; }
.cert-org-badge.iso         { background: #16a34a; }
.cert-org-badge.qcl         { background: #dc2626; }

.cert-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
}

.cert-desc {
  font-size: 0.83rem;
  color: var(--gray-500);
  line-height: 1.55;
}

.cert-issued {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-700);
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--gray-100);
}

/* === LIGHTBOX MODAL === */
.cert-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-lightbox[hidden] { display: none; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 680px);
  max-height: 90svh;
  display: flex;
  align-items: center;
  gap: 12px;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85svh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  transition: opacity 0.25s ease;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: fixed;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 2;
  line-height: 1;
}

.lightbox-close {
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.1);
}

.lightbox-prev, .lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 2rem;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-prev:hover, .lightbox-next:hover {
  background: var(--green-600);
  border-color: var(--green-600);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  z-index: 2;
}

/* === PROCESS SECTION === */
.process {
  padding-block: clamp(64px, 8vw, 112px);
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.process-step {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}

.process-step:hover {
  border-color: var(--green-300);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-num {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 900;
  color: var(--green-600);
  background: var(--green-100);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1;
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.process-arrow {
  font-size: 1.6rem;
  color: var(--green-400);
  font-weight: 900;
}

/* === TESTIMONIALS === */
.testimonials {
  padding-block: clamp(64px, 8vw, 112px);
  background: var(--gray-50);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

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

.stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
  flex: 1;
}

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

.author-avatar-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green-400);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
  flex-shrink: 0;
}

.author-name {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gray-900);
  font-style: normal;
}

.author-loc {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* === FAQ SECTION === */
.faq-section {
  padding-block: clamp(64px, 8vw, 112px);
  background: var(--white);
}

.faq-accordion {
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item[open] {
  background: var(--white);
  border-color: var(--green-300);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color var(--transition);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  color: var(--green-600);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--green-600);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 22px;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
}

.faq-answer strong {
  color: var(--gray-900);
}

/* === CONTACT & MAP === */
.contact {
  padding-block: clamp(64px, 8vw, 112px);
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 72px);
  margin-bottom: 56px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gray-900);
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--green-50);
  color: var(--green-600);
  border: 1px solid var(--green-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-item a, .contact-item p, .contact-item address {
  font-size: 0.98rem;
  color: var(--gray-800);
  font-weight: 500;
  line-height: 1.5;
}

.contact-item a:hover {
  color: var(--green-600);
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.contact-form-wrap {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 5vw, 40px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-900);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.15);
}

.form-success {
  background: var(--green-100);
  color: var(--green-800);
  border: 1px solid var(--green-300);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
}

.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.map-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  padding: 20px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.map-container {
  position: relative;
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
}

.map-directions-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--green-600);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.map-directions-btn:hover {
  background: var(--green-700);
  transform: translateY(-2px);
}

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-900) 100%);
  padding-block: clamp(48px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}

.cta-banner::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.04'%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");
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
}

.cta-trust-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cta-trust-img {
  width: 260px;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 3px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.cta-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(74, 222, 128, 0.35);
  color: var(--green-200);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

.cta-text {
  flex: 1;
  min-width: 280px;
}

.cta-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-text p {
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* === FOOTER === */
.site-footer {
  background: var(--dark-900);
  color: rgba(255,255,255,0.7);
  padding-top: clamp(56px, 7vw, 80px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-links-group h4,
.footer-contact-info h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-group a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}

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

.footer-contact-info p {
  font-size: 0.88rem;
  margin-bottom: 10px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.footer-contact-info a {
  color: rgba(255, 255, 255, 0.88);
  transition: color var(--transition);
}

.footer-contact-info a:hover {
  color: var(--green-400);
}

.footer-map-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  color: var(--green-400) !important;
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-map-link:hover {
  color: var(--green-300) !important;
}

.footer-bottom {
  padding-block: 20px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--green-400);
}

/* === DESIGNER CREDIT (Truegridleaf.com) === */
.footer-designer-credit {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(74, 222, 128, 0.25);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.footer-designer-credit:hover {
  background: rgba(22, 163, 74, 0.18);
  border-color: var(--green-400);
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.25);
  transform: translateY(-2px);
}

.footer-designer-credit .credit-link {
  color: var(--green-400);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: all var(--transition);
}

.footer-designer-credit .credit-link:hover {
  color: var(--white);
  text-decoration-color: var(--white);
}

/* === FLOATING BADGE & WHATSAPP BUTTON === */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: var(--white);
  padding: 13px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: all var(--transition);
  animation: pulse-wa 2s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.whatsapp-float:hover, .whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 36px rgba(37,211,102,0.5);
  animation: none;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 32px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.12); }
}

.tgl-floating-badge {
  position: fixed;
  bottom: 24px;
  right: 220px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 15, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(74, 222, 128, 0.35);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35), 0 0 10px rgba(22, 163, 74, 0.15);
  transition: all var(--transition);
}

.tgl-badge-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-400);
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: tgl-pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
  flex-shrink: 0;
}

@keyframes tgl-pulse {
  to { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

.tgl-brand-highlight {
  color: var(--green-400);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.tgl-badge-arrow {
  width: 10px;
  height: 10px;
  color: rgba(255, 255, 255, 0.6);
  transition: transform var(--transition), color var(--transition);
  flex-shrink: 0;
}

.tgl-floating-badge:hover, .tgl-floating-badge:focus-visible {
  background: rgba(17, 24, 17, 0.98);
  border-color: var(--green-400);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(22, 163, 74, 0.3);
}

.tgl-floating-badge:hover .tgl-badge-arrow {
  color: var(--green-400);
  transform: translate(2px, -2px);
}

/* === MOBILE STICKY ACTION BAR === */
.mobile-sticky-action-bar {
  display: none;
}

/* === SCROLL ANIMATIONS === */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE BREAKPOINTS (Mobile-First & Tailwind Aligned) === */

/* Large Screens (xl & 2xl: >= 1280px) */
@media (min-width: 1280px) {
  .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Tablets (md to lg: 769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Devices (<= 768px) */
@media (max-width: 768px) {
  body {
    padding-bottom: 64px;
  }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10,15,10,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 20px 24px 32px;
    gap: 4px;
    transform: translateY(-110%);
    transition: transform var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-link {
    width: 100%;
    padding: 12px 16px;
  }

  .nav-cta {
    margin-left: 0;
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }

  .hamburger {
    display: flex;
  }

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

  .about-badge-float {
    bottom: 16px;
    right: 16px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-arrow {
    display: none;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .cta-trust-img {
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 16/10;
  }

  .cta-actions {
    justify-content: center;
    width: 100%;
  }

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

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  /* Mobile Sticky Bottom Action Bar */
  .mobile-sticky-action-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 10px 14px;
    background: rgba(10, 15, 10, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  }

  .mobile-bar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 10px 16px;
  }

  .mobile-bar-btn:active {
    transform: scale(0.97);
  }

  .mobile-bar-call {
    background: var(--green-600);
    color: var(--white);
  }

  .mobile-bar-wa {
    background: var(--whatsapp);
    color: var(--white);
  }

  .whatsapp-float {
    bottom: 74px;
    right: 16px;
  }

  .tgl-floating-badge {
    bottom: 78px;
    right: auto;
    left: 14px;
    padding: 6px 12px;
    font-size: 0.72rem;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* Small Phones (<= 520px) */
@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats {
    gap: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
  }

  .stat-divider {
    height: 30px;
  }

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

  .cert-img-wrap {
    height: 200px;
  }
}
