/* ===========================
   NutriVibe - style.css
   Brand colors:
   Primary Green : #27AE60
   Dark Green    : #1E8449
   Accent Red    : #E74C3C
   Text Dark     : #1A1A2E
   Text Mid      : #4A4A6A
   BG Light      : #F7FFF9
=========================== */

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

:root {
  --green: #27AE60;
  --green-dark: #1E8449;
  --green-light: #D5F5E3;
  --green-xlight: #EAFAF1;
  --red: #E74C3C;
  --red-light: #FDEDEC;
  --purple: #8E44AD;
  --blue: #2980B9;
  --orange: #E67E22;
  --teal: #16A085;
  --text-dark: #1A1A2E;
  --text-mid: #4A4A6A;
  --text-light: #7F8C8D;
  --white: #FFFFFF;
  --bg-light: #F7FFF9;
  --bg-off: #F0F8F4;
  --border: #E8F5E9;
  --shadow-sm: 0 2px 12px rgba(39,174,96,0.10);
  --shadow-md: 0 8px 32px rgba(39,174,96,0.15);
  --shadow-lg: 0 20px 60px rgba(39,174,96,0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: clip;
  width: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

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

.section {
  padding: 96px 0;
  overflow-x: clip;
}

/* ===== TEXT GRADIENT ===== */
.text-gradient {
  background: linear-gradient(135deg, var(--green) 0%, #52BE80 50%, var(--green-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-subtitle {
  color: var(--text-mid);
  font-size: 1.05rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(39,174,96,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(39,174,96,0.45);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1ebe5c 100%);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37,211,102,0.45);
}

.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ===== BACKGROUND PARTICLES ===== */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.04;
  animation: floatParticle linear infinite;
}
.particle:nth-child(1)  { left: 5%;  animation-duration: 22s; animation-delay: 0s;   font-size: 2rem; }
.particle:nth-child(2)  { left: 15%; animation-duration: 28s; animation-delay: 3s;   font-size: 1.2rem; }
.particle:nth-child(3)  { left: 28%; animation-duration: 19s; animation-delay: 6s;   font-size: 1.8rem; }
.particle:nth-child(4)  { left: 44%; animation-duration: 25s; animation-delay: 1s;   font-size: 1.4rem; }
.particle:nth-child(5)  { left: 58%; animation-duration: 31s; animation-delay: 9s;   font-size: 2.2rem; }
.particle:nth-child(6)  { left: 72%; animation-duration: 20s; animation-delay: 4s;   font-size: 1.6rem; }
.particle:nth-child(7)  { left: 84%; animation-duration: 27s; animation-delay: 7s;   font-size: 1.3rem; }
.particle:nth-child(8)  { left: 93%; animation-duration: 23s; animation-delay: 2s;   font-size: 1.9rem; }

@keyframes floatParticle {
  0%   { transform: translateY(110vh) rotate(0deg); }
  100% { transform: translateY(-10vh) rotate(360deg); }
}

/* ===== NAVBAR ===== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 8px 0;
}
#header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 24px rgba(39,174,96,0.12);
  backdrop-filter: blur(12px);
  padding: 4px 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

.nav-logo .logo-img {
  height: 72px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-link:hover {
  color: var(--green);
  background: var(--green-xlight);
}
.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  border-radius: 100px;
  padding: 10px 22px;
  margin-left: 8px;
}
.nav-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(39,174,96,0.35);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: linear-gradient(145deg, #FFFFFF 0%, var(--bg-light) 50%, #E8F5E9 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--green);
  top: -200px;
  right: -150px;
  animation: shapePulse 8s ease-in-out infinite;
}
.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--red);
  bottom: -100px;
  left: 10%;
  animation: shapePulse 10s ease-in-out infinite reverse;
}
.shape-3 {
  width: 200px;
  height: 200px;
  background: var(--green-dark);
  top: 40%;
  left: 45%;
  animation: shapePulse 7s ease-in-out infinite 2s;
}
@keyframes shapePulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(15deg); }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(39,174,96,0.2);
}
.hero-badge i { color: var(--green); }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 36px;
  padding: 20px 28px;
  background: rgba(255,255,255,0.85);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  width: fit-content;
  backdrop-filter: blur(8px);
}
.stat { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--green);
}
.stat span:not(.stat-label) {
  font-size: 1.4rem;
  color: var(--green);
  font-weight: 700;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
}
.hero-card-main {
  position: relative;
  width: 380px;
  height: 380px;
}

.food-ring {
  width: 320px;
  height: 320px;
  position: relative;
  margin: 30px auto;
}
.food-ring-inner {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 60px rgba(39,174,96,0.4);
  animation: heroIconPulse 3s ease-in-out infinite;
}
.hero-icon {
  font-size: 4rem;
  color: white;
}
@keyframes heroIconPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 20px 60px rgba(39,174,96,0.4); }
  50% { transform: translate(-50%, -50%) scale(1.05); box-shadow: 0 24px 70px rgba(39,174,96,0.55); }
}

.food-orbit {
  position: absolute;
  inset: 0;
  animation: orbitSpin 18s linear infinite;
}
.orbit-item {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-md);
  color: var(--green);
  animation: orbitCounterSpin 18s linear infinite;
}
.orbit-1 { top: 0; left: 50%; transform: translate(-50%, 0); }
.orbit-2 { top: 50%; right: 0; transform: translate(0, -50%); }
.orbit-3 { bottom: 0; left: 50%; transform: translate(-50%, 0); }
.orbit-4 { top: 50%; left: 0; transform: translate(0, -50%); }

@keyframes orbitSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes orbitCounterSpin { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
.orbit-2, .orbit-3, .orbit-4 { animation: none; }
.orbit-item { animation: none; }

.floating-chip {
  position: absolute;
  background: white;
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 6px;
}
.floating-chip i { color: var(--green); }
.chip-1 { top: 10px; right: -10px; animation: floatChip 4s ease-in-out infinite; }
.chip-2 { bottom: 80px; right: -20px; animation: floatChip 4s ease-in-out infinite 1.3s; }
.chip-3 { bottom: 40px; left: -10px; animation: floatChip 4s ease-in-out infinite 2.6s; }
@keyframes floatChip {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.scroll-dot {
  width: 28px;
  height: 44px;
  border: 2px solid var(--green);
  border-radius: 20px;
  position: relative;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--green);
  border-radius: 100px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--green);
  padding: 20px 0;
  overflow-x: clip;
}
.trust-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.95);
  font-size: 0.88rem;
  font-weight: 500;
}
.trust-item i {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
}

/* ===== SERVICES ===== */
.services { background: var(--bg-off); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green) 0%, #52BE80 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}
.featured-card {
  background: linear-gradient(145deg, #FFFFFF 0%, #F0FBF5 100%);
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}
.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--green);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--icon-color) 15%, white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--icon-color);
  margin-bottom: 20px;
  transition: all var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: var(--icon-color);
  color: white;
  transform: rotate(-5deg) scale(1.08);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.service-card p {
  color: var(--text-mid);
  font-size: 0.92rem;
  margin-bottom: 20px;
  line-height: 1.7;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-mid);
}
.service-features i { color: var(--green); font-size: 0.75rem; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
  transition: gap var(--transition);
}
.service-link:hover { gap: 12px; }

/* ===== ABOUT SECTION ===== */
.about { background: var(--white); }
.about-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  margin-bottom: 32px;
}
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 420px;
  background: linear-gradient(145deg, var(--green-light) 0%, var(--green-xlight) 100%);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px dashed rgba(39,174,96,0.3);
  gap: 16px;
}
.about-img-placeholder i { font-size: 5rem; opacity: 0.6; }
.about-img-placeholder p { color: var(--green-dark); }
.about-badge-float {
  position: absolute;
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  animation: floatChip 4s ease-in-out infinite;
}
.badge-exp {
  top: 24px;
  right: -20px;
  flex-direction: column;
  text-align: center;
  animation-delay: 0s;
}
.badge-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.badge-text { font-size: 0.72rem; color: var(--text-mid); font-weight: 500; }
.badge-clients {
  bottom: 20px;
  left: -20px;
  animation-delay: 2s;
}
.badge-clients i { color: var(--green); font-size: 1.1rem; }
.badge-clients span { font-size: 0.8rem; font-weight: 600; color: var(--text-dark); }

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.credential-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.credential-item i {
  font-size: 1.2rem;
  color: var(--green);
  width: 28px;
  text-align: center;
}
.credential-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}
.credential-item span {
  font-size: 0.75rem;
  color: var(--text-light);
}

.about-text {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 0.97rem;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}
.highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
}
.highlight i { color: var(--green); font-size: 1rem; width: 20px; }

/* ===== WHY US ===== */
.why-us { background: var(--text-dark); }
.why-us .section-tag { background: rgba(39,174,96,0.2); color: #52BE80; }
.why-us .section-title { color: white; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
}
.why-card:hover {
  background: rgba(39,174,96,0.12);
  border-color: rgba(39,174,96,0.4);
  transform: translateY(-4px);
}
.why-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(39,174,96,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 20px;
  transition: all var(--transition);
}
.why-card:hover .why-icon {
  background: var(--green);
  color: white;
}
.why-card h3 {
  color: white;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.why-card p { color: rgba(255,255,255,0.6); font-size: 0.88rem; }

/* ===== PROCESS ===== */
.process { background: var(--bg-light); }
.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.process-step {
  flex: 1;
  min-width: 200px;
  background: white;
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}
.step-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 12px;
}
.step-icon {
  width: 64px;
  height: 64px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(39,174,96,0.35);
  transition: transform var(--transition);
}
.process-step:hover .step-icon { transform: rotate(-10deg) scale(1.1); }
.process-step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.process-step p { font-size: 0.85rem; color: var(--text-mid); }
.process-arrow {
  color: var(--green);
  font-size: 1.2rem;
  padding: 0 8px;
  flex-shrink: 0;
  opacity: 0.5;
}

/* ===== CONDITIONS ===== */
.conditions { background: var(--white); }
.conditions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.condition-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: default;
  transition: all var(--transition);
}
.condition-pill i { color: var(--green); font-size: 0.9rem; }
.condition-pill:hover {
  background: var(--green);
  color: white;
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(39,174,96,0.3);
}
.condition-pill:hover i { color: white; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--bg-off); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 30px;
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--green-light);
  line-height: 1;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.stars { color: #F39C12; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: 1.2rem;
}
.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.testimonial-author span { font-size: 0.78rem; color: var(--text-light); }

/* ===== FAQ ===== */
.faq { background: var(--white); }
.faq-container { max-width: 800px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--green); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  background: white;
  transition: background var(--transition);
}
.faq-question:hover, .faq-item.open .faq-question { background: var(--green-xlight); }
.faq-icon {
  font-size: 0.85rem;
  color: var(--green);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ===== CONTACT ===== */
.contact {
  background: linear-gradient(145deg, var(--bg-light) 0%, #E8F5E9 100%);
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info .section-title { margin-bottom: 16px; }
.contact-info > p {
  color: var(--text-mid);
  margin-bottom: 36px;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: white;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.contact-method:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.whatsapp-method { border-color: #25D366; }
.method-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--green);
  flex-shrink: 0;
}
.whatsapp-method .method-icon { background: #dcf8e1; color: #25D366; }
.contact-method strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}
.contact-method span { font-size: 0.8rem; color: var(--text-light); }

.contact-social span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 12px;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 0.95rem;
  transition: all var(--transition);
}
.social-links a:hover {
  background: var(--green);
  color: white;
  border-color: var(--green);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrap {
  background: white;
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 28px;
  color: var(--text-dark);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-group label i { color: var(--green); font-size: 0.8rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: all var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: white;
  box-shadow: 0 0 0 3px rgba(39,174,96,0.1);
}
.form-note {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}
.form-note i { color: var(--green); }

/* ===== FOOTER ===== */
.footer {
  background: var(--text-dark);
  padding-top: 72px;
  overflow-x: clip;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  height: 48px;
  margin-bottom: 16px;
}
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-links h4,
.footer-contact h4 {
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-links li a:hover { color: var(--green); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item i { color: var(--green); width: 16px; text-align: center; }
.footer-contact-item a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--green); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.7rem;
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
  transition: all var(--transition);
  animation: waBounce 3s ease-in-out infinite 5s;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(37,211,102,0.6);
}
.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--text-dark);
  color: white;
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 14px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--text-dark);
  border-right: 0;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
@keyframes waBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ===== SCROLL ANIMATIONS ===== */
.animate-fade-up,
.animate-fade-left,
.animate-fade-right,
.animate-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-fade-left { transform: translateX(-30px); }
.animate-fade-right { transform: translateX(30px); }
.animate-card { transform: translateY(20px); }

.animate-fade-up.visible,
.animate-fade-left.visible,
.animate-fade-right.visible,
.animate-card.visible {
  opacity: 1;
  transform: translate(0, 0);
}

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

/* Stagger cards */
.services-grid .animate-card:nth-child(1) { transition-delay: 0.05s; }
.services-grid .animate-card:nth-child(2) { transition-delay: 0.15s; }
.services-grid .animate-card:nth-child(3) { transition-delay: 0.25s; }
.services-grid .animate-card:nth-child(4) { transition-delay: 0.35s; }
.services-grid .animate-card:nth-child(5) { transition-delay: 0.45s; }
.services-grid .animate-card:nth-child(6) { transition-delay: 0.55s; }

.why-grid .animate-card:nth-child(1) { transition-delay: 0.05s; }
.why-grid .animate-card:nth-child(2) { transition-delay: 0.15s; }
.why-grid .animate-card:nth-child(3) { transition-delay: 0.25s; }
.why-grid .animate-card:nth-child(4) { transition-delay: 0.35s; }
.why-grid .animate-card:nth-child(5) { transition-delay: 0.45s; }
.why-grid .animate-card:nth-child(6) { transition-delay: 0.55s; }

.process-steps .animate-card:nth-child(1) { transition-delay: 0.05s; }
.process-steps .animate-card:nth-child(3) { transition-delay: 0.2s; }
.process-steps .animate-card:nth-child(5) { transition-delay: 0.35s; }
.process-steps .animate-card:nth-child(7) { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container { gap: 40px; }
  .about-container { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-container { gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  /* Prevent ALL horizontal overflow */
  .container,
  .hero-container,
  .about-container,
  .contact-container,
  .footer-grid,
  .services-grid,
  .why-grid,
  .testimonials-grid {
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  /* Navbar mobile */
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 999;
    width: 100%;
  }
  .nav-menu.open { display: flex; }
  .nav-link { font-size: 1.1rem; padding: 12px 32px; }
  .nav-cta { margin-left: 0; margin-top: 8px; }

  /* Hero */
  .hero { overflow: hidden; }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-visual { display: none; }
  .hero-btns { justify-content: center; }
  .hero-stats {
    margin: 0 auto 36px;
    width: fit-content;
    max-width: calc(100vw - 48px);
  }

  /* About */
  .about-container { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .about-badge-float { display: none; }

  /* Contact */
  .contact-container { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Process */
  .process-steps { flex-direction: column; align-items: stretch; }
  .process-arrow { transform: rotate(90deg); text-align: center; padding: 4px 0; }

  /* Conditions pills wrap naturally */
  .conditions-grid { justify-content: flex-start; }

  /* WhatsApp float */
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.4rem; }
  .back-to-top { left: 20px; bottom: 20px; }
}

@media (max-width: 480px) {
  .hero-stats {
    gap: 18px;
    padding: 16px 20px;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    max-width: calc(100vw - 48px);
  }
  .stat-divider { display: none; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 16px; }

  /* Prevent any stray absolute elements from causing scroll */
  .about-credentials { overflow: hidden; }
  .footer-contact { gap: 10px; }

  .condition-pill { font-size: 0.82rem; padding: 10px 14px; }
}
