/* =========================================================
   DAILY FRESH MINI MART — Stylesheet (v2)
   "10K Feel" Edition — Custom icons, micro-interactions,
   carousel, redesigned footer
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --white: #FFFFFF;
  --light-gray: #F8FAFC;
  --green-dark: #14532D;
  --green-fresh: #22C55E;
  --green-dark-hover: #16a34a;
  --slate: #1E293B;
  --slate-light: #64748B;
  --orange: #F97316;
  --orange-dark: #ea580c;
  --yellow: #EAB308;
  --charcoal: #1A1A1A;
  --cream: #FEF9F1;
  --border-soft: #E2E8F0;

  --shadow-sm: 0 4px 6px rgba(0,0,0,0.05), 0 12px 30px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 15px rgba(0,0,0,0.06), 0 20px 50px rgba(0,0,0,0.12);
  --shadow-green: 0 12px 30px rgba(34, 197, 94, 0.25);
  --shadow-orange: 0 18px 40px rgba(249, 115, 22, 0.35);

  --radius-card: 16px;
  --radius-btn: 8px;
  --radius-pill: 999px;

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container-w: 1200px;
  --header-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  opacity: 0;
  animation: bodyFadeIn 0.6s var(--ease) forwards;
}
@keyframes bodyFadeIn { to { opacity: 1; } }

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

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 200;
  background: var(--green-fresh);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  transition: top 0.3s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ---------- Focus rings ---------- */
*:focus-visible {
  outline: 2px solid var(--green-fresh);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- SVG icons (defaults) ---------- */
.icon, .star-icon, .btn-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* =========================================================
   BUTTONS — with micro-interactions
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--radius-btn);
  transition: transform 0.4s var(--ease), background 0.3s var(--ease),
              box-shadow 0.3s var(--ease), color 0.3s var(--ease);
  will-change: transform;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn .btn-icon { width: 18px; height: 18px; transition: transform 0.4s var(--ease); }

.btn:hover { transform: translateY(-2px) scale(1.03); }
.btn:active { transform: translateY(0) scale(0.99); }
.btn:hover .btn-icon { transform: translateX(2px); }

.btn-md { padding: 12px 24px; font-size: 14px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-xl { padding: 18px 40px; font-size: 17px; letter-spacing: 0.2px; }

.btn-primary {
  background: var(--green-fresh);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.35);
}
.btn-primary:hover {
  background: var(--green-dark-hover);
  box-shadow: 0 10px 28px rgba(34, 197, 94, 0.5);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  padding: 11px 22px;
  font-size: 14px;
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--orange);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.btn-white:hover { background: var(--cream); }

/* Ripple/shine effect on primary buttons */
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s var(--ease);
}
.btn-primary:hover::after { left: 100%; }

/* =========================================================
   SECTION 1: STICKY HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--green-dark);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.logo:hover { transform: scale(1.02); }
.logo-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-bounce);
}
.logo:hover .logo-mark { transform: rotate(-8deg) scale(1.08); }
.logo-mark svg { width: 100%; height: 100%; }
.site-header:not(.scrolled) .logo { color: var(--white); }
.site-header.scrolled .logo { color: var(--green-dark); }

/* Nav */
.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--white);
  padding: 8px 0;
  position: relative;
  transition: color 0.3s var(--ease);
}
.site-header.scrolled .nav-link { color: var(--slate); }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--green-fresh);
  transition: width 0.35s var(--ease);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover,
.nav-link.active { color: var(--green-fresh); }
.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active { color: var(--green-dark); }

.header-cta {
  padding: 10px 18px;
  font-size: 14px;
}

/* Hamburger */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 101;
}
.hamburger-line {
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.35s var(--ease);
}
.site-header.scrolled .hamburger-line { background: var(--green-dark); }
.hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: var(--green-dark);
}
.hamburger.open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background: var(--green-dark);
}

/* =========================================================
   SECTION 2: HERO (decluttered)
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 24px 100px;
}
.hero-bg {
  position: absolute;
  inset: -50px 0;
  background-image: url('https://images.unsplash.com/photo-1542838132-92c53300491e?w=1920&q=80');
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(20, 83, 45, 0.85) 0%,
    rgba(20, 83, 45, 0.4) 50%,
    rgba(249, 115, 22, 0.3) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 68px;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -2px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.hero-tagline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.7;
  color: #E2E8F0;
  max-width: 580px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 4px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
}
.trust-badge strong { color: var(--yellow); font-weight: 700; }
.trust-open {
  background: rgba(34, 197, 94, 0.18);
  border: 1px solid var(--green-fresh);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  backdrop-filter: blur(6px);
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-fresh);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.stars-inline {
  display: inline-flex;
  gap: 1px;
}
.stars-inline .star-icon {
  width: 14px;
  height: 14px;
  color: var(--yellow);
}

/* Hero entrance */
.reveal-hero {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-hero.in {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.3s var(--ease);
}
.scroll-indicator:hover { opacity: 1; }
.chevron {
  width: 16px;
  height: 16px;
  border-right: 3px solid var(--green-fresh);
  border-bottom: 3px solid var(--green-fresh);
  transform: rotate(45deg);
  animation: bounce 2s infinite var(--ease);
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); }
  50% { transform: rotate(45deg) translate(4px, 4px); }
}

/* =========================================================
   SHARED SECTION STYLES
   ========================================================= */
.section { padding: 100px 0; }
.section-light { background: var(--light-gray); }
.section-dark { background: var(--green-dark); color: var(--white); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.section-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--green-fresh);
  text-transform: uppercase;
  letter-spacing: 4px;
}
.section-label-orange { color: var(--orange); }
.section-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 40px;
  color: var(--slate);
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.section-title-light { color: var(--white); }
.section-sub {
  font-size: 16px;
  color: var(--slate-light);
}

/* ---------- Cards Grid ---------- */
.cards-grid {
  display: grid;
  gap: 24px;
}
.cards-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
              border-color 0.4s var(--ease);
  border: 1px solid transparent;
  position: relative;
}

/* ---------- Product cards ---------- */
.product-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--green-fresh);
  box-shadow: var(--shadow-hover);
}
.product-card .card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-fresh);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  transition: transform 0.5s var(--ease-bounce), background 0.4s var(--ease);
}
.product-card .card-icon svg { width: 30px; height: 30px; }
.product-card:hover .card-icon {
  transform: scale(1.1) rotate(-6deg);
  background: var(--green-dark);
}
.card-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 20px;
  color: var(--slate);
}
.card-text {
  font-size: 15px;
  color: var(--slate-light);
  line-height: 1.6;
}

/* ---------- Why cards (with elaborate hover) ---------- */
.why-card {
  background: var(--charcoal);
  color: var(--white);
  border-top: 4px solid var(--orange);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease),
              border-color 0.5s var(--ease);
}
.why-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(to top, rgba(249, 115, 22, 0.18), transparent 70%);
  transition: height 0.6s var(--ease);
  pointer-events: none;
  z-index: 0;
}
.why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(249, 115, 22, 0.25), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
  z-index: 0;
}
.why-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-orange);
  border-top-color: var(--orange);
}
.why-card:hover::before { height: 100%; }
.why-card:hover::after { opacity: 1; }

.why-card > * { position: relative; z-index: 1; }
.why-card .card-title { color: var(--white); }
.why-card .card-text { color: #CBD5E1; }

.card-icon-large {
  font-size: 44px;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--orange);
  transition: transform 0.5s var(--ease-bounce), color 0.4s var(--ease);
}
.card-icon-large svg { width: 48px; height: 48px; margin: 0 auto; }
.why-card:hover .card-icon-large {
  transform: scale(1.2) rotate(-8deg);
  color: var(--yellow);
}

/* =========================================================
   STATS BAR
   ========================================================= */
.stats-bar {
  background: var(--orange);
  color: var(--white);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: var(--radius-card);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.stat-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}
.stat-number {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: var(--white);
}
.stat-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.95;
}

/* =========================================================
   CUSTOMER REVIEWS — CAROUSEL
   ========================================================= */
.carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 56px;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-card);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s var(--ease);
  will-change: transform;
}

.carousel-card {
  flex: 0 0 100%;
  padding: 0 12px;
  box-sizing: border-box;
}

/* Review card */
.review-card {
  background: var(--white);
  border-top: 3px solid var(--green-fresh);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
              border-color 0.4s var(--ease);
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--orange);
}
.quote-mark {
  position: absolute;
  top: -8px;
  left: 18px;
  color: var(--green-fresh);
  opacity: 0.18;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.quote-mark svg { width: 70px; height: 70px; }
.review-card:hover .quote-mark {
  opacity: 0.35;
  transform: scale(1.1) rotate(-5deg);
}
.stars {
  color: var(--yellow);
  display: flex;
  gap: 3px;
  position: relative;
  z-index: 1;
}
.stars .star-icon { width: 20px; height: 20px; }
.review-text {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.review-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
  margin-top: auto;
}

/* Carousel arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  z-index: 5;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease),
              color 0.3s var(--ease), box-shadow 0.3s var(--ease), opacity 0.3s var(--ease);
  opacity: 0.85;
}
.carousel-arrow svg { width: 20px; height: 20px; }
.carousel-arrow:hover {
  background: var(--green-fresh);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 22px rgba(34, 197, 94, 0.4);
  opacity: 1;
}
.carousel-arrow:active { transform: translateY(-50%) scale(0.96); }
.carousel-arrow-prev { left: 0; }
.carousel-arrow-next { right: 0; }

/* Carousel dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #CBD5E1;
  transition: width 0.4s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
  cursor: pointer;
  padding: 0;
}
.carousel-dot:hover {
  background: var(--green-fresh);
  transform: scale(1.2);
}
.carousel-dot.active {
  width: 32px;
  border-radius: var(--radius-pill);
  background: var(--green-fresh);
}

/* =========================================================
   CONTACT + MAP
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 24px;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  line-height: 1.6;
  color: #E2E8F0;
  padding: 10px 12px;
  border-radius: var(--radius-btn);
  transition: background 0.3s var(--ease);
}
.contact-list li:hover { background: rgba(255, 255, 255, 0.06); }
.contact-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-fresh);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-bounce), color 0.3s var(--ease);
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-icon-wa { color: var(--green-fresh); }
.contact-list li:hover .contact-icon { transform: scale(1.15) rotate(-4deg); }
.contact-link {
  color: var(--green-fresh);
  font-weight: 500;
  transition: color 0.3s var(--ease);
}
.contact-link:hover { color: var(--white); }
.contact-map { min-height: 350px; }
.contact-map iframe { display: block; width: 100%; }

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 60%);
  pointer-events: none;
}
.final-cta-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  position: relative;
}
.final-cta-sub {
  font-size: 16px;
  color: var(--cream);
  margin-bottom: 24px;
  position: relative;
}
.final-cta .btn { position: relative; }

/* =========================================================
   FOOTER (Redesigned)
   ========================================================= */
.site-footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

/* Col 1: Brand */
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  transition: transform 0.3s var(--ease);
}
.footer-brand:hover { transform: translateX(2px); }
.footer-brand .logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}
.footer-brand-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
}
.footer-tagline {
  font-size: 14px;
  color: #CBD5E1;
  margin-bottom: 4px;
}
.footer-loc {
  font-size: 13px;
  color: #94A3B8;
  margin-bottom: 18px;
}

/* Social icons */
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease-bounce), background 0.3s var(--ease),
              color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.social-link svg { width: 20px; height: 20px; }
.social-link:hover { transform: translateY(-4px) scale(1.08); }
.social-ig:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: 0 6px 18px rgba(220, 39, 67, 0.45);
}
.social-fb:hover {
  background: #1877F2;
  box-shadow: 0 6px 18px rgba(24, 119, 242, 0.45);
}
.social-tt:hover {
  background: #000;
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.3);
}

/* Footer headings */
.footer-heading {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Footer action buttons (Call, WhatsApp, Directions) */
.footer-action {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  margin-bottom: 10px;
  border-radius: var(--radius-btn);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
              border-color 0.3s var(--ease);
}
.footer-action:hover {
  transform: translateX(4px);
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.4);
}
.footer-action-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--green-fresh);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-bounce);
}
.footer-action-icon-wa { background: var(--green-fresh); }
.footer-action-icon svg { width: 18px; height: 18px; }
.footer-action:hover .footer-action-icon { transform: rotate(-8deg) scale(1.08); }
.footer-action-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-action-label {
  font-size: 11px;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
.footer-action-value {
  font-size: 14px;
  color: var(--white);
  font-weight: 600;
}

/* Footer hours */
.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  transition: padding 0.3s var(--ease);
}
.footer-hours li:hover { padding-left: 6px; }
.footer-hours li:last-child { border-bottom: none; }
.footer-hours li span:first-child { color: #CBD5E1; }
.footer-hours li span:last-child { color: var(--green-fresh); font-weight: 500; }

/* Footer links */
.footer-links { display: flex; flex-direction: column; gap: 4px; }
.footer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  color: #CBD5E1;
  padding: 8px 12px;
  border-radius: var(--radius-btn);
  transition: color 0.3s var(--ease), background 0.3s var(--ease),
              transform 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.footer-links a svg {
  width: 16px;
  height: 16px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.footer-links a:hover {
  color: var(--green-fresh);
  background: rgba(34, 197, 94, 0.08);
  transform: translateX(4px);
}
.footer-links a:hover svg {
  opacity: 1;
  transform: translateX(0);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: #94A3B8;
}

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-fresh);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.45);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  animation: floatPulse 2.4s ease-in-out infinite;
}
.floating-whatsapp svg { width: 28px; height: 28px; }
.floating-whatsapp:hover {
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 10px 28px rgba(34, 197, 94, 0.6);
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(34, 197, 94, 0.45), 0 0 0 0 rgba(34, 197, 94, 0.5); }
  50% { box-shadow: 0 6px 20px rgba(34, 197, 94, 0.45), 0 0 0 14px rgba(34, 197, 94, 0); }
}

/* =========================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-group .card,
.reveal-group .stat-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-group.in .card,
.reveal-group.in .stat-item {
  opacity: 1;
  transform: translateY(0);
}
.reveal-group.in .card:nth-child(1),
.reveal-group.in .stat-item:nth-child(1) { transition-delay: 0ms; }
.reveal-group.in .card:nth-child(2),
.reveal-group.in .stat-item:nth-child(2) { transition-delay: 100ms; }
.reveal-group.in .card:nth-child(3),
.reveal-group.in .stat-item:nth-child(3) { transition-delay: 200ms; }
.reveal-group.in .card:nth-child(4),
.reveal-group.in .stat-item:nth-child(4) { transition-delay: 300ms; }
.reveal-group.in .card:nth-child(5),
.reveal-group.in .stat-item:nth-child(5) { transition-delay: 400ms; }
.reveal-group.in .card:nth-child(6),
.reveal-group.in .stat-item:nth-child(6) { transition-delay: 500ms; }

/* =========================================================
   RESPONSIVE — Tablet (1024 / 768)
   ========================================================= */
@media (max-width: 1024px) {
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 54px; }
  .section-title { font-size: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .hamburger { display: flex; }
  .header-cta { display: none; }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 75%;
    max-width: 320px;
    background: var(--white);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    padding: 80px 28px 28px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    z-index: 99;
  }
  .main-nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; gap: 8px; align-items: stretch; }
  .nav-link {
    color: var(--slate);
    display: block;
    padding: 14px 12px;
    border-radius: var(--radius-btn);
    font-size: 18px;
  }
  .nav-link::after { display: none; }
  .nav-link:hover, .nav-link.active {
    background: var(--light-gray);
    color: var(--green-dark);
  }

  body.nav-open { overflow: hidden; }
  body.nav-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 98;
  }

  .hero { padding: 100px 20px 80px; }
  .hero-title { font-size: 42px; }
  .hero-tagline { font-size: 17px; }
  .hero-buttons { flex-direction: column; width: 100%; max-width: 320px; }
  .hero-buttons .btn { width: 100%; }
  .hero-trust { gap: 16px; font-size: 13px; flex-direction: column; }

  .section { padding: 70px 0; }
  .section-title { font-size: 30px; }
  .section-header { margin-bottom: 40px; }

  .cards-3 { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .stat-number { font-size: 38px; }

  /* Carousel: 1 card on mobile */
  .carousel { padding: 0 12px; }
  .carousel-arrow {
    width: 38px;
    height: 38px;
    top: auto;
    bottom: -52px;
  }
  .carousel-arrow-prev { left: 8px; }
  .carousel-arrow-next { right: 8px; }
  .carousel-dots { margin-top: 50px; }
  .review-card { padding: 24px; }

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

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

  .floating-whatsapp { width: 52px; height: 52px; bottom: 18px; right: 18px; }
}

/* =========================================================
   RESPONSIVE — Mobile (375px)
   ========================================================= */
@media (max-width: 480px) {
  .container { padding: 0 18px; }

  .hero-title { font-size: 36px; }
  .hero-tagline { font-size: 16px; }
  .hero-content { gap: 22px; }

  .section-title { font-size: 26px; }
  .section-label { font-size: 12px; letter-spacing: 3px; }

  .card { padding: 24px; }
  .card-icon { width: 56px; height: 56px; }
  .card-icon svg { width: 26px; height: 26px; }
  .card-title { font-size: 18px; }

  .stat-number { font-size: 32px; }
  .stat-label { font-size: 12px; letter-spacing: 1.5px; }

  .final-cta-title { font-size: 26px; }

  .contact-title { font-size: 24px; }
  .contact-list li { font-size: 14px; gap: 10px; }

  .carousel-card { padding: 0 4px; }
  .review-card { padding: 20px; }
  .review-text { font-size: 14px; }
}

/* =========================================================
   PREFER-REDUCED-MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-hero, .reveal-group .card, .reveal-group .stat-item {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-bg { transform: none !important; }
  .pulse-dot, .floating-whatsapp, .chevron { animation: none !important; }
  .carousel-track { transition: none !important; }
}
