/* ============================================================
   ReBirth Agri & Health — style.css
   Fonts: Playfair Display (headings) + DM Sans (body)
   Palette: #2D6A4F (deep green), #52B788 (mid green),
            #B7E4C7 (light green), #F8F4EF (cream),
            #C9A84C (warm gold), #3D2B1F (dark brown)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --green-dark:  #2D6A4F;
  --green-mid:   #52B788;
  --green-light: #B7E4C7;
  --cream:       #F8F4EF;
  --gold:        #C9A84C;
  --brown:       #3D2B1F;
  --white:       #ffffff;
  --shadow:      0 8px 32px rgba(45,106,79,.13);
  --shadow-lg:   0 16px 48px rgba(45,106,79,.18);
  --radius:      14px;
  --radius-sm:   8px;
  --transition:  .3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--brown);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }

.container { width: 92%; max-width: 1200px; margin: 0 auto; }

/* ── Utility ── */
.btn {
  display: inline-block;
  padding: .8rem 2rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  letter-spacing: .03em;
}
.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}
.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-outline:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #a8892e;
  border-color: #a8892e;
  transform: translateY(-2px);
}

.section-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--green-dark);
  margin-bottom: .75rem;
}

.section-subtitle {
  color: #6b7b6e;
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.text-center { text-align: center; }

/* ════════════════════════════════════════
   TOP BAR
════════════════════════════════════════ */
#topbar {
  background: var(--green-dark);
  color: rgba(255,255,255,.88);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .02em;
  padding: .45rem 0;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  transition: transform .4s ease;
}
#topbar.hide { transform: translateY(-100%); }

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .4rem;
}
.topbar-left { display: flex; gap: 1.5rem; align-items: center; }
.topbar-left span { display: flex; align-items: center; gap: .35rem; }
.topbar-right { display: flex; gap: .8rem; align-items: center; }
.topbar-social {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem;
  transition: var(--transition);
  text-decoration: none; color: white;
}
.topbar-social:hover { background: rgba(255,255,255,.28); }

/* ════════════════════════════════════════
   NAVBAR — Redesigned
════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 36px; left: 0; right: 0;   /* sits below topbar */
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--green-light);
  transition: top .4s ease, box-shadow .3s ease, background .3s ease;
}
#navbar.scrolled {
  top: 0;
  box-shadow: 0 4px 24px rgba(45,106,79,.18);
  background: rgba(255,255,255,.99);
  border-bottom-color: var(--green-mid);
}
#navbar.topbar-hidden { top: 0; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* ── Logo area ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.nav-logo img { height: 50px; width: auto; }
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-logo-text strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--green-dark);
}
.nav-logo-text span {
  font-size: .68rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ── Nav links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-links > li { position: relative; }

.nav-links a {
  font-size: .88rem;
  font-weight: 600;
  color: var(--brown);
  padding: .55rem 1rem;
  border-radius: 8px;
  display: block;
  transition: background var(--transition), color var(--transition);
  letter-spacing: .01em;
}
.nav-links a:hover { background: var(--green-light); color: var(--green-dark); }
.nav-links a.active {
  background: var(--green-light);
  color: var(--green-dark);
}

/* Active indicator dot */
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green-mid);
}

/* ── Login CTA button ── */
.nav-cta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-left: .5rem;
}
.nav-cta .btn {
  padding: .6rem 1.5rem;
  font-size: .88rem;
  box-shadow: 0 4px 16px rgba(45,106,79,.25);
}
.nav-cta .btn:hover { box-shadow: 0 6px 24px rgba(45,106,79,.35); }

/* Phone pill in nav */
.nav-phone {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--green-dark);
  background: rgba(183,228,199,.35);
  padding: .45rem 1rem;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition);
}
.nav-phone:hover { background: var(--green-light); }

/* ════════════════════════════════════════
   PRODUCTS SIMPLE DROPDOWN — 3 sub-menus
════════════════════════════════════════ */
.has-dropdown { position: relative; }

/* Arrow chevron */
.has-dropdown > a::after {
  content: ' ▾';
  font-size: .7rem;
  opacity: .6;
  transition: transform var(--transition);
}
.has-dropdown:hover > a::after { transform: rotate(180deg); }

/* Dropdown panel */
.dropdown-simple {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(45,106,79,.18), 0 4px 16px rgba(0,0,0,.08);
  border: 1px solid rgba(82,183,136,.18);
  padding: .6rem;
  z-index: 2000;
  flex-direction: column;
  gap: .25rem;
}
.has-dropdown:hover .dropdown-simple { display: flex; }

/* Each of the 3 sub-menu items */
.dropdown-simple-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .75rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  color: var(--brown);
  transition: background .2s ease, transform .2s ease;
}
.dropdown-simple-item:hover {
  background: var(--cream);
  transform: translateX(4px);
  color: var(--green-dark);
}

/* Icon circle */
.dsub-icon {
  font-size: 1.5rem;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s ease;
}
.dropdown-simple-item:hover .dsub-icon { background: var(--green-mid); }

/* Text */
.dsub-text { display: flex; flex-direction: column; gap: .1rem; }
.dsub-text strong { font-size: .88rem; font-weight: 700; line-height: 1.2; }
.dsub-text span   { font-size: .72rem; color: #9aac9e; line-height: 1.3; }

/* ── Hamburger ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: var(--green-light);
  border: none;
  border-radius: 8px;
  transition: background var(--transition);
}
.nav-toggle:hover { background: var(--green-mid); }
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open { background: var(--green-mid); }
.nav-toggle.open span { background: white; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── PAGE TOP OFFSET (topbar 36px + navbar 80px) ── */
.page-top { padding-top: 116px; }

/* ════════════════════════════════════════
   HERO SLIDER — Image-ready
════════════════════════════════════════ */
.hero-slider {
  position: relative;
  height: calc(100vh - 116px);
  min-height: 660px;
  overflow: hidden;
  background: var(--green-dark);
}

.slides-wrapper {
  display: flex;
  height: 100%;
  transition: transform .8s cubic-bezier(.77,0,.18,1);
  will-change: transform;
}

/* ─ Each slide ─ */
.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ── BACKGROUND IMAGE LAYER ──
   Set a real image via data-bg on each .slide in HTML.
   JS will apply it as background-image automatically.
   Fallback gradients used when no image is provided. */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Fallback gradients — overridden when image loads */
  background-color: var(--green-dark);
  transform: scale(1.06);
  transition: transform 6s ease;
}
.slide.active .slide-bg { transform: scale(1); } /* Ken Burns zoom-out */

/* Default gradient fallbacks per slide */
.slide:nth-child(1) .slide-bg { background-image: linear-gradient(135deg,#1b4332,#40916c); }
.slide:nth-child(2) .slide-bg { background-image: linear-gradient(135deg,#3d1f00,#a0522d); }
.slide:nth-child(3) .slide-bg { background-image: linear-gradient(135deg,#1a3c34,#52B788); }
.slide:nth-child(4) .slide-bg { background-image: linear-gradient(135deg,#1e3a5f,#3d5a3e); }
.slide:nth-child(5) .slide-bg { background-image: linear-gradient(135deg,#4a1942,#2D6A4F); }

/* Dark overlay for readability */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0,0,0,.62) 0%,
    rgba(0,0,0,.38) 55%,
    rgba(0,0,0,.18) 100%
  );
  z-index: 1;
}

/* Content on top */
.slide-content {
  position: relative;
  z-index: 2;
  text-align: left;
  color: var(--white);
  padding: 2rem;
  max-width: 680px;
  margin-left: clamp(2rem, 8vw, 120px);
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease .35s, transform .7s ease .35s;
}
.slide.active .slide-content {
  opacity: 1;
  transform: translateX(0);
}

/* Slide badge pill */
.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(82,183,136,.3);
  border: 1px solid rgba(82,183,136,.5);
  backdrop-filter: blur(8px);
  color: #d4f5e5;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.slide-content h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
  font-weight: 700;
}
.slide-content h1 em {
  font-style: normal;
  color: #95e4b3;
}
.slide-content p {
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  opacity: .92;
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 520px;
  text-shadow: 0 1px 6px rgba(0,0,0,.3);
}
.slide-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.slide-btns .btn { padding: .8rem 2rem; font-size: .95rem; }

/* ── Slider Arrows ── */
.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(12px);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.slider-arrow:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-50%) scale(1.08);
}
.slider-prev { left: 24px; }
.slider-next { right: 24px; }

/* ── Slider Dots ── */
.slider-dots {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px;
  z-index: 10;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: all .4s ease;
  border: none;
}
.dot.active {
  background: white;
  width: 28px;
  border-radius: 4px;
}

/* ── Slide counter ── */
.slide-counter {
  position: absolute;
  bottom: 2px;
  right: 32px;
  z-index: 10;
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  font-family: 'DM Sans', sans-serif;
}
.slide-counter span { color: white; font-size: 1rem; }

/* ── Progress bar ── */
.slider-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: var(--green-mid);
  z-index: 10;
  width: 0%;
  transition: width linear;
}

/* ── Thumbnail strip at bottom-left ── */
.slide-thumbs {
  position: absolute;
  bottom: 20px;
  left: 32px;
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slide-thumb {
  width: 60px; height: 40px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.25);
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.slide-thumb.active { border-color: var(--green-mid); transform: scale(1.08); }
.slide-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ── Image upload panel (visible in edit mode) ── */
.banner-manager {
  position: fixed;
  right: 0; top: 50%;
  transform: translateY(-50%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.banner-toggle-btn {
  background: var(--green-dark);
  color: white;
  border: none;
  padding: .8rem 1rem;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 10px 0 0 10px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  box-shadow: -4px 0 16px rgba(0,0,0,.15);
  transition: background var(--transition);
}
.banner-toggle-btn:hover { background: var(--green-mid); }

.banner-panel {
  position: fixed;
  right: -380px;
  top: 0; bottom: 0;
  width: 360px;
  background: white;
  z-index: 1999;
  box-shadow: -8px 0 40px rgba(0,0,0,.2);
  transition: right .4s cubic-bezier(.77,0,.18,1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.banner-panel.open { right: 0; }

.banner-panel-header {
  background: var(--green-dark);
  color: white;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.banner-panel-header h3 { font-size: 1rem; font-family: 'DM Sans',sans-serif; font-weight: 700; }
.banner-close {
  background: rgba(255,255,255,.15);
  border: none;
  color: white;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.banner-close:hover { background: rgba(255,255,255,.3); }

.banner-panel-body { padding: 1.2rem; flex: 1; }

.banner-slide-item {
  background: var(--cream);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1.5px solid var(--green-light);
}
.banner-slide-item h4 {
  font-size: .82rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: 'DM Sans', sans-serif;
}
.banner-slide-preview {
  width: 100%;
  height: 90px;
  border-radius: 7px;
  object-fit: cover;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin-bottom: .75rem;
  overflow: hidden;
}
.banner-slide-preview img { width: 100%; height: 100%; object-fit: cover; }

.banner-upload-btn {
  width: 100%;
  padding: .55rem;
  background: white;
  color: var(--green-dark);
  border: 2px dashed var(--green-mid);
  border-radius: 7px;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center; gap: .4rem;
}
.banner-upload-btn:hover { background: var(--green-light); border-style: solid; }

.banner-remove-btn {
  width: 100%;
  padding: .45rem;
  background: transparent;
  color: #e74c3c;
  border: 1.5px solid #fcc;
  border-radius: 7px;
  cursor: pointer;
  font-size: .78rem;
  font-family: 'DM Sans', sans-serif;
  margin-top: .4rem;
  transition: all var(--transition);
  display: none;
}
.banner-remove-btn.visible { display: block; }
.banner-remove-btn:hover { background: #fff0f0; }

.banner-tip {
  background: rgba(82,183,136,.1);
  border: 1px solid rgba(82,183,136,.3);
  border-radius: 8px;
  padding: .75rem 1rem;
  font-size: .78rem;
  color: #3a7a5a;
  line-height: 1.6;
  margin-top: .5rem;
}

/* Overlay when panel open */
.banner-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 1998;
  display: none;
  backdrop-filter: blur(2px);
}
.banner-overlay.open { display: block; }

/* ── SECTIONS COMMON ── */
section { padding: 2rem 0px; }

/* ── HOME: ABOUT SNIPPET ── */
.about-snippet {
  background: var(--white);
  overflow: hidden;
}
.about-snippet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-visual-box {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: var(--radius);
  padding: 3rem;
  color: white;
  text-align: center;
  min-height: 380px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
}
.about-visual-box .big-icon { font-size: 6rem; opacity: .85; }
.about-visual-box h3 { font-size: 1.5rem; }
.about-visual-box p { opacity: .85; }
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: white;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge strong { display: block; font-size: 2rem; font-family: 'Playfair Display', serif; }
.about-badge span { font-size: .8rem; font-weight: 600; letter-spacing: .05em; }

.about-text h2 { margin-bottom: 1rem; }
.about-text p { color: #5a6a5e; margin-bottom: 1.5rem; }
.about-stats { display: flex; gap: 2rem; margin-bottom: 2rem; }
.stat { text-align: center; }
.stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--green-dark); }
.stat span { font-size: .85rem; color: #6b7b6e; }

/* ── WHAT WE OFFER ── */
.offer-section { background: var(--cream); }
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.offer-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}
.offer-card:hover {
  transform: translateY(-8px);
  border-bottom-color: var(--green-mid);
  box-shadow: var(--shadow-lg);
}
.offer-icon {
  font-size: 3rem;
  margin-bottom: 1.2rem;
  display: block;
}
.offer-card h3 { font-size: 1.15rem; color: var(--green-dark); margin-bottom: .6rem; }
.offer-card p  { font-size: .9rem; color: #6b7b6e; }

/* ── VISION & MISSION ── */
.vision-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, #1b4332 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.vision-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
  top: -200px; right: -200px;
}
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
.vision-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 2.5rem;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.vision-card:hover { background: rgba(255,255,255,.14); transform: translateY(-4px); }
.vision-card .icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.vision-card h3 { font-size: 1.4rem; margin-bottom: .8rem; }
.vision-card p  { opacity: .85; font-size: .95rem; }

/* ── CORE VALUES ── */
.values-section { background: var(--white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  background: var(--cream);
  transition: var(--transition);
}
.value-card:hover { background: var(--green-light); transform: translateY(-4px); }
.value-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.value-card h4 { color: var(--green-dark); font-size: 1rem; margin-bottom: .4rem; }
.value-card p  { font-size: .85rem; color: #6b7b6e; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(90deg, var(--gold) 0%, #a8892e 100%);
  padding: 4rem 0;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 1rem; }
.cta-banner p  { opacity: .9; margin-bottom: 2rem; font-size: 1.05rem; }
.cta-banner .btn { background: white; color: var(--gold); border-color: white; }
.cta-banner .btn:hover { background: var(--green-dark); color: white; border-color: var(--green-dark); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, #40916c 100%);
  color: white;
  text-align: center;
  padding: 5rem 1rem 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: .8rem; }
.page-hero p  { opacity: .88; font-size: 1.1rem; }
.breadcrumb { font-size: .85rem; opacity: .7; margin-top: .6rem; }
.breadcrumb a { color: var(--green-light); }
.breadcrumb a:hover { color: white; }

/* ── ABOUT PAGE ── */
.who-we-are { background: var(--white); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.story-visual {
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  border-radius: var(--radius);
  min-height: 420px;
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem;
  box-shadow: var(--shadow-lg);
}
.story-text h2 { margin-bottom: 1rem; }
.story-text p  { color: #5a6a5e; margin-bottom: 1rem; }

.timeline { margin-top: 2rem; }
.timeline-item {
  display: flex; gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--green-light);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green-dark);
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: .85rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  line-height: 1.2;
}
.timeline-info h4 { color: var(--green-dark); margin-bottom: .3rem; }
.timeline-info p  { font-size: .9rem; color: #6b7b6e; }

.team-section { background: var(--cream); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-avatar {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
.team-avatar.green { background: linear-gradient(135deg, var(--green-light), var(--green-mid)); }
.team-avatar.gold  { background: linear-gradient(135deg, #fef3c7, #fbbf24); }
.team-avatar.blue  { background: linear-gradient(135deg, #dbeafe, #60a5fa); }
.team-avatar.rose  { background: linear-gradient(135deg, #fce7f3, #f472b6); }
.team-card-info { padding: 1.5rem; }
.team-card-info h3 { font-size: 1.1rem; color: var(--green-dark); margin-bottom: .3rem; }
.team-card-info p  { font-size: .85rem; color: var(--gold); font-weight: 600; }

/* ── SERVICES PAGE ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 5px solid var(--green-light);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--green-mid), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-top-color: transparent; }
.service-icon { font-size: 3rem; margin-bottom: 1.2rem; display: block; }
.service-card h3 { color: var(--green-dark); font-size: 1.2rem; margin-bottom: .8rem; }
.service-card p  { color: #6b7b6e; font-size: .9rem; margin-bottom: 1.2rem; }
.service-list li {
  font-size: .88rem;
  color: #5a6a5e;
  padding: .3rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.service-list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--green-mid);
  font-weight: 700;
}

.process-section { background: var(--cream); }
.process-steps {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 3rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(10% + 36px);
  right: calc(10% + 36px);
  height: 2px;
  background: var(--green-light);
}
.process-step {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--green-dark);
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow);
}
.process-step h4 { color: var(--green-dark); margin-bottom: .4rem; font-size: 1rem; }
.process-step p  { font-size: .85rem; color: #6b7b6e; }

/* ── PRODUCTS PAGE ── */
.products-filter {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: .55rem 1.5rem;
  border-radius: 50px;
  background: var(--white);
  color: var(--brown);
  border: 2px solid var(--green-light);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--green-dark);
  color: white;
  border-color: var(--green-dark);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 3.5rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-img {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  position: relative;
}
.product-img.organic { background: linear-gradient(135deg, #d1fae5, #6ee7b7); }
.product-img.herbal  { background: linear-gradient(135deg, #fef3c7, #fcd34d); }
.product-img.health  { background: linear-gradient(135deg, #dbeafe, #93c5fd); }
.product-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--green-dark);
  color: white;
  font-size: .72rem;
  font-weight: 600;
  padding: .2rem .7rem;
  border-radius: 50px;
  letter-spacing: .05em;
}
.product-info { padding: 1.5rem; }
.product-info h3 { font-size: 1.05rem; color: var(--green-dark); margin-bottom: .4rem; }
.product-info p  { font-size: .88rem; color: #6b7b6e; margin-bottom: 1rem; }
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 700;
}
.product-btn {
  padding: .45rem 1.1rem;
  font-size: .82rem;
  border-radius: 50px;
  background: var(--green-dark);
  color: white;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  transition: var(--transition);
}
.product-btn:hover { background: var(--green-mid); transform: scale(1.05); }

/* ── CONTACT PAGE ── */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p  { color: #6b7b6e; margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
}
.contact-item-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-item-text h4 { color: var(--green-dark); font-size: 1rem; margin-bottom: .2rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.contact-item-text p, .contact-item-text a { font-size: .9rem; color: #6b7b6e; }
.contact-item-text a:hover { color: var(--green-dark); }

.contact-form-box {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form-box h3 { color: var(--green-dark); margin-bottom: 1.5rem; font-size: 1.5rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: .4rem;
  color: var(--brown);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 2px solid #e0ead9;
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: var(--brown);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--green-mid); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.map-section { background: var(--cream); padding-bottom: 5rem; }
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 380px;
  background: linear-gradient(135deg, var(--green-light), #a8d8b9);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--green-dark);
}
.map-container .map-icon { font-size: 4rem; }
.map-container p { font-size: 1.1rem; font-weight: 500; }
.map-container small { color: #6b7b6e; font-size: .85rem; }

/* ── LOGIN PAGE ── */
.login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1b4332 0%, #2D6A4F 50%, #52B788 100%);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.login-wrapper::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  top: -200px; left: -200px;
}
.login-wrapper::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
  bottom: -150px; right: -100px;
}
.login-card {
  background: rgba(255,255,255,.97);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
  position: relative;
  z-index: 1;
}
.login-logo { text-align: center; margin-bottom: 2rem; }
.login-logo img { height: 50px; margin: 0 auto; }
.login-logo h2 { font-size: 1.5rem; color: var(--green-dark); margin-top: .5rem; }
.login-logo p  { color: #6b7b6e; font-size: .9rem; }
.login-form .form-group { margin-bottom: 1.2rem; }
.input-icon-wrap { position: relative; }
.input-icon-wrap .input-icon {
  position: absolute;
  left: 14px; top: 50%; transform: translateY(-50%);
  font-size: 1rem;
  color: #9aac9e;
}
.input-icon-wrap input { padding-left: 2.8rem; }
.toggle-pw {
  position: absolute;
  right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: none;
  cursor: pointer; color: #9aac9e;
  font-size: 1rem;
}
.login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  font-size: .88rem;
}
.login-options label { display: flex; gap: .4rem; align-items: center; cursor: pointer; }
.login-options a { color: var(--green-mid); }
.login-options a:hover { color: var(--green-dark); }
.login-btn { width: 100%; padding: .95rem; font-size: 1rem; border-radius: var(--radius-sm); }
.login-divider {
  text-align: center;
  color: #9aac9e;
  font-size: .85rem;
  margin: 1.2rem 0;
  position: relative;
}
.login-divider::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: #e0ead9;
  z-index: 0;
}
.login-divider span {
  background: white;
  padding: 0 .8rem;
  position: relative; z-index: 1;
}
.login-register { text-align: center; font-size: .9rem; color: #6b7b6e; margin-top: 1.2rem; }
.login-register a { color: var(--green-dark); font-weight: 600; }

/* ── FOOTER ── */
footer {
  background: var(--brown);
  color: rgba(255,255,255,.8);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 38px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p  { font-size: .9rem; line-height: 1.7; opacity: .75; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: .75rem; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
  color: white;
}
.social-link:hover { background: var(--green-mid); transform: translateY(-3px); }

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a {
  font-size: .88rem;
  opacity: .75;
  transition: var(--transition);
}
.footer-col ul a:hover { opacity: 1; color: var(--green-light); padding-left: 4px; }

.footer-contact-list { display: flex; flex-direction: column; gap: .8rem; }
.footer-contact-item { display: flex; gap: .6rem; align-items: flex-start; font-size: .88rem; opacity: .75; }
.footer-contact-item span:first-child { flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .83rem;
  opacity: .6;
  flex-wrap: wrap;
  gap: .5rem;
}

/* ════════════════════════════════════════
   PRODUCT DETAIL PAGE
════════════════════════════════════════ */
.product-detail-section { background: var(--white); }

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Image gallery */
.product-gallery { position: sticky; top: 110px; }
.product-main-img {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #d1fae5, #6ee7b7);
  height: 420px;
  display: flex; align-items: center; justify-content: center;
  font-size: 9rem;
  box-shadow: var(--shadow-lg);
  margin-bottom: 1rem;
  position: relative;
}
.product-main-img.herbal-bg { background: linear-gradient(135deg, #fef3c7, #fcd34d); }
.product-main-img.health-bg { background: linear-gradient(135deg, #dbeafe, #93c5fd); }

.product-thumb-strip {
  display: flex;
  gap: .75rem;
}
.product-thumb {
  width: 72px; height: 72px;
  border-radius: 10px;
  border: 2px solid var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition);
}
.product-thumb.active,
.product-thumb:hover { border-color: var(--green-mid); background: var(--green-light); }

/* Product info */
.product-detail-info { }
.product-detail-category {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--green-light); color: var(--green-dark);
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: .3rem .9rem;
  border-radius: 50px; margin-bottom: 1rem;
}
.product-detail-name {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--green-dark);
  margin-bottom: .6rem;
  line-height: 1.2;
}
.product-detail-tagline {
  font-size: 1rem;
  color: #6b7b6e;
  margin-bottom: 1.2rem;
  font-style: italic;
}
.product-detail-rating {
  display: flex; align-items: center; gap: .5rem;
  margin-bottom: 1.5rem;
  font-size: .9rem;
}
.stars { color: #f59e0b; letter-spacing: .05em; }
.product-detail-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: .3rem;
}
.product-detail-price small {
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  color: #9aac9e;
  text-decoration: line-through;
  margin-left: .5rem;
}
.product-detail-discount {
  display: inline-block;
  background: #fde68a;
  color: #92400e;
  font-size: .75rem; font-weight: 700;
  padding: .2rem .6rem; border-radius: 50px;
  margin-bottom: 1.5rem;
}

/* Size / weight selector */
.product-options { margin-bottom: 1.5rem; }
.product-options label {
  display: block; font-size: .88rem; font-weight: 700;
  color: var(--brown); margin-bottom: .6rem;
}
.option-pills { display: flex; gap: .5rem; flex-wrap: wrap; }
.option-pill {
  padding: .4rem 1rem;
  border: 2px solid var(--green-light);
  border-radius: 50px;
  font-size: .82rem; font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  background: white;
  color: var(--brown);
  font-family: 'DM Sans', sans-serif;
}
.option-pill:hover,
.option-pill.active {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: white;
}

/* Quantity */
.qty-row {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
}
.qty-ctrl {
  display: flex; align-items: center;
  border: 2px solid var(--green-light);
  border-radius: 50px;
  overflow: hidden;
}
.qty-btn {
  width: 38px; height: 38px;
  background: none; border: none;
  font-size: 1.1rem; font-weight: 700;
  cursor: pointer; color: var(--green-dark);
  transition: background var(--transition);
}
.qty-btn:hover { background: var(--green-light); }
.qty-num {
  width: 44px; text-align: center;
  font-weight: 700; font-size: 1rem;
  color: var(--brown); border: none;
  outline: none; background: none;
  font-family: 'DM Sans', sans-serif;
}

.detail-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.detail-btns .btn { flex: 1; min-width: 160px; text-align: center; }

/* Features */
.product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.feature-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .85rem; color: #5a6a5e;
}
.feature-item span:first-child { color: var(--green-mid); font-size: 1rem; }

/* Tabs */
.product-tabs { margin-top: 2rem; }
.tab-headers {
  display: flex; border-bottom: 2px solid var(--green-light);
  margin-bottom: 1.5rem; gap: 0;
}
.tab-btn {
  padding: .7rem 1.4rem;
  font-size: .88rem; font-weight: 700;
  color: #6b7b6e;
  background: none; border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  font-family: 'DM Sans', sans-serif;
  transition: color .2s ease;
}
.tab-btn.active { color: var(--green-dark); border-bottom-color: var(--green-dark); }
.tab-panel { display: none; font-size: .92rem; color: #5a6a5e; line-height: 1.8; }
.tab-panel.active { display: block; }
.tab-panel ul { padding-left: 1.2rem; list-style: disc; }
.tab-panel ul li { margin-bottom: .4rem; }
.tab-panel table { width: 100%; border-collapse: collapse; }
.tab-panel table tr:nth-child(even) { background: var(--cream); }
.tab-panel table td { padding: .5rem .75rem; border: 1px solid var(--green-light); font-size: .85rem; }
.tab-panel table td:first-child { font-weight: 700; color: var(--brown); width: 40%; }

/* Related products strip */
.related-section { background: var(--cream); }
.related-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

/* Breadcrumb on detail page */
.detail-breadcrumb {
  font-size: .82rem;
  color: #9aac9e;
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: .4rem;
}
.detail-breadcrumb a { color: var(--green-mid); }
.detail-breadcrumb a:hover { color: var(--green-dark); }
.detail-breadcrumb span { color: #c0ccc3; }

@media (max-width: 900px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
  .product-gallery { position: static; }
}
@media (max-width: 600px) {
  .product-features { grid-template-columns: 1fr; }
  .product-main-img { height: 280px; font-size: 6rem; }
  .dropdown-mega { width: 95vw; left: 2.5vw; transform: none !important; }
}

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

/* ── FADE-IN ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 90px; right: 30px;
  background: var(--green-dark);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  font-size: .9rem;
  font-weight: 500;
  transform: translateX(120%);
  transition: transform .4s ease;
  z-index: 9999;
}
.toast.show { transform: translateX(0); }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .about-snippet-grid,
  .story-grid,
  .contact-grid,
  .vision-grid { grid-template-columns: 1fr; gap: 2.5rem; }

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

  .process-steps::before { display: none; }

  .about-badge { bottom: -10px; right: 10px; }
}

@media (max-width: 768px) {
  /* Hide topbar info on small screens */
  #topbar { font-size: .72rem; }
  .topbar-left span:not(:first-child) { display: none; }

  .nav-inner { height: 68px; }
  .nav-logo img { height: 40px; }
  .nav-logo-text { display: none; }
  .nav-phone { display: none; }

  .nav-links {
    display: none;
    position: fixed;
    top: 104px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: .25rem;
    border-bottom: 2px solid var(--green-light);
    box-shadow: 0 12px 40px rgba(0,0,0,.12);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .nav-cta { display: none; }

  #navbar.scrolled ~ .nav-links.open,
  .nav-links.open { top: 104px; }

  .page-top { padding-top: 104px; }
  .hero-slider { height: 70vh; min-height: 420px; }
  .slide-content { margin-left: 1.5rem; padding: 1.5rem 1rem; }
  .slide-content h1 { font-size: 1.75rem; }
  .slide-btns { flex-direction: column; align-items: flex-start; }
  .slide-thumbs { display: none; }
  .slide-counter { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .about-stats { gap: 1rem; }

  .banner-panel { width: 100%; right: -100%; }
  .banner-manager { display: none; } /* hidden on mobile — desktop editing tool */
}

@media (max-width: 480px) {
  section { padding: 3.5rem 0; }
  .offer-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
