/* ===========================
   NUTRI BOOST — STYLE.CSS
   Light, fresh, wellness palette
   =========================== */

:root {
  --green: #4caf7d;
  --green-dark: #379668;
  --green-light: #e8f5ee;
  --green-pale: #f2fbf6;
  --orange: #f4845f;
  --orange-light: #fff3ef;
  --text: #1e2d27;
  --text-mid: #4a5e54;
  --text-light: #7a9088;
  --bg: #ffffff;
  --bg-soft: #f8fdf9;
  --border: #e0ede6;
  --shadow: 0 4px 24px rgba(76,175,125,0.10);
  --shadow-card: 0 2px 16px rgba(30,45,39,0.07);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

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

.section { padding: 80px 0; }

/* ---- SECTION HEADER ---- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header h2 { font-size: clamp(28px, 3.5vw, 40px); color: var(--text); margin: 8px 0 16px; }
.section-header p { color: var(--text-mid); font-size: 16px; }

.section-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 50px;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(76,175,125,0.25);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(76,175,125,0.35); }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--green-dark);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  transition: var(--transition);
}
.btn-white:hover { background: var(--green-light); transform: translateY(-2px); }

.btn-card {
  display: inline-block;
  border: 1.5px solid var(--green);
  color: var(--green-dark);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
  transition: var(--transition);
}
.btn-card:hover { background: var(--green); color: #fff; }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(30,45,39,0.08); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--text);
  flex-shrink: 0;
}
.logo .logo-icon { font-size: 26px; }
.logo b { color: var(--green-dark); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--green-dark);
  background: var(--green-light);
}

.btn-nav {
  background: var(--green);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
  transition: var(--transition);
}
.btn-nav:hover { background: var(--green-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===========================
   HERO
   =========================== */
.hero {
  margin-top: 70px;
  position: relative;
  height: calc(100vh - 70px);
  min-height: 520px;
  overflow: hidden;
}

.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.52);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 80px;
  max-width: 700px;
  animation: heroIn 0.8s ease;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  display: inline-block;
  background: rgba(76,175,125,0.3);
  border: 1px solid rgba(76,175,125,0.5);
  color: #a8ffd2;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: clamp(38px, 5vw, 70px);
  color: #fff;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-content h1 em {
  color: #7fecb4;
  font-style: normal;
}
.hero-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.65;
}

.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active { background: #fff; width: 28px; border-radius: 5px; }

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
}
.hero-arrow:hover { background: var(--green); border-color: var(--green); }
.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }

/* ===========================
   PAGE BANNER (inner pages)
   =========================== */
.page-banner {
  margin-top: 70px;
  position: relative;
  height: 280px;
  overflow: hidden;
}
.banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}
.banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}
.banner-content h1 {
  font-size: clamp(32px, 4vw, 52px);
  color: #fff;
  font-weight: 800;
}
.breadcrumb {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  margin-bottom: 12px;
}
.breadcrumb a { color: #7fecb4; }

/* ===========================
   OFFERINGS SECTION
   =========================== */
.offerings { background: var(--bg-soft); }

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

.offering-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.offering-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(76,175,125,0.15);
  border-color: var(--green);
}
.offering-card.highlight {
  background: linear-gradient(135deg, #e8f5ee 0%, #f0faf4 100%);
  border-color: var(--green);
  grid-column: span 1;
}

.offering-icon {
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 1;
}
.offering-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text);
}
.offering-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ===========================
   BENEFITS
   =========================== */
.benefits { background: #fff; }

.benefits-flex {
  display: flex;
  gap: 64px;
  align-items: center;
}
.benefits-text { flex: 1; }
.benefits-text h2 { font-size: clamp(26px, 3vw, 38px); margin: 12px 0 16px; }
.benefits-text > p { color: var(--text-mid); margin-bottom: 36px; }

.benefit-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.benefit-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.benefit-item h5 { font-size: 16px; margin-bottom: 4px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.benefit-item p { font-size: 14px; color: var(--text-mid); }

.benefits-image {
  flex: 0 0 420px;
  position: relative;
}
.benefits-image img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  height: 500px;
}
.benefits-badge {
  position: absolute;
  bottom: 28px;
  left: -24px;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 24px;
  box-shadow: 0 8px 32px rgba(30,45,39,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
}
.badge-label {
  font-size: 12px;
  color: var(--text-mid);
  margin-top: 4px;
}

/* ===========================
   CORE VALUES
   =========================== */
.values { background: var(--green-pale); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.value-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--green);
}
.value-icon {
  font-size: 36px;
  margin-bottom: 16px;
  width: 60px; height: 60px;
  background: var(--green-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.value-card h4 { font-size: 18px; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--text-mid); }

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 70px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-size: clamp(22px, 2.5vw, 34px);
  color: #fff;
  max-width: 520px;
}

/* ===========================
   GALLERY
   =========================== */
.gallery { background: #fff; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.tall img { height: 100%; min-height: 500px; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.wide img { height: 240px; }

/* ===========================
   WHY CHOOSE US
   =========================== */
.why { background: var(--bg-soft); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--green);
}
.why-icon {
  width: 64px; height: 64px;
  background: var(--green-light);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--green-dark);
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--green); color: #fff; }
.why-card h4 { font-size: 17px; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--text-mid); }

/* ===========================
   ABOUT PAGE
   =========================== */
.about-flex {
  display: flex;
  gap: 64px;
  align-items: center;
}
.about-image {
  flex: 0 0 460px;
  position: relative;
}
.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
}
.about-badge {
  position: absolute;
  bottom: 28px;
  right: -20px;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius);
  padding: 16px 22px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(76,175,125,0.3);
}
.about-text { flex: 1; }
.about-text h2 { font-size: clamp(26px, 3vw, 38px); margin: 12px 0 20px; }
.about-text p { color: var(--text-mid); margin-bottom: 16px; }
.about-features { display: flex; flex-direction: column; gap: 10px; margin: 24px 0 32px; }
.ab-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
}
.ab-feat i { color: var(--green); font-size: 16px; }

.goals-section { background: var(--bg-soft); }
.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.goal-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.goal-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--green);
}
.goal-icon {
  width: 56px; height: 56px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--green-dark);
  margin-bottom: 16px;
  transition: var(--transition);
}
.goal-card:hover .goal-icon { background: var(--green); color: #fff; }
.goal-card h4 { font-size: 18px; margin-bottom: 10px; }
.goal-card p { font-size: 14px; color: var(--text-mid); }

/* STATS */
.stats-section {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { color: #fff; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 15px; opacity: 0.85; }

/* QUOTE / ABOUT FORM */
.quote-section { background: var(--bg-soft); }
.quote-flex {
  display: flex;
  gap: 48px;
  align-items: stretch;
}
.quote-map {
  flex: 1;
  min-height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.quote-form-wrap {
  flex: 0 0 480px;
}
.quote-form-wrap h2 { font-size: 30px; margin: 12px 0 16px; }
.quote-form-wrap p { color: var(--text-mid); margin-bottom: 28px; }

/* ===========================
   SERVICES PAGE
   =========================== */
.service-detail { background: var(--bg-soft); }
.detail-flex {
  display: flex;
  gap: 64px;
  align-items: center;
  margin-top: 40px;
}
.detail-text { flex: 1; }
.detail-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.detail-point i {
  font-size: 22px;
  color: var(--green);
  width: 48px; height: 48px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.detail-point h5 { font-size: 16px; font-family: 'DM Sans', sans-serif; font-weight: 600; margin-bottom: 4px; }
.detail-point p { font-size: 14px; color: var(--text-mid); }
.detail-checklist { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 32px; }
.detail-checklist div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
}
.detail-checklist i { color: var(--green); }
.detail-image { flex: 0 0 440px; }
.detail-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(26px, 2.8vw, 36px); margin: 12px 0 16px; }
.contact-info > p { color: var(--text-mid); margin-bottom: 32px; }

.info-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  transition: var(--transition);
}
.info-card:hover { border-color: var(--green); }
.info-icon {
  width: 44px; height: 44px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark);
  font-size: 16px;
  flex-shrink: 0;
}
.info-card h5 { font-size: 14px; font-family: 'DM Sans', sans-serif; font-weight: 600; color: var(--text-mid); margin-bottom: 4px; }
.info-card a, .info-card p { font-size: 15px; color: var(--text); font-weight: 500; }
.info-card a:hover { color: var(--green-dark); }

.contact-social {
  display: flex;
  gap: 12px;
}
.contact-social a {
  width: 44px; height: 44px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark);
  font-size: 16px;
  transition: var(--transition);
}
.contact-social a:hover { background: var(--green); color: #fff; }

.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.contact-form-wrap h3 {
  font-size: 24px;
  margin-bottom: 28px;
}

.map-section { line-height: 0; }

/* ===========================
   FORMS
   =========================== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--bg-soft);
  transition: var(--transition);
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(76,175,125,0.12);
}
.contact-form textarea { resize: vertical; }

.form-success {
  background: #e8f5ee;
  color: var(--green-dark);
  padding: 16px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 500;
  margin-top: 12px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #1a2b22;
  color: rgba(255,255,255,0.8);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.footer-brand .logo { color: #fff; }
.footer-brand .logo b { color: #7fecb4; }

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--green); color: #fff; }

.footer h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 20px;
}
.footer-links ul, .footer-services ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-links a:hover { color: #7fecb4; }
.footer-services li {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.footer-contact p, .footer-contact a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}
.footer-contact i { color: var(--green); margin-top: 3px; flex-shrink: 0; }
.footer-contact a:hover { color: #7fecb4; }

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ===========================
   WHATSAPP FLOAT
   =========================== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25d366;
  color: #fff;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  animation: pulse 2.5s infinite;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,0.7); }
}

/* ===========================
   ANIMATIONS ON SCROLL
   =========================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .benefits-flex, .about-flex { flex-direction: column; }
  .benefits-image { flex: none; width: 100%; }
  .benefits-image img { height: 380px; }
  .benefits-badge { left: 20px; }
  .about-image { flex: none; width: 100%; }
  .about-image img { height: 360px; }
  .about-badge { right: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-flex { flex-direction: column; }
  .quote-map { min-height: 300px; }
  .quote-form-wrap { flex: none; width: 100%; }
  .detail-flex { flex-direction: column; }
  .detail-image { flex: none; width: 100%; }
  .detail-image img { height: 320px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: #fff;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    gap: 4px;
    z-index: 999;
  }
  .hero-content { padding: 0 24px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.tall img { min-height: 220px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero { height: calc(100svh - 70px); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .offerings-grid { grid-template-columns: 1fr; }
}
