:root {
  --primary: #064e3b;
  --accent: #10b981;
  --bg-cream: #fdfcf9;
  --text-dark: #022c22;
  --text-muted: #4b5563;
  --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-cream);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== FIX: consistent spacing & mobile gaps ===== */
section, .section-block {
  width: 100%;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
/* ALL sections get equal top/bottom padding – no huge gaps, no zero margins */
.hero-section,
.spec-section,
.why-section,
.product-section,
.blog-section,
.contact-section {
  padding: 80px 0;
}
/* first section extra top padding because of fixed header */
.hero-section {
  padding-top: 160px;
}
/* last section footer spacing */
footer {
  background: var(--primary);
  color: white;
  padding: 60px 0;
  margin-top: 0;
}

/* mobile fine-tuning */
@media (max-width: 900px) {
  .hero-section { padding-top: 130px; padding-bottom: 60px; }
  .spec-section, .why-section, .product-section, .blog-section, .contact-section {
    padding: 60px 0;
  }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero-section { padding-top: 120px; padding-bottom: 50px; }
  .spec-section, .why-section, .product-section, .blog-section, .contact-section {
    padding: 50px 0;
  }
  h2 { font-size: 32px !important; line-height: 1.2; }
}

/* all reveal + text containers get proper inner spacing */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition);
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(253, 252, 249, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(6, 78, 59, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
@media (max-width: 900px) {
  .nav-inner { height: 70px; }
}

.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--primary); }
.logo-box {
  background: var(--primary); color: white; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px; font-family: "Playfair Display", serif; font-weight: 700; font-size: 20px;
}
.brand-text b { display: block; font-size: 20px; letter-spacing: -0.5px; line-height: 1; }
.brand-text span { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); font-weight: 700; }

nav a {
  text-decoration: none; color: var(--text-dark); font-weight: 600;
  margin-left: 30px; font-size: 15px;
}
.quote-btn {
  background: var(--primary); color: white; padding: 10px 20px; border-radius: 8px;
  margin-left: 30px; text-decoration: none; display: inline-block; border: none; cursor: pointer;
}
.menu-toggle { display: none; font-size: 28px; background: none; border: none; color: var(--primary); cursor: pointer; }

/* mobile nav */
@media (max-width: 900px) {
  nav {
    position: absolute; top: 70px; right: 0; background: white; width: 100%;
    display: none; flex-direction: column; padding: 25px 20px;
    box-shadow: 0 15px 25px rgba(0,0,0,0.05); border-top: 1px solid #eee;
  }
  nav a { margin: 12px 0; font-size: 16px; }
  .menu-toggle { display: block; }
  nav.active { display: flex; }
}

/* hero grid */
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-img-stack { order: -1; }
}

.hero-img-stack { position: relative; }
.main-img { width: 100%; border-radius: 30px; box-shadow: 0 30px 60px rgba(0,0,0,0.1); }
.badge-float {
  position: absolute; bottom: -20px; left: -20px; background: white; padding: 20px;
  border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); display: flex; align-items: center; gap: 12px;
}

/* spec / product / why grids */
.spec-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px;
}
.spec-item { border-left: 3px solid var(--accent); padding-left: 20px; }
.spec-item h3 { color: var(--primary); margin-bottom: 10px; font-family: "Playfair Display"; font-size: 24px; }

.product-card {
  background: white; border-radius: 24px; padding: 15px; border: 1px solid #f1f1f1;
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(6,78,59,0.05); }
.product-card img {
  width: 100%; height: 280px; object-fit: cover; border-radius: 18px;
}
.price-tag { color: var(--primary); font-weight: 800; font-size: 18px; margin-top: 10px; display: block; }

.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px;
}
.why-card {
  background: white; padding: 35px; border-radius: 20px; border: 1px solid #f1f1f1;
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(6,78,59,0.05); }
.why-card h3 { color: var(--primary); margin-bottom: 12px; font-size: 18px; }

.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px;
}
.blog-card {
  background: var(--bg-cream); padding: 35px; border-radius: 20px; border: 1px solid #f1f1f1;
}
.blog-card h3 { font-size: 20px; color: var(--primary); margin-bottom: 15px; }

/* contact */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
}
.form-card { background: white; padding: 50px; border-radius: 30px; box-shadow: 0 20px 50px rgba(0,0,0,0.03); }
@media (max-width: 600px) {
  .form-card { padding: 30px; }
}
input, textarea {
  width: 100%; padding: 16px; margin-bottom: 20px; border-radius: 12px;
  border: 1px solid #e5e7eb; background: #f9fafb; font-family: inherit;
}

/* whatsapp fixed */
.whatsapp-float {
  position: fixed; bottom: 25px; right: 25px; background: #25d366;
  width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15); z-index: 2000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 20px 45px rgba(0,0,0,0.25); }

/* page loader */
#page-loader {
  position: fixed; width: 100%; height: 100vh; background: var(--primary);
  display: flex; justify-content: center; align-items: center; z-index: 5000;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader-brand { text-align: center; color: white; animation: fadeIn 1.2s ease; }
.loader-brand h2 { font-family: "Playfair Display", serif; font-size: 32px; margin-bottom: 10px; }
.loader-brand span { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; opacity: 0.8; }
#page-loader.hidden { opacity: 0; visibility: hidden; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* No huge gaps: consistent spacing applied to all sections */