/* ===================================================
   KÂMİL ÇİÇEK İLAÇLAMA - ANA CSS DOSYASI
   =================================================== */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-900: #134e4a;
  --dark-900: #0a0f0d;
  --dark-800: #0f1a14;
  --dark-700: #162418;
  --dark-600: #1e3a23;
  --gray-100: #f4f7f5;
  --gray-200: #e8ede9;
  --gray-400: #9cad9f;
  --gray-600: #5c7060;
  --gray-800: #2d3b30;
  --white: #ffffff;
  --gradient-main: linear-gradient(135deg, var(--green-500) 0%, var(--teal-600) 100%);
  --gradient-dark: linear-gradient(135deg, var(--dark-800) 0%, var(--teal-900) 100%);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.18);
  --shadow-green: 0 8px 32px rgba(34,197,94,0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, 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);
  background: var(--white);
  color: var(--dark-800);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---------- CONTAINER ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-main);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-green);
  border: 2px solid transparent;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(34,197,94,0.35);
}
.btn-primary.btn-large { padding: 18px 42px; font-size: 1.1rem; }
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.25);
  transition: var(--transition);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 18px 42px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* ---------- SECTION HEADER ---------- */
.section-tag {
  display: inline-block;
  background: var(--green-50);
  color: var(--green-600);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid var(--green-100);
  margin-bottom: 16px;
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark-800);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title .accent { color: var(--green-600); }
.section-desc {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 15, 13, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.navbar-logo-img {
  height: 62px;
  width: auto;
  object-fit: contain;
  display: block;
  /* Logo beyaz arka planlı olduğu için navbar karanlık arka planda
     hafif yuvarlak köşe + küçük padding ile temiz görünür */
  background: var(--white);
  border-radius: 10px;
  padding: 4px 8px;
  transition: var(--transition);
}
.navbar-logo-img:hover { transform: scale(1.04); }
.logo-icon { width: 40px; height: 40px; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.logo-sub {
  font-size: 0.65rem;
  color: var(--green-400);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Footer logo */
.footer-logo-wrap { margin-bottom: 16px; }
.footer-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
  background: var(--white);
  border-radius: 12px;
  padding: 6px 10px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-main);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: var(--shadow-green);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(34,197,94,0.4); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,15,13,0.85) 0%,
    rgba(19,78,74,0.7) 50%,
    rgba(10,15,13,0.8) 100%
  );
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.4), transparent);
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 100px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(34,197,94,0.3);
  color: var(--green-400);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease both;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--green-400);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.7; }
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s ease 0.1s both;
}
.hero-title-accent {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
  animation: fadeInUp 0.9s ease 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 0.9s ease 0.3s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeInUp 0.9s ease 0.4s both;
}
.stat-item { display: flex; flex-direction: column; }
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  animation: fadeInUp 1s ease 0.8s both;
}
.scroll-arrow {
  width: 24px; height: 24px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: bounceDown 1.5s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ===================================================
   SERVICES
   =================================================== */
.services {
  padding: 100px 0;
  background: var(--gray-100);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  cursor: pointer;
}

/* Fade-in animation for detail pages */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s forwards ease-in-out;
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* Detail image hover zoom */
.detail-img {
  transition: transform var(--transition);
}
.detail-img:hover {
  transform: scale(1.05);
}
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card.featured {
  border: 2px solid var(--green-500);
  box-shadow: 0 0 0 4px rgba(34,197,94,0.08), var(--shadow-md);
}
.service-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img-wrap img {
  transform: scale(1.06);
}
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,15,13,0.5));
}
.service-badge-card {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient-main);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  z-index: 2;
}
.service-body {
  padding: 28px;
}
.service-icon {
  width: 48px; height: 48px;
  background: var(--green-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--green-600);
}
.service-icon svg { width: 24px; height: 24px; }
.service-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-800);
  margin-bottom: 10px;
}
.service-body p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-list li {
  font-size: 0.85rem;
  color: var(--gray-600);
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green-500);
}

/* ===================================================
   ABOUT
   =================================================== */
.about {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.about-bg-img {
  position: absolute;
  inset: 0;
}
.about-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,26,20,0.97) 0%, rgba(19,78,74,0.94) 100%);
}
.about-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-col { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}
.about-card-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  animation: floatCard 3s ease-in-out infinite;
}
.about-card-float--2 {
  bottom: auto;
  top: -24px;
  right: auto;
  left: -24px;
  animation-delay: 1.5s;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-icon { font-size: 1.8rem; }
.float-text { display: flex; flex-direction: column; }
.float-text strong { font-size: 0.9rem; font-weight: 700; color: var(--dark-800); }
.float-text span { font-size: 0.75rem; color: var(--gray-600); }
.about-text-col .section-tag {
  background: rgba(34,197,94,0.1);
  color: var(--green-400);
  border-color: rgba(34,197,94,0.2);
}
.about-text-col .section-title { color: var(--white); }
.about-text-col .section-title .accent { color: var(--green-400); }
.about-lead {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 500;
}
.about-body {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
}
.feature-check {
  width: 22px; height: 22px;
  background: var(--gradient-main);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===================================================
   MISSION & VISION
   =================================================== */
.mission {
  padding: 100px 0;
  background: var(--white);
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.mission-card {
  background: var(--gradient-dark);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.mission-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.12), transparent 70%);
  pointer-events: none;
}
.mission-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.mission-icon-wrap {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.mission-icon-wrap--green {
  background: rgba(34,197,94,0.15);
  color: var(--green-400);
}
.mission-icon-wrap--teal {
  background: rgba(20,184,166,0.15);
  color: var(--teal-400);
}
.mission-icon-wrap svg { width: 36px; height: 36px; }
.mission-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.mission-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.mission-quote {
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--green-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--green-400);
  font-style: italic;
  font-weight: 600;
  font-size: 0.95rem;
}
.mission-card--vision .mission-quote {
  border-left-color: var(--teal-400);
  color: var(--teal-400);
}
.values-card {
  grid-column: 1 / -1;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.values-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-800);
  margin-bottom: 32px;
  text-align: center;
}
.values-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--green-200, #bbf7d0);
  line-height: 1;
  flex-shrink: 0;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.value-content strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-800);
  margin-bottom: 6px;
}
.value-content p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===================================================
   CTA BANNER
   =================================================== */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,118,110,0.92), rgba(22,163,74,0.88));
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-actions .btn-primary {
  background: var(--white);
  color: var(--green-700);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.cta-actions .btn-primary:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

/* ===================================================
   CONTACT
   =================================================== */
.contact {
  padding: 100px 0;
  background: var(--gray-100);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-lead {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.contact-card-icon {
  width: 42px; height: 42px;
  background: var(--green-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  flex-shrink: 0;
}
.contact-card-icon svg { width: 20px; height: 20px; }
.contact-card-text { display: flex; flex-direction: column; }
.contact-card-text strong {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.contact-card-text span {
  font-size: 0.9rem;
  color: var(--dark-800);
  font-weight: 500;
  line-height: 1.4;
}
.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-800);
  margin-bottom: 32px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--dark-800);
  background: var(--gray-100);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  margin-top: 16px;
  padding: 14px 20px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-sm);
  color: var(--green-700);
  font-weight: 600;
  text-align: center;
}

/* ===================================================
   MAP
   =================================================== */
.contact-inner--single {
  display: block;
}
.contact-info-col--full {
  max-width: 100%;
}
.contact-cards--wide {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .contact-cards--wide { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .contact-cards--wide { grid-template-columns: 1fr; }
}

.map-section { line-height: 0; }
.map-section iframe { display: block; }

/* ===================================================
   FOOTER
   =================================================== */
.footer { background: var(--dark-900); }
.footer-top { padding: 72px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-logo { margin-bottom: 16px; }
.footer-about {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--green-400); }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
}
.footer-contact-list svg { flex-shrink: 0; color: var(--green-500); margin-top: 2px; }
.footer-contact-list a { color: rgba(255,255,255,0.5); }
.footer-contact-list a:hover { color: var(--green-400); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
}

/* ===================================================
   FLOATING CALL BUTTON
   =================================================== */
.float-call {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px; height: 60px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(34,197,94,0.45);
  z-index: 999;
  transition: var(--transition);
}
.float-call:hover { transform: scale(1.1); }
.float-call-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(34,197,94,0.3);
  animation: pulseRing 2s ease-in-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ===================================================
   ANIMATIONS
   =================================================== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-img-col { max-width: 520px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .values-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: rgba(10,15,13,0.97); backdrop-filter: blur(20px); padding: 24px; gap: 8px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-links.open { display: flex; }
  .nav-link { padding: 12px 20px; border-radius: var(--radius-sm); }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .navbar { position: fixed; }
  .services-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .values-list { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 24px; }
  .hero-stats { gap: 20px; }
  .hero-actions { flex-direction: column; }
  .about-card-float, .about-card-float--2 { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .mission-card { padding: 28px 24px; }
  .values-card { padding: 28px 24px; }
  .hero-title { font-size: 2.2rem; }
}

/* ===================================================
   PRELOADER
   =================================================== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--dark-900);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
}
.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.preloader-logo {
  height: 90px;
  width: auto;
  border-radius: 16px;
  background: var(--white);
  padding: 8px 16px;
  box-shadow: var(--shadow-lg);
  animation: logoPulse 1.8s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.05); filter: brightness(1.1); }
}
.preloader-bar-wrap {
  width: 220px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.preloader-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0%;
  background: var(--gradient-main);
  border-radius: 10px;
  transition: width 0.2s ease;
}
.preloader-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  letter-spacing: 0.05em;
  animation: pulseText 1.5s ease-in-out infinite alternate;
}
@keyframes pulseText {
  from { opacity: 0.5; }
  to { opacity: 1; }
}

/* ===================================================
   FLOATING ACTIONS (WhatsApp Left & Call Right)
   =================================================== */
.float-whatsapp-left {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 999;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
  cursor: pointer;
}
.float-whatsapp-left:hover {
  transform: translateY(-5px) scale(1.05);
}
.float-call-right {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 999;
  background: var(--gradient-main);
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.35);
  transition: var(--transition);
  cursor: pointer;
}
.float-call-right:hover {
  transform: translateY(-5px) scale(1.05);
}
.float-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  pointer-events: none;
}
.float-whatsapp-left .float-pulse {
  background: rgba(37, 211, 102, 0.3);
  animation: pulseRingW 2s ease-in-out infinite;
}
.float-call-right .float-pulse {
  background: rgba(34, 197, 94, 0.3);
  animation: pulseRingC 2s ease-in-out infinite;
}
@keyframes pulseRingW {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}
@keyframes pulseRingC {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ===================================================
   WORKING PROCESS
   =================================================== */
.process {
  padding: 100px 0;
  background: var(--white);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  margin-top: 48px;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: var(--gray-200);
  z-index: 1;
}
.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
}
.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gray-200);
  color: var(--gray-400);
  font-size: 1.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.process-step:hover .step-number {
  border-color: var(--green-500);
  color: var(--green-600);
  transform: scale(1.1);
  box-shadow: var(--shadow-green);
}
.step-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark-800);
}
.step-content p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===================================================
   PEST CATALOG
   =================================================== */
.pest-catalog {
  padding: 100px 0;
  background: var(--gray-100);
}
.catalog-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 12px 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-800);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.tab-btn:hover, .tab-btn.active {
  background: var(--gradient-main);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-green);
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
  animation: fadeInPest 0.5s ease both;
}
@keyframes fadeInPest {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}
.pest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.pest-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.pest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-400);
}
.pest-badge {
  position: absolute;
  top: 36px;
  right: 36px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}
.pest-badge.danger {
  background: #fef2f2;
  color: #ef4444;
}
.pest-badge.warning {
  background: #fffbeb;
  color: #f59e0b;
}
.pest-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark-800);
  margin-bottom: 16px;
}
.pest-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 24px;
  line-height: 1.6;
}
.pest-meta {
  border-top: 1px solid var(--gray-200);
  padding-top: 16px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-600);
}
.pest-meta strong {
  color: var(--dark-800);
}
.btn-pest-action {
  display: inline-flex;
  align-items: center;
  color: var(--green-600);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-pest-action:hover {
  color: var(--green-500);
  transform: translateX(4px);
}

/* ===================================================
   PRICE CALCULATOR
   =================================================== */
.calculator-section {
  padding: 100px 0;
  background: var(--white);
}

/* App Shell Layout */
.calculator-container.app-shell {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr;
  gap: 40px;
  background: var(--dark-800);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--dark-600);
  position: relative;
  overflow: hidden;
}

/* Top App Header Bar */
.app-header-bar {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--dark-600);
  padding-bottom: 20px;
  margin-bottom: 10px;
}
.app-status {
  display: flex;
  align-items: center;
  gap: 10px;
}
.status-pulse-dot {
  width: 10px;
  height: 10px;
  background-color: var(--green-500);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--green-500);
  animation: pulse-green 2s infinite;
}
.status-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 0.1em;
}
.app-stepper {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 280px;
}
.step-indicator-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-400);
  white-space: nowrap;
}
.app-progress-track {
  width: 100%;
  height: 6px;
  background: var(--dark-600);
  border-radius: 4px;
  overflow: hidden;
}
.app-progress-bar {
  height: 100%;
  background: var(--gradient-main);
  border-radius: 4px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.calc-steps-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
}
.calc-step {
  display: none;
  animation: slideInFromRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.calc-step.active {
  display: block;
}
.calc-step h4 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}
.calc-grid-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* Glassmorphic Option Cards */
.calc-option {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid var(--dark-600);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
}
.calc-option:hover {
  border-color: var(--teal-500);
  background: rgba(20, 184, 166, 0.08);
  transform: translateY(-4px);
}
.calc-option.active {
  border-color: var(--green-500);
  background: rgba(34, 197, 94, 0.1);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.15);
}
.option-icon {
  font-size: 2.2rem;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s;
}
.calc-option:hover .option-icon {
  transform: scale(1.15) rotate(5deg);
}
.calc-option span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-100);
}
.option-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  transition: all 0.3s;
}
.calc-option.active .option-check {
  background: var(--green-500);
  box-shadow: 0 0 10px var(--green-500);
  width: 10px;
  height: 10px;
}

.calc-nav-btns {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}
.calc-nav-btns button {
  flex: 1;
}

/* Diagnostic Monitor (Right Panel) */
.calc-results-wrap.monitor-card {
  background: var(--dark-700);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--dark-600);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  overflow: hidden;
}

/* Pending State placeholder */
.monitor-pending-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 40px 20px;
  flex: 1;
}
.monitor-pending-state .pending-icon {
  font-size: 3rem;
  animation: pulse-green 2.5s infinite;
}
.monitor-pending-state h4 {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
}
.monitor-pending-state p {
  color: var(--gray-400);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 260px;
}
.monitor-pending-state p strong {
  color: var(--green-400);
}

.monitor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--dark-600);
  padding-bottom: 12px;
  width: 100%;
}
.monitor-header h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  letter-spacing: 0.05em;
}
.live-tag {
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.3);
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fca5a5;
  display: flex;
  align-items: center;
  gap: 6px;
}
.live-dot {
  width: 6px;
  height: 6px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse-red 1.5s infinite;
}

/* Radar Overlay scanner effect */
.app-scanner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 26, 20, 0.95);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.radar-circle {
  width: 90px;
  height: 90px;
  border: 2px solid var(--green-500);
  border-radius: 50%;
  position: relative;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
}
.radar-circle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 50%;
  animation: radarExpand 1.5s linear infinite;
}
.laser-scanner-line {
  position: absolute;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--green-500), transparent);
  box-shadow: 0 0 15px var(--green-500);
  top: 0;
  animation: laserScanVertical 2s linear infinite;
}
.scanner-log-wrap {
  text-align: center;
}
.scanner-log-text {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.scanner-log-sub {
  font-size: 0.8rem;
  color: var(--green-400);
  font-family: monospace;
}

/* Dynamic Risk Meter UI */
.dynamic-risk-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--dark-600);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.price-title {
  font-size: 0.8rem;
  color: var(--gray-400);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.price-amount {
  font-size: 1.7rem;
  font-weight: 900;
  margin: 4px 0;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.price-note {
  font-size: 0.78rem;
  color: var(--gray-400);
}
.risk-bar-container {
  width: 100%;
  height: 8px;
  background: var(--dark-600);
  border-radius: 10px;
  overflow: hidden;
  margin: 4px 0;
}
.risk-bar-fill {
  height: 100%;
  border-radius: 10px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.6s;
}

/* Stats grid */
.calc-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}
.calc-stat-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid var(--dark-600);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-item-lbl {
  font-size: 0.72rem;
  color: var(--gray-400);
  text-transform: uppercase;
  font-weight: 700;
}
.stat-item-val {
  font-size: 0.95rem;
  color: var(--green-100);
  font-weight: 700;
}

.calc-result-details {
  width: 100%;
}

.report-summary {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(255, 255, 255, 0.02);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--dark-600);
}
.report-summary strong {
  font-size: 0.85rem;
  color: var(--gray-400);
}
.report-summary span {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--gray-100);
}

/* Dynamic Tips */
.pre-visit-tips-card {
  background: rgba(45, 212, 191, 0.06);
  border: 1px solid rgba(45, 212, 191, 0.2);
  border-radius: 12px;
  padding: 16px;
  margin-top: 10px;
}
.pre-visit-tips-card strong {
  font-size: 0.85rem;
  color: var(--teal-400);
  display: block;
  margin-bottom: 8px;
}
.pre-visit-tips-card ul {
  margin: 0;
  padding-left: 18px;
}
.pre-visit-tips-card li {
  font-size: 0.8rem;
  color: var(--gray-200);
  line-height: 1.6;
  margin-bottom: 6px;
}
.pre-visit-tips-card li:last-child {
  margin-bottom: 0;
}

/* Action Buttons */
.app-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: auto;
}
.btn-whatsapp-action {
  background: rgba(34, 197, 94, 0.1) !important;
  color: var(--green-400) !important;
  border: 1.5px solid rgba(34, 197, 94, 0.3) !important;
}
.btn-whatsapp-action:hover {
  background: var(--green-500) !important;
  color: var(--white) !important;
}

/* Animations */
@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
@keyframes pulse-red {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}
@keyframes laserScanVertical {
  0% { top: 0; }
  50% { top: 100%; }
  100% { top: 0; }
}
@keyframes radarExpand {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes slideInFromRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials-section {
  padding: 100px 0;
  background: var(--gray-100);
}
.testimonials-slider-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.testimonials-slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-slide {
  min-width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.testimonial-slide.active {
  opacity: 1;
}
.testimonial-stars {
  font-size: 1.5rem;
  margin-bottom: 24px;
  letter-spacing: 2px;
  color: #f59e0b;
}
.testimonial-text {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gray-800);
  line-height: 1.8;
  margin-bottom: 32px;
}
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
}
.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-main);
  color: var(--white);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-green);
}
.user-info {
  text-align: left;
}
.user-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark-800);
}
.user-info span {
  font-size: 0.8rem;
  color: var(--gray-600);
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active {
  background: var(--green-500);
  width: 24px;
  border-radius: 10px;
}

/* ===================================================
   FAQ ACCORDION
   =================================================== */
.faq-section {
  padding: 100px 0;
  background: var(--white);
}
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: var(--green-300);
}
.faq-item.active {
  border-color: var(--green-500);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-800);
  transition: var(--transition);
}
.faq-question:hover {
  color: var(--green-600);
}
.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--green-600);
  transition: transform 0.3s;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 24px;
}
.faq-answer p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===================================================
   RESPONSIVE ADDITIONS
   =================================================== */
@media (max-width: 1024px) {
  .calculator-container,
  .calculator-container.app-shell {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 32px;
  }
  .app-stepper {
    width: 200px;
  }
  .pest-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process-steps::before {
    display: none;
  }
  .step-number {
    margin-bottom: 12px;
  }
  .calc-grid-options {
    grid-template-columns: repeat(2, 1fr);
  }
  .app-header-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .app-stepper {
    width: 100%;
  }
  .testimonials-slider-container {
    padding: 28px 20px;
  }
  .float-whatsapp-left {
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
  }
  .float-whatsapp-left svg {
    width: 22px;
    height: 22px;
  }
  .float-call-right {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .float-call-right svg {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 480px) {
  .calc-grid-options {
    grid-template-columns: 1fr;
  }
  .mock-presets {
    grid-template-columns: 1fr;
  }
  .tab-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

/* ===================================================
   CONTACT CTA CARD
   =================================================== */
.contact-cta-col {
  display: flex;
  align-items: stretch;
}
.contact-cta-card {
  background: var(--gradient-dark);
  border-radius: var(--radius-xl);
  padding: 48px;
  color: var(--white);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.contact-cta-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.15), transparent 70%);
  pointer-events: none;
}
.contact-cta-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--white);
}
.contact-cta-card p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 32px;
}
.contact-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.btn-whatsapp-cta {
  background: #25d366 !important;
  border-color: #25d366 !important;
  color: var(--white) !important;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.25) !important;
}
.btn-whatsapp-cta:hover {
  background: #20ba5a !important;
  border-color: #20ba5a !important;
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.35) !important;
  transform: translateY(-2px);
}
.contact-cta-footer {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}
@media (max-width: 768px) {
  .contact-cta-card {
    padding: 36px 24px;
  }
  .contact-cta-footer {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
}

/* ===================================================
   PAGE HEADER & BREADCRUMBS (Subpages)
   =================================================== */
.page-header {
  position: relative;
  padding: 180px 0 90px;
  background: linear-gradient(135deg, var(--dark-900) 0%, var(--dark-800) 50%, var(--teal-900) 100%);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.15), transparent 50%);
  pointer-events: none;
}
.page-header-content {
  position: relative;
  z-index: 2;
}
.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  font-family: var(--font-main);
  letter-spacing: -0.02em;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
}
.breadcrumb a:hover {
  color: var(--green-400);
}
.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.3);
}
.breadcrumb span.current {
  color: var(--green-400);
  font-weight: 600;
}


