/*
Theme Name:  Mugunda Foods
Theme URI:   https://mugundafoods.com
Author:      Mugunda Foods
Author URI:  https://mugundafoods.com
Description: Official WordPress theme for Mugunda Foods — natural animal cooking fats made in Kenya. Clean, mobile-first, WhatsApp-integrated landing page.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mugunda-foods
Tags:        one-page, food, custom-colors, mobile-first, kenya
*/

/* ============================================================
   CSS CUSTOM PROPERTIES — Brand Colors & Tokens
============================================================ */
:root {
  --green:        #008000;
  --green-dark:   #14532D;
  --cream:        #F5F2E9;
  --cream-dark:   #EDE9DA;
  --gold:         #E5C85B;
  --gold-light:   #F0D87A;
  --red:          #8B2C2C;
  --text:         #333333;
  --text-muted:   #6B6555;
  --white:        #FFFFFF;
  --border:       rgba(0,128,0,0.12);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius:       10px;
  --radius-lg:    18px;
  --shadow-sm:    0 2px 8px rgba(20,83,45,0.08);
  --shadow-md:    0 6px 24px rgba(20,83,45,0.12);
  --shadow-lg:    0 16px 48px rgba(20,83,45,0.16);
  --transition:   0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; }

/* ============================================================
   UTILITY CLASSES
============================================================ */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section-pad { padding: 5rem 0; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.6rem;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 560px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: var(--transition);
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.3); }
.btn-whatsapp-sm {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.6rem 1.2rem; border-radius: 50px; font-size: 0.82rem;
  font-weight: 600; background: #25D366; color: var(--white);
  transition: var(--transition); width: 100%; justify-content: center;
}
.btn-whatsapp-sm:hover { background: #1ebe5a; transform: translateY(-2px); }

/* ============================================================
   NAVIGATION
============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(245,242,233,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name { font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; color: var(--green-dark); letter-spacing: 0.02em; }
.nav-logo-tagline { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green); font-weight: 500; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-size: 0.88rem; font-weight: 500; color: var(--text-muted); position: relative; padding-bottom: 3px; transition: color var(--transition); }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--green); border-radius: 2px; transition: width var(--transition); }
.nav-links a:hover { color: var(--green-dark); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { font-size: 0.85rem !important; padding: 0.55rem 1.3rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--green-dark); border-radius: 2px; transition: var(--transition); }
.mobile-menu { display: none; flex-direction: column; background: var(--cream); border-top: 1px solid var(--border); padding: 1.5rem 1.25rem; gap: 1.2rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1rem; font-weight: 500; color: var(--text); padding: 0.5rem 0; border-bottom: 1px solid var(--border); }

/* ============================================================
   HERO SECTION
============================================================ */
#hero {
  padding-top: 66px;
  min-height: 100svh;
  background: linear-gradient(160deg, var(--green-dark) 0%, #1a6b3a 55%, #2d8b50 100%);
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Ccircle cx='40' cy='40' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: -120px; right: -120px;
  width: 500px; height: 500px;
  background: rgba(229,200,91,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
  align-items: center;
  padding: 4rem 1.25rem 5rem;
  max-width: 1120px; margin: 0 auto; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(229,200,91,0.18); border: 1px solid rgba(229,200,91,0.35);
  color: var(--gold); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1.4rem;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.7); } }
.hero-headline { font-family: var(--font-display); font-size: clamp(2.8rem, 8vw, 5.5rem); font-weight: 700; color: var(--white); line-height: 1.08; margin-bottom: 1.2rem; }
.hero-headline em { font-style: italic; color: var(--gold); }
.hero-subhead { font-size: 1.05rem; color: rgba(255,255,255,0.72); line-height: 1.75; max-width: 480px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-trust { display: flex; gap: 1.5rem; margin-top: 2.5rem; flex-wrap: wrap; }
.trust-pill { display: flex; align-items: center; gap: 0.4rem; color: rgba(255,255,255,0.65); font-size: 0.82rem; }
.trust-pill-icon { width: 18px; height: 18px; background: rgba(229,200,91,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; }
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.hero-product-showcase { position: relative; width: 100%; max-width: 440px; }
.hero-main-jar {
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg); padding: 2.5rem 2rem;
  text-align: center; animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-jar-emoji { font-size: 5rem; line-height: 1; margin-bottom: 1rem; display: block; }
.hero-jar-label { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--white); margin-bottom: 0.3rem; }
.hero-jar-sub { font-size: 0.8rem; color: rgba(255,255,255,0.55); letter-spacing: 0.1em; text-transform: uppercase; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; justify-content: center; }
.hero-chip { background: rgba(229,200,91,0.15); border: 1px solid rgba(229,200,91,0.25); color: var(--gold-light); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.06em; padding: 0.3rem 0.75rem; border-radius: 50px; }
.hero-stat { position: absolute; background: rgba(255,255,255,0.12); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius); padding: 0.7rem 1rem; }
.hero-stat-top { top: -16px; right: -16px; }
.hero-stat-bottom { bottom: -16px; left: -16px; }
.hero-stat-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--gold); line-height: 1; }
.hero-stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.6); letter-spacing: 0.06em; margin-top: 2px; }

/* ============================================================
   TRUST BAR
============================================================ */
.trust-bar { background: var(--green); padding: 0.9rem 1.25rem; }
.trust-bar-inner { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.tb-item { display: flex; align-items: center; gap: 0.4rem; color: rgba(255,255,255,0.88); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em; }
.tb-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ============================================================
   ABOUT SECTION
============================================================ */
#about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.about-visual {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  border-radius: var(--radius-lg); padding: 3rem 2rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  position: relative; overflow: hidden;
}
.about-visual::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,0.04); pointer-events: none; }
.about-stat-row { display: flex; gap: 1.2rem; }
.about-stat { flex: 1; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 1.2rem 1rem; text-align: center; }
.about-stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 0.3rem; }
.about-stat-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.6); letter-spacing: 0.06em; text-transform: uppercase; }
.about-tagline { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: rgba(255,255,255,0.85); line-height: 1.5; border-left: 3px solid var(--gold); padding-left: 1rem; }
.about-origin { display: flex; align-items: center; gap: 0.6rem; color: rgba(255,255,255,0.65); font-size: 0.82rem; }
.about-flag { font-size: 1.1rem; }
.about-body { font-size: 1rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 1.5rem; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 1.5rem; }
.pillar { display: flex; align-items: flex-start; gap: 0.6rem; padding: 0.9rem; background: var(--cream-dark); border-radius: var(--radius); border: 1px solid rgba(0,128,0,0.1); transition: var(--transition); }
.pillar:hover { border-color: var(--green); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.pillar-icon { width: 34px; height: 34px; background: rgba(0,128,0,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.pillar-title { font-size: 0.82rem; font-weight: 600; color: var(--green-dark); margin-bottom: 0.15rem; }
.pillar-desc { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; }

/* ============================================================
   PRODUCTS SECTION
============================================================ */
#products { background: var(--cream-dark); }
.products-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.product-card { background: var(--cream); border: 1px solid rgba(0,128,0,0.1); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(0,128,0,0.25); }
.product-img { height: 220px; overflow: hidden; background: #F0EDE4; display: flex; align-items: center; justify-content: center; position: relative; flex-shrink: 0; }
.product-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.4s ease; display: block; }
.product-card:hover .product-img img { transform: scale(1.05); }
/* Fallback gradient backgrounds (used when no image is set) */
.product-img.beef   { background: linear-gradient(135deg, #5C3A1E, #8B5E3C); }
.product-img.goat   { background: linear-gradient(135deg, #4A5240, #6B7A5E); }
.product-img.sheep  { background: linear-gradient(135deg, #6B5E4A, #9E8A6E); }
.product-img.pork   { background: linear-gradient(135deg, #7A4040, #B06060); }
.product-img.chicken{ background: linear-gradient(135deg, #6B6020, #A89B30); }
.product-img.fish   { background: linear-gradient(135deg, #2A4A6B, #3A7A9E); }
.product-img.camel  { background: linear-gradient(135deg, #7A5E2A, #B0904A); }
.product-img-emoji { font-size: 4.5rem; line-height: 1; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3)); transition: transform var(--transition); }
.product-card:hover .product-img-emoji { transform: scale(1.1); }
.product-badge { position: absolute; top: 0.75rem; left: 0.75rem; background: rgba(0,0,0,0.35); backdrop-filter: blur(6px); color: rgba(255,255,255,0.9); font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; padding: 0.25rem 0.6rem; border-radius: 50px; }
.product-badge.new { background: var(--green); }
.product-badge.popular { background: var(--gold); color: #333; }
.product-body { padding: 1.3rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.product-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.2rem; }
.product-latin { font-family: var(--font-display); font-style: italic; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.product-desc { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; flex: 1; margin-bottom: 1rem; }
.product-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.product-tag { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; background: rgba(0,128,0,0.08); color: var(--green); padding: 0.2rem 0.55rem; border-radius: 50px; }

/* ============================================================
   WHY CHOOSE US
============================================================ */
#why { background: var(--green-dark); }
#why .section-title { color: var(--cream); }
#why .section-body { color: rgba(245,242,233,0.65); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.why-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 2rem 1.5rem; text-align: center; transition: var(--transition); position: relative; overflow: hidden; }
.why-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green), var(--gold)); transform: scaleX(0); transition: var(--transition); }
.why-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon { width: 64px; height: 64px; margin: 0 auto 1.2rem; background: rgba(229,200,91,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; border: 1px solid rgba(229,200,91,0.2); }
.why-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--cream); margin-bottom: 0.5rem; }
.why-desc { font-size: 0.85rem; color: rgba(245,242,233,0.55); line-height: 1.65; }

/* ============================================================
   HOW TO USE
============================================================ */
#how { background: var(--cream); }
.how-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.how-steps { display: flex; flex-direction: column; gap: 1.2rem; }
.how-step { display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.2rem; background: var(--cream-dark); border-radius: var(--radius); border: 1px solid var(--border); transition: var(--transition); }
.how-step:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.how-step-num { width: 40px; height: 40px; background: var(--green); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 700; flex-shrink: 0; font-family: var(--font-display); }
.how-step-title { font-size: 0.95rem; font-weight: 600; color: var(--green-dark); margin-bottom: 0.2rem; }
.how-step-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.how-uses-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.use-card { background: var(--cream-dark); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem; transition: var(--transition); }
.use-card:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.use-card-icon { font-size: 1.6rem; margin-bottom: 0.5rem; }
.use-card-title { font-size: 0.88rem; font-weight: 600; color: var(--green-dark); margin-bottom: 0.2rem; }
.use-card-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.55; }

/* ============================================================
   CONTACT / ORDER
============================================================ */
#contact { background: var(--cream-dark); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.contact-info .section-body { margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; }
.contact-item-icon { width: 44px; height: 44px; background: rgba(0,128,0,0.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; border: 1px solid var(--border); }
.contact-item-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 0.1rem; }
.contact-item-value { font-size: 0.95rem; font-weight: 500; color: var(--text); }
.contact-item-value a { color: var(--green-dark); transition: color var(--transition); }
.contact-item-value a:hover { color: var(--green); }
.order-card { background: var(--green-dark); border-radius: var(--radius-lg); padding: 2.5rem 2rem; position: relative; overflow: hidden; }
.order-card::before { content: ''; position: absolute; top: -80px; right: -80px; width: 260px; height: 260px; background: rgba(229,200,91,0.07); border-radius: 50%; pointer-events: none; }
.order-card-title { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--cream); margin-bottom: 0.6rem; position: relative; }
.order-card-body { font-size: 0.9rem; color: rgba(245,242,233,0.65); line-height: 1.7; margin-bottom: 1.8rem; position: relative; }
.order-btns { display: flex; flex-direction: column; gap: 0.8rem; position: relative; }
.order-btn-wa { display: flex; align-items: center; justify-content: center; gap: 0.6rem; padding: 1rem 1.5rem; border-radius: 50px; background: #25D366; color: var(--white); font-size: 1rem; font-weight: 700; transition: var(--transition); border: none; cursor: pointer; text-decoration: none; }
.order-btn-wa:hover { background: #1ebe5a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }
.order-note { font-size: 0.75rem; color: rgba(245,242,233,0.4); text-align: center; margin-top: 0.5rem; }
.map-placeholder { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; text-align: center; color: var(--text-muted); font-size: 0.85rem; }
.map-pin { font-size: 2rem; margin-bottom: 0.5rem; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer { background: #0D2818; padding: 3rem 1.25rem 1.5rem; }
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 1.5rem; }
.footer-brand-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--cream); margin-bottom: 0.4rem; }
.footer-brand-desc { font-size: 0.85rem; color: rgba(245,242,233,0.45); line-height: 1.7; max-width: 280px; }
.footer-col-title { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.85rem; color: rgba(245,242,233,0.45); transition: color var(--transition); }
.footer-links a:hover { color: var(--cream); }
.footer-socials { display: flex; gap: 0.75rem; margin-top: 1.2rem; }
.social-btn { width: 38px; height: 38px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; color: rgba(245,242,233,0.55); transition: var(--transition); text-decoration: none; }
.social-btn:hover { background: var(--green); border-color: var(--green); color: var(--white); transform: translateY(-2px); }
.footer-bottom { display: flex; flex-direction: column; gap: 0.5rem; align-items: center; text-align: center; }
.footer-copy { font-size: 0.78rem; color: rgba(245,242,233,0.3); }
.footer-tagline { font-family: var(--font-display); font-style: italic; font-size: 0.85rem; color: rgba(229,200,91,0.4); }

/* ============================================================
   FLOATING WHATSAPP BUTTON
============================================================ */
.wa-float { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 900; background: #25D366; color: var(--white); width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: 0 6px 24px rgba(37,211,102,0.45); transition: var(--transition); text-decoration: none; animation: wa-bounce 3s ease-in-out infinite; }
.wa-float:hover { background: #1ebe5a; transform: scale(1.1); }
@keyframes wa-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.wa-float-tooltip { position: absolute; right: 68px; background: #0D2818; color: var(--white); font-size: 0.78rem; font-weight: 600; white-space: nowrap; padding: 0.4rem 0.8rem; border-radius: 50px; pointer-events: none; opacity: 0; transition: opacity var(--transition); }
.wa-float:hover .wa-float-tooltip { opacity: 1; }

/* ============================================================
   ANIMATIONS
============================================================ */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (min-width: 640px) {
  .about-pillars { grid-template-columns: repeat(2, 1fr); }
  .how-uses-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 2fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
@media (min-width: 768px) {
  .hamburger { display: none; }
  .nav-links { display: flex; }
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 4rem; padding: 5rem 1.25rem 6rem; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .hamburger { display: flex; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
}
