/* ============================================
   KUNDAN POULTRY FARM — PREMIUM STYLESHEET
   Color Palette: Deep Green + Gold + Red
   Fonts: Baloo 2 + Noto Sans Devanagari
   ============================================ */

:root {
  --green-dark:   #1a4d2e;
  --green-mid:    #2d7a4f;
  --green-light:  #4caf50;
  --green-pale:   #e8f5e9;
  --gold:         #f5a623;
  --gold-dark:    #d4881a;
  --gold-light:   #ffd166;
  --red:          #c0392b;
  --red-dark:     #96281b;
  --red-light:    #e74c3c;
  --white:        #ffffff;
  --off-white:    #fafaf7;
  --text-dark:    #1a1a1a;
  --text-mid:     #444444;
  --text-light:   #777777;
  --border:       #e0e0e0;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.18);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    32px;
  --transition:   all 0.35s 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: 'Noto Sans Devanagari', 'Baloo 2', sans-serif;
  color: var(--text-dark);
  background: var(--off-white);
  overflow-x: hidden;
  line-height: 1.7;
}

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

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

.section { padding: 90px 0; }

/* ===== TYPOGRAPHY ===== */
.sec-title {
  font-family: 'Baloo 2', 'Noto Sans Devanagari', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.sec-title.light { color: var(--white); }
.gold { color: var(--gold); }
.sec-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.sec-tag.light { background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.4); }
.sec-desc { font-size: 1.05rem; color: var(--text-mid); max-width: 560px; }
.sec-desc.light { color: rgba(255,255,255,0.85); }
.sec-header { text-align: center; margin-bottom: 56px; }
.sec-header .sec-desc { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Baloo 2', 'Noto Sans Devanagari', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-red {
  background: linear-gradient(135deg, var(--red-light), var(--red));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(192,57,43,0.4);
}
.btn-red:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(192,57,43,0.5); }
.btn-green {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-green:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-full { width: 100%; justify-content: center; }
.mt-1 { margin-top: 16px; }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 50px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 12px 40px rgba(37,211,102,0.6); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.15); }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(26,77,46,0.97);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon { font-size: 2rem; }
.logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
.logo-sub { font-size: 0.7rem; color: var(--gold-light); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
  background: rgba(255,255,255,0.1);
}
.nav-cta {
  background: linear-gradient(135deg, var(--red-light), var(--red));
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(192,57,43,0.4);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(192,57,43,0.5); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: hero-zoom 12s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,30,15,0.88) 0%,
    rgba(26,77,46,0.75) 40%,
    rgba(10,20,10,0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 20px 60px;
  max-width: 900px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.2);
  border: 1px solid rgba(245,166,35,0.5);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Baloo 2', 'Noto Sans Devanagari', sans-serif;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.ht-line { display: block; }
.ht-line.gold {
  color: var(--gold);
  text-shadow: 0 0 40px rgba(245,166,35,0.4);
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  margin-bottom: 16px;
}
.hero-sub strong { color: var(--gold-light); }
.hero-loc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  margin: 0 20px 40px;
  overflow: hidden;
}
.hstat {
  flex: 1;
  text-align: center;
  padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hstat:last-child { border-right: none; }
.hstat-n {
  font-family: 'Baloo 2', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.hstat span:nth-child(2) { font-size: 1.5rem; font-weight: 900; color: var(--gold); }
.hstat-l { font-size: 0.82rem; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* ===== MARQUEE ===== */
.marquee-strip {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== ABOUT ===== */
.about-sec { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-imgs {
  position: relative;
  height: 480px;
}
.aimg-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 85%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.aimg-main img { width: 100%; height: 100%; object-fit: cover; }
.aimg-sec {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%;
  height: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}
.aimg-sec img { width: 100%; height: 100%; object-fit: cover; }
.aimg-badge {
  position: absolute;
  top: 50%; left: 60%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-radius: 50%;
  width: 100px; height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 30px rgba(245,166,35,0.5);
  z-index: 3;
}
.ab-num { font-family: 'Baloo 2', sans-serif; font-size: 1.8rem; font-weight: 900; line-height: 1; }
.ab-txt { font-size: 0.65rem; font-weight: 600; line-height: 1.3; }
.about-p { color: var(--text-mid); margin-bottom: 16px; font-size: 1rem; }
.about-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 24px 0; }
.afeat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}
.owner-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--green-pale);
  border: 1px solid rgba(45,122,79,0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-top: 24px;
}
.owner-av { font-size: 2.5rem; }
.owner-info { display: flex; flex-direction: column; gap: 2px; }
.owner-info strong { font-size: 1rem; color: var(--green-dark); }
.owner-info span { font-size: 0.82rem; color: var(--text-mid); }
.udyam-tag {
  display: inline-block;
  background: var(--green-dark);
  color: var(--gold-light) !important;
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.72rem !important;
  font-weight: 700;
  margin-top: 4px;
}

/* ===== PRODUCTS ===== */
.products-sec { background: var(--off-white); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pcard {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.pcard:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pcard-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.pcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.pcard:hover .pcard-img img { transform: scale(1.08); }
.pcard-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: linear-gradient(135deg, var(--red-light), var(--red));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}
.pcard-badge.premium { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.pcard-badge.new-badge { background: linear-gradient(135deg, #8e44ad, #6c3483); }
.pcard-body { padding: 20px; }
.pcard-icon { font-size: 1.8rem; margin-bottom: 8px; }
.pcard-body h3 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.pcard-body p { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 14px; line-height: 1.6; }
.pcard-price {
  font-size: 0.78rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 14px;
  padding: 6px 12px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  text-align: center;
}

/* ===== WHY CHOOSE US ===== */
.why-sec {
  position: relative;
  overflow: hidden;
}
.why-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.why-bg-img img { width: 100%; height: 100%; object-fit: cover; }
.why-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,30,15,0.93) 0%, rgba(26,77,46,0.88) 100%);
}
.why-sec .container { position: relative; z-index: 2; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-6px);
  border-color: rgba(245,166,35,0.4);
}
.why-icon { font-size: 2.8rem; margin-bottom: 16px; }
.why-card h3 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.why-card p { font-size: 0.88rem; color: rgba(255,255,255,0.78); line-height: 1.7; }

/* ===== GALLERY ===== */
.gallery-sec { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gitem {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gitem.big {
  grid-column: span 1;
  grid-row: span 2;
  aspect-ratio: unset;
}
.gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gitem:hover img { transform: scale(1.08); }
.gitem-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,30,15,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition);
}
.gitem:hover .gitem-overlay { opacity: 1; }
.gitem-overlay span { color: var(--white); font-weight: 700; font-size: 0.9rem; }

/* ===== REVIEWS ===== */
.reviews-sec { background: var(--off-white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rcard {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.rcard::before {
  content: '"';
  position: absolute;
  top: 16px; right: 20px;
  font-size: 5rem;
  color: var(--green-pale);
  font-family: Georgia, serif;
  line-height: 1;
}
.rcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.rcard-stars { font-size: 1.1rem; margin-bottom: 14px; }
.rcard-text { font-size: 0.92rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.rcard-author { display: flex; align-items: center; gap: 12px; }
.rcard-av {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.rcard-author div { display: flex; flex-direction: column; }
.rcard-author strong { font-size: 0.95rem; color: var(--text-dark); }
.rcard-author span { font-size: 0.78rem; color: var(--text-light); }

/* ===== CONTACT ===== */
.contact-sec { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}
.cinfo-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  transition: var(--transition);
}
.cinfo-card:hover { background: rgba(45,122,79,0.12); }
.cinfo-icon { font-size: 1.6rem; flex-shrink: 0; }
.cinfo-card h4 { font-size: 0.82rem; color: var(--text-light); font-weight: 600; margin-bottom: 4px; }
.cinfo-card a, .cinfo-card p {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.5;
}
.contact-social { display: flex; gap: 12px; margin-top: 8px; }
.soc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
}
.soc-btn.wa { background: linear-gradient(135deg, #25d366, #128c7e); color: var(--white); }
.soc-btn.call { background: linear-gradient(135deg, var(--red-light), var(--red)); color: var(--white); }
.soc-btn:hover { transform: translateY(-3px); }
.contact-form {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
}
.contact-form h3 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; }
.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: 'Noto Sans Devanagari', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45,122,79,0.12);
}
.form-group textarea { resize: vertical; }
.contact-map h3 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 16px;
}
.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 16px;
}
.map-address {
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.map-address strong { color: var(--green-dark); }

/* ===== FOOTER ===== */
.footer { background: var(--green-dark); color: var(--white); }
.footer-top { padding: 64px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.flogo-icon { font-size: 2.2rem; }
.flogo-main { display: block; font-family: 'Baloo 2', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--white); }
.flogo-sub { display: block; font-size: 0.72rem; color: var(--gold-light); }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.fsoc {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.fsoc.wa { background: #25d366; }
.fsoc.call { background: var(--red); }
.fsoc:hover { transform: translateY(-3px) scale(1.1); }
.footer-links-col h4,
.footer-contact-col h4 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  transition: var(--transition);
}
.footer-links-col a:hover { color: var(--gold-light); padding-left: 4px; }
.fcontact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}
.fcontact-item a { color: var(--gold-light); }
.fcontact-item a:hover { text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.footer-keywords { font-size: 0.72rem !important; color: rgba(255,255,255,0.35) !important; }

/* ===== ANIMATIONS ===== */
.anim-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}
.d1 { animation-delay: 0.15s !important; }
.d2 { animation-delay: 0.3s !important; }
.d3 { animation-delay: 0.45s !important; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.d1 { transition-delay: 0.15s; }
.reveal.d2 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-imgs { height: 320px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gitem.big { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/7; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(10,30,15,0.98); backdrop-filter: blur(20px); justify-content: center; align-items: center; gap: 8px; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.2rem; padding: 14px 32px; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 64px 0; }
  .hero-stats { flex-direction: row; margin: 0 12px 32px; }
  .hstat { padding: 16px 12px; }
  .hstat-n { font-size: 1.8rem; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }
}

@media (max-width: 560px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gitem.big { grid-column: span 2; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 280px; justify-content: center; }
  .about-feats { grid-template-columns: 1fr; }
  .contact-social { flex-direction: column; }
}

@media (max-width: 400px) {
  .products-grid { grid-template-columns: 1fr; }
  .hstat-n { font-size: 1.5rem; }
}

/* ===== FORM SUCCESS ===== */
.form-success {
  text-align: center;
  padding: 40px 20px;
  color: var(--green-dark);
}
.form-success .success-icon { font-size: 3rem; margin-bottom: 12px; }
.form-success h4 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.form-success p { font-size: 0.9rem; color: var(--text-mid); }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 999;
  width: 44px; height: 44px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  border: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--green-mid); transform: translateY(-3px); }