/* =============================================
   GRUBAR MODEL FARM – Main Stylesheet
   ============================================= */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:      #2d6a2f;
  --green-dark: #1a4a1c;
  --green-mid:  #3d8b40;
  --gold:       #d4a017;
  --gold-light: #f0c842;
  --cream:      #fdf8f0;
  --white:      #ffffff;
  --dark:       #1a1a1a;
  --text:       #3a3a3a;
  --text-light: #6b7280;
  --border:     #e5e7eb;
  --shadow:     0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.18);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--dark);
}

a { color: var(--green); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; }

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

/* ---- Buttons ---- */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: var(--transition);
  border: 2px solid var(--green);
}
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(45,106,47,0.3); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-whatsapp:hover { background: #1ea952; color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }

.btn-order {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: var(--white);
  padding: 11px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-order:hover { background: #1ea952; color: var(--white); transform: translateY(-2px); }

/* ---- Section Headers ---- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 16px; }
.section-header p { color: var(--text-light); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section-header.light h2 { color: var(--white); }
.section-header.light .section-tag { background: rgba(255,255,255,0.15); color: var(--gold-light); }
.section-header.light p { color: rgba(255,255,255,0.75); }

.section-tag {
  display: inline-block;
  background: rgba(45,106,47,0.1);
  color: var(--green);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ===================== TICKER ===================== */
.ticker-wrap {
  background: var(--green-dark);
  color: var(--white);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  position: relative;
  z-index: 1001;
}
.ticker-track {
  display: inline-block;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
}
.ticker-track span {
  display: inline-block;
  margin-right: 60px;
  font-size: 0.85rem;
  font-weight: 500;
}
.ticker-track a { color: var(--gold-light); }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===================== NAVBAR ===================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
}
.logo-img { width: 48px; height: 48px; object-fit: contain; border-radius: 50%; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-link {
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text);
  padding: 6px 10px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--green); background: rgba(45,106,47,0.08); }

.btn-whatsapp-nav {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-whatsapp-nav:hover { background: #1ea952; color: var(--white); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark);
  border-radius: 4px;
  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: 90vh;
  display: flex;
  align-items: center;
  background: url('../images/farm-hero.jpg') center center / cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,74,28,0.88) 0%, rgba(26,74,28,0.6) 60%, rgba(0,0,0,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px 60px;
  color: var(--white);
}
.hero-badge {
  display: inline-block;
  background: rgba(212,160,23,0.25);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 20px;
  max-width: 700px;
}
.hero-title span { color: var(--gold-light); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-suffix {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
}
.stat-label { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.7); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.8px; }

/* ===================== ABOUT ===================== */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--green);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge i { font-size: 1.5rem; margin-bottom: 6px; color: var(--gold-light); display: block; }
.about-badge span { font-weight: 700; font-size: 0.9rem; }

.about-text h3 { font-size: 1.8rem; margin-bottom: 16px; }
.about-text p { color: var(--text-light); margin-bottom: 14px; line-height: 1.85; }

.about-values { margin: 28px 0; display: flex; flex-direction: column; gap: 20px; }
.value-item { display: flex; align-items: flex-start; gap: 16px; }
.value-item i { font-size: 1.2rem; color: var(--green); margin-top: 3px; flex-shrink: 0; }
.value-item h4 { font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 700; margin-bottom: 4px; color: var(--dark); }
.value-item p { color: var(--text-light); font-size: 0.9rem; margin: 0; }

/* ===================== PRODUCTS ===================== */
.products { background: var(--green-dark); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.product-img-wrap { position: relative; overflow: hidden; }
.product-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--dark);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-badge.popular { background: var(--green); color: var(--white); }

.product-body { padding: 24px; }
.product-body h3 { font-size: 1.3rem; margin-bottom: 10px; }
.product-body p { color: var(--text-light); font-size: 0.92rem; margin-bottom: 16px; line-height: 1.7; }

.product-features { list-style: none; margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.product-features li { display: flex; align-items: center; gap: 8px; font-size: 0.87rem; color: var(--text); }
.product-features i { color: var(--green); font-size: 0.8rem; flex-shrink: 0; }

/* ===================== HORTICULTURE ===================== */
.horticulture { background: var(--cream); }
.hort-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hort-img-wrap {}
.hort-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hort-text h3 { font-size: 1.9rem; margin-bottom: 16px; }
.hort-text p { color: var(--text-light); margin-bottom: 24px; line-height: 1.85; }
.hort-features { margin-bottom: 32px; display: flex; flex-direction: column; gap: 20px; }
.hort-feat { display: flex; align-items: flex-start; gap: 16px; }
.hort-feat i { font-size: 1.3rem; color: var(--green); margin-top: 3px; flex-shrink: 0; }
.hort-feat h4 { font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 700; margin-bottom: 4px; color: var(--dark); }
.hort-feat p { color: var(--text-light); font-size: 0.9rem; margin: 0; }

/* ===================== DELIVERY ===================== */
.delivery { background: var(--green); }
.delivery-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.delivery-step {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  color: var(--white);
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  position: relative;
  transition: var(--transition);
}
.delivery-step:hover { background: rgba(255,255,255,0.2); transform: translateY(-4px); }
.step-icon {
  width: 64px; height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: var(--dark);
}
.step-num {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.15);
}
.delivery-step h3 { font-size: 1.15rem; color: var(--white); margin-bottom: 10px; }
.delivery-step p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }

.delivery-arrow { font-size: 1.5rem; color: rgba(255,255,255,0.4); }
.delivery-note {
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}
.delivery-note i { color: var(--gold-light); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.delivery-note a { color: var(--gold-light); font-weight: 600; }

/* ===================== WHY CHOOSE US ===================== */
.why-us { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
}
.why-card:hover { transform: translateY(-6px); border-color: var(--green); box-shadow: var(--shadow-lg); }
.why-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--white);
}
.why-card h3 { font-size: 1.1rem; font-family: 'Inter', sans-serif; font-weight: 700; margin-bottom: 10px; }
.why-card p { color: var(--text-light); font-size: 0.9rem; }

/* ===================== GALLERY ===================== */
.gallery { background: var(--green-dark); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid .gallery-item:nth-child(1),
.gallery-grid .gallery-item:nth-child(2) {
  grid-column: span 1;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,74,28,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lb-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lb-close { top: 20px; right: 20px; font-size: 1.4rem; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--gold); color: var(--dark); }

/* ===================== TESTIMONIALS ===================== */
.testimonials { background: var(--cream); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
}
.testi-card:hover { transform: translateY(-4px); border-color: var(--green); box-shadow: var(--shadow-lg); }
.testi-card.featured { background: var(--green); border-color: var(--green); grid-column: span 1; }
.testi-card.featured .testi-stars,
.testi-card.featured .testi-text { color: var(--white); }
.testi-card.featured .testi-author strong { color: var(--gold-light); }
.testi-card.featured .testi-author span { color: rgba(255,255,255,0.7); }

.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { color: var(--text); font-size: 0.93rem; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testi-card.featured .testi-avatar { background: var(--gold); color: var(--dark); }
.testi-author strong { display: block; font-size: 0.95rem; color: var(--dark); font-family: 'Inter', sans-serif; }
.testi-author span { font-size: 0.82rem; color: var(--text-light); }

/* ===================== FAQ ===================== */
.faq { background: var(--green-dark); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active { border-color: var(--gold); background: rgba(255,255,255,0.1); }
.faq-q {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}
.faq-q:hover { color: var(--gold-light); }
.faq-q i { font-size: 0.85rem; transition: transform 0.3s ease; flex-shrink: 0; color: var(--gold); }
.faq-item.active .faq-q i { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-a { max-height: 200px; }
.faq-a p { padding: 0 24px 20px; color: rgba(255,255,255,0.75); font-size: 0.93rem; line-height: 1.75; }

/* ===================== CONTACT ===================== */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-icon {
  width: 48px; height: 48px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item h4 { font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.7px; color: var(--text-light); margin-bottom: 6px; }
.contact-item p, .contact-item a { color: var(--text); font-size: 0.95rem; line-height: 1.7; }
.contact-item a:hover { color: var(--green); }

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: var(--white) !important;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 8px;
}
.map-link:hover { background: var(--green-dark); color: var(--white) !important; }

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #25D366 !important;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 4px;
}
.whatsapp-link:hover { color: #1ea952 !important; }

.contact-social { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.social-btn.whatsapp { background: #25D366; color: var(--white); }
.social-btn.whatsapp:hover { background: #1ea952; color: var(--white); transform: translateY(-2px); }
.social-btn.email { background: var(--green); color: var(--white); }
.social-btn.email:hover { background: var(--green-dark); color: var(--white); transform: translateY(-2px); }
.social-btn.phone { background: var(--gold); color: var(--dark); }
.social-btn.phone:hover { background: var(--gold-light); transform: translateY(-2px); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}
.contact-form h3 { font-size: 1.5rem; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); 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);
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,106,47,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: var(--transition);
}
.btn-submit:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(45,106,47,0.3); }

.form-success {
  text-align: center;
  padding: 28px;
  color: var(--green);
}
.form-success i { font-size: 2.5rem; margin-bottom: 12px; display: block; }
.form-success p { font-weight: 600; font-size: 1rem; }

/* ===================== FOOTER ===================== */
.footer { background: var(--dark); color: rgba(255,255,255,0.75); padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { width: 60px; height: 60px; object-fit: contain; border-radius: 50%; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; color: rgba(255,255,255,0.6); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }

.footer-links h4, .footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: var(--transition); }
.footer-links li a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact p { font-size: 0.88rem; margin-bottom: 10px; display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.6); }
.footer-contact i { color: var(--green-mid); flex-shrink: 0; margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 12px;
  transition: var(--transition);
}
.footer-whatsapp:hover { background: #1ea952; transform: translateY(-2px); }

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

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

/* ===================== REVEAL ANIMATIONS ===================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .hort-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .about-badge { bottom: 10px; right: 10px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links li { width: 100%; }
  .nav-link { display: block; padding: 12px 24px; border-radius: 0; }
  .btn-whatsapp-nav { margin: 12px 24px; }
  .hamburger { display: flex; }

  .hero-stats { gap: 24px; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card.featured { grid-column: span 1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .delivery-steps { flex-direction: column; align-items: center; }
  .delivery-arrow { transform: rotate(90deg); }
  .footer-grid { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .contact-form-wrap { padding: 28px 20px; }
  .gallery-grid { grid-template-columns: 1fr; }
}
