/* ===========================================
   ARGAN OIL WHOLESALE — MAIN STYLESHEET
   arganoilwholesale.com
   =========================================== */

/* Google Fonts — loaded via <link> in HTML for better performance */
/* Fallback font stack used until webfonts load */

/* ---- Variables ---- */
:root {
  --green-dark:    #1b4332;
  --green-primary: #2d6a4f;
  --green-mid:     #40916c;
  --green-light:   #74c69d;
  --gold:          #c9a84c;
  --gold-light:    #e2c97e;
  --cream:         #f7f3e9;
  --beige:         #ede8d8;
  --white:         #ffffff;
  --text-dark:     #1a1a1a;
  --text-mid:      #444444;
  --text-light:    #777777;
  --shadow-sm:     0 2px 10px rgba(0,0,0,.07);
  --shadow-md:     0 6px 24px rgba(0,0,0,.11);
  --shadow-lg:     0 12px 48px rgba(0,0,0,.15);
  --radius-sm:     6px;
  --radius-md:     14px;
  --radius-lg:     24px;
  --ease:          cubic-bezier(.25,.46,.45,.94);
  --transition:    .35s var(--ease);
  --font-head:     'Playfair Display', Georgia, serif;
  --font-body:     'Inter', 'Helvetica Neue', Arial, sans-serif;
  --max-w:         1200px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Utility ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-alt{ background: var(--cream); }
.text-center{ text-align: center; }
.text-gold  { color: var(--gold); }
.text-green { color: var(--green-primary); }

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 620px;
  margin: 0 auto;
}
.divider {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 18px auto 0;
}
.divider-left { margin-left: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: var(--white);
  box-shadow: 0 4px 18px rgba(44,106,79,.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(44,106,79,.5);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #a67c2a);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(201,168,76,.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,.5); }
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover { background: var(--white); color: var(--green-dark); }
.btn-outline-green {
  border: 2px solid var(--green-primary);
  color: var(--green-primary);
  background: transparent;
}
.btn-outline-green:hover { background: var(--green-primary); color: var(--white); }

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: opacity var(--transition);
}
.nav-logo-white { display: block; }
.nav-logo-dark  { display: none; }
.navbar.scrolled .nav-logo-white { display: none; }
.navbar.scrolled .nav-logo-dark  { display: block; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-menu a {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .92rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  transition: var(--transition);
}
.navbar.scrolled .nav-menu a { color: var(--text-mid); }
.nav-menu a:hover { background: rgba(255,255,255,.15); color: var(--white); }
.navbar.scrolled .nav-menu a:hover { background: var(--cream); color: var(--green-dark); }
.nav-menu .nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  font-weight: 600;
}
.nav-menu .nav-cta:hover { background: #a67c2a; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--text-dark); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================
   HERO
   ============================ */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(27,67,50,.85) 0%, rgba(45,106,79,.7) 60%, rgba(201,168,76,.3) 100%),
    url('../images/hero-bg.jpg') center/cover no-repeat;
  background-color: var(--green-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,.15) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.2);
  border: 1px solid rgba(201,168,76,.5);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-title span { color: var(--gold-light); }
.hero-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
}
.hero-stat .lbl {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll span { font-size: 1.2rem; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ============================
   TRUST BAR
   ============================ */
.trust-bar {
  background: var(--green-dark);
  padding: 20px 0;
  border-bottom: 1px solid rgba(201,168,76,.2);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.8);
  font-size: .88rem;
  font-weight: 500;
}
.trust-item .ti-icon {
  font-size: 1rem;
  color: var(--gold-light);
  width: 22px; height: 22px;
  background: rgba(201,168,76,.18);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.trust-item .ti-icon i { font-size: .7rem; color: var(--gold-light); }

/* ============================
   ABOUT / INTRO
   ============================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-main img {
  width: 100%; height: 100%; object-fit: cover;
}
.img-placeholder {
  color: rgba(255,255,255,.4);
  font-size: 4rem;
  text-align: center;
}
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 140px; height: 140px;
  background: linear-gradient(135deg, var(--gold), #a67c2a);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-md);
  text-align: center;
  padding: 16px;
}
.about-badge .ab-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge .ab-lbl {
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .9;
}

.about-text { padding-left: 8px; }
.about-text .section-sub { max-width: 100%; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}
.af-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.af-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--cream), var(--beige));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  border: 1px solid rgba(45,106,79,.1);
}
.af-icon i { font-size: 1.05rem; color: var(--green-primary); }
.af-item h4, .af-item .af-title { font-size: .9rem; font-weight: 600; color: var(--green-dark); margin-bottom: 2px; }
.af-item p  { font-size: .82rem; color: var(--text-light); }

/* ============================
   SERVICES / PRODUCTS
   ============================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-primary), var(--gold));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.sc-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--cream), var(--beige));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
  transition: var(--transition);
  border: 1px solid rgba(45,106,79,.1);
}
.sc-icon i { font-size: 1.7rem; color: var(--green-primary); transition: var(--transition); }
.service-card:hover .sc-icon {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  border-color: transparent;
}
.service-card:hover .sc-icon i { color: var(--white); }
.service-card h3, .service-card .sc-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.service-card p { font-size: .9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 24px; }
.sc-link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.sc-link:hover { gap: 10px; color: var(--green-primary); }

/* ============================
   WHY CHOOSE US
   ============================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--beige);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.wc-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(45,106,79,.1), rgba(45,106,79,.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
  border: 1px solid rgba(45,106,79,.12);
}
.wc-icon i {
  font-size: 1.6rem;
  color: var(--green-primary);
  transition: var(--transition);
}
.why-card:hover .wc-icon {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  border-color: transparent;
}
.why-card:hover .wc-icon i { color: var(--white); }
.why-card h4, .why-card .wc-title {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.why-card p { font-size: .85rem; color: var(--text-light); }

/* ============================
   CERTIFICATIONS
   ============================ */
.certs-section { background: var(--green-dark); }
.certs-section .section-title,
.certs-section .section-label { color: var(--white); }
.certs-section .section-sub { color: rgba(255,255,255,.7); }
.certs-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 48px;
}
.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 40px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  min-width: 160px;
  transition: var(--transition);
}
.cert-item:hover {
  background: rgba(201,168,76,.12);
  border-color: rgba(201,168,76,.4);
}
.cert-logo {
  width: 64px; height: 64px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.cert-item span {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: .06em;
  text-align: center;
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: var(--radius-md);
  padding: 36px;
  position: relative;
  transition: var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-md); }
.testi-quote {
  font-size: 3rem;
  line-height: .8;
  color: var(--gold-light);
  font-family: Georgia, serif;
  margin-bottom: 16px;
}
.testi-card p {
  font-size: .92rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-head);
  flex-shrink: 0;
}
.testi-info .name { font-weight: 600; font-size: .9rem; color: var(--text-dark); }
.testi-info .role { font-size: .8rem; color: var(--text-light); }
.stars { color: var(--gold); font-size: .85rem; margin-bottom: 4px; }

/* ============================
   FAQ
   ============================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--beige);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-dark);
  background: none;
  transition: var(--transition);
}
.faq-q:hover { color: var(--gold); }
.faq-q .faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-a-inner {
  padding-bottom: 20px;
  font-size: .93rem;
  color: var(--text-mid);
  line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 400px; }

/* ============================
   CTA BANNER
   ============================ */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 50%, var(--green-dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,.15) 0%, transparent 70%);
}
.cta-banner-inner { position: relative; z-index: 2; }
.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner p { color: rgba(255,255,255,.8); margin-bottom: 36px; font-size: 1.05rem; }
.cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================
   BLOG SECTION (Homepage Preview)
   ============================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--beige);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
  position: relative;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 28px; }
.blog-cat {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.blog-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}
.blog-card p { font-size: .88rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .8rem;
  color: var(--text-light);
}
.blog-meta span { display: flex; align-items: center; gap: 4px; }

/* ============================
   MAP SECTION
   ============================ */
.map-section { background: var(--cream); }
.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
  margin-top: 48px;
}
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.75);
}
.footer-main {
  padding: 72px 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-logo-img {
  height: 72px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  margin-bottom: 16px;
  display: block;
}
.footer-brand p { font-size: .88rem; line-height: 1.8; margin-bottom: 24px; }
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-social {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: .9rem;
  color: rgba(255,255,255,.7);
}
.footer-social:hover { background: var(--gold); color: var(--white); }

.footer-col h4, .footer-col .footer-col-title {
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-col ul li a::before { content: '›'; color: var(--gold); }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item .fci-icon {
  font-size: .85rem;
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 3px;
  width: 28px; height: 28px;
  background: rgba(201,168,76,.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-contact-item p { font-size: .87rem; color: rgba(255,255,255,.65); line-height: 1.6; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .82rem; }
.footer-bottom a { color: var(--gold-light); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================
   WHATSAPP BUTTON
   ============================ */
.whatsapp-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: var(--transition);
  font-size: 1.6rem;
  color: var(--white);
  text-decoration: none;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.6); }
.whatsapp-btn .wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { transform: scale(1);   opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================
   INNER PAGE HERO
   ============================ */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,.12) 0%, transparent 65%);
}
.page-hero-inner { position: relative; z-index: 2; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,.8); max-width: 600px; margin: 0 auto; }

/* ============================
   BULK / WHOLESALE PAGE
   ============================ */
.product-range {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.prod-card {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.prod-img {
  height: 200px;
  background: linear-gradient(135deg, var(--cream), var(--beige));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.prod-body { padding: 24px; }
.prod-body h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.prod-body p { font-size: .88rem; color: var(--text-mid); margin-bottom: 16px; line-height: 1.7; }
.prod-specs { margin-bottom: 16px; }
.prod-spec {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--beige);
  font-size: .82rem;
}
.prod-spec .spec-key { color: var(--text-light); }
.prod-spec .spec-val { font-weight: 600; color: var(--green-dark); }

.pricing-table {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 56px;
}
.pricing-table table { width: 100%; border-collapse: collapse; }
.pricing-table th {
  background: var(--green-dark);
  color: var(--white);
  padding: 16px 20px;
  text-align: left;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .03em;
}
.pricing-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--beige);
  font-size: .9rem;
  color: var(--text-mid);
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:nth-child(even) td { background: var(--cream); }
.pricing-table .price { color: var(--green-primary); font-weight: 700; }

/* ============================
   PRIVATE LABEL PAGE
   ============================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-primary), var(--gold));
  z-index: 0;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.step-num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 4px 14px rgba(44,106,79,.4);
}
.step-card h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.step-card p { font-size: .85rem; color: var(--text-mid); }

.label-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.label-option {
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
}
.label-option:hover { border-color: var(--green-primary); background: var(--white); }
.label-option h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.label-option ul { margin-top: 12px; }
.label-option ul li {
  font-size: .88rem;
  color: var(--text-mid);
  padding: 4px 0;
  display: flex;
  gap: 8px;
}
.label-option ul li::before { content: '✓'; color: var(--green-primary); font-weight: 700; }

/* ============================
   CONTACT FORM
   ============================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.contact-form-wrap .subtitle {
  color: var(--text-mid);
  font-size: .92rem;
  margin-bottom: 32px;
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--beige);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(44,106,79,.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.honeypot { display: none !important; }
.form-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(44,106,79,.4); }
.form-message {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 500;
  margin-bottom: 20px;
  display: none;
}
.form-message.success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; display: block; }
.form-message.error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; display: block; }

.contact-info-card { padding: 0; }
.ci-block {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius-md);
}
.ci-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}
.ci-text h4 { font-weight: 600; color: var(--green-dark); margin-bottom: 4px; font-size: .95rem; }
.ci-text p  { font-size: .88rem; color: var(--text-mid); }
.ci-text a  { color: var(--green-primary); }
.ci-text a:hover { color: var(--gold); }

/* ============================
   BLOG LIST PAGE
   ============================ */
.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ============================
   BLOG POST (Article)
   ============================ */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}
.article-body {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: var(--radius-md);
  padding: 48px;
}
.article-body h1 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--green-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}
.article-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: .82rem;
  color: var(--text-light);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--beige);
}
.article-meta span { display: flex; align-items: center; gap: 5px; }
.article-img {
  width: 100%;
  aspect-ratio: 16/7;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  border-radius: var(--radius-sm);
  margin-bottom: 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.article-img img { width: 100%; height: 100%; object-fit: cover; }
.article-body h2 {
  font-family: var(--font-head);
  font-size: 1.45rem;
  color: var(--green-dark);
  margin: 32px 0 12px;
}
.article-body h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--green-primary);
  margin: 24px 0 8px;
}
.article-body p { color: var(--text-mid); line-height: 1.85; margin-bottom: 16px; }
.article-body ul, .article-body ol {
  padding-left: 20px;
  margin: 12px 0 16px;
}
.article-body li { color: var(--text-mid); line-height: 1.8; margin-bottom: 6px; }
.article-body strong { color: var(--text-dark); }
.article-highlight {
  background: linear-gradient(135deg, var(--cream), var(--beige));
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 24px 0;
  font-style: italic;
  color: var(--text-mid);
}

.article-sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar-card h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}
.sidebar-post {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--beige);
}
.sidebar-post:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.sidebar-post-img {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.sidebar-post h5 { font-size: .82rem; font-weight: 600; color: var(--green-dark); line-height: 1.4; }
.sidebar-post h5 a:hover { color: var(--gold); }
.sidebar-post .sp-date { font-size: .75rem; color: var(--text-light); margin-top: 4px; }

/* ============================
   STATS COUNTER
   ============================ */
.stats-section { background: var(--green-dark); padding: 64px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item .stat-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.stat-item .stat-lbl {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ============================
   SCROLL ANIMATIONS
   ============================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1100px) {
  .about-grid { gap: 48px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .services-grid,
  .testimonials-grid,
  .blog-grid,
  .blog-list-grid { grid-template-columns: 1fr 1fr; }
  .why-grid         { grid-template-columns: 1fr 1fr; }
  .about-grid       { grid-template-columns: 1fr; }
  .about-badge      { bottom: -16px; right: 12px; width: 110px; height: 110px; }
  .process-steps    { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .product-range    { grid-template-columns: 1fr 1fr; }
  .stats-grid       { grid-template-columns: 1fr 1fr; }
  .contact-layout   { grid-template-columns: 1fr; }
  .article-layout   { grid-template-columns: 1fr; }
  .article-sidebar  { position: static; }
}
@media (max-width: 700px) {
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--green-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 4px;
    transition: right .35s var(--ease);
    box-shadow: -6px 0 32px rgba(0,0,0,.25);
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { color: rgba(255,255,255,.85) !important; width: 100%; padding: 12px 16px; border-radius: var(--radius-sm); }
  .nav-menu a:hover { background: rgba(255,255,255,.1) !important; color: var(--white) !important; }
  .hamburger { display: flex; }
  .hero-stats { gap: 24px; }
  .services-grid,
  .testimonials-grid,
  .blog-grid,
  .blog-list-grid,
  .product-range    { grid-template-columns: 1fr; }
  .why-grid         { grid-template-columns: 1fr 1fr; }
  .process-steps    { grid-template-columns: 1fr; }
  .label-options    { grid-template-columns: 1fr; }
  .stats-grid       { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-main      { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom    { flex-direction: column; text-align: center; }
  .form-row         { grid-template-columns: 1fr; }
  .contact-form-wrap{ padding: 32px 24px; }
  .article-body     { padding: 28px 20px; }
  .hero-actions     { flex-direction: column; align-items: flex-start; }
  .cta-banner-btns  { flex-direction: column; align-items: center; }
  .trust-bar-inner  { gap: 24px; }
  .pricing-table    { overflow-x: auto; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .certs-grid { gap: 16px; }
}

/* ============================================================
   EXIT-INTENT POPUP
   ============================================================ */
.ei-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 18, .72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}
.ei-overlay.ei-active {
  opacity: 1;
  visibility: visible;
}

.ei-modal {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  max-width: 860px;
  width: 100%;
  display: grid;
  grid-template-columns: 360px 1fr;
  box-shadow: 0 32px 100px rgba(0,0,0,.35);
  transform: scale(.92) translateY(-24px);
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
}
.ei-overlay.ei-active .ei-modal {
  transform: scale(1) translateY(0);
}

/* ---- Image column ---- */
.ei-img-col {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}
.ei-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ei-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(27,67,50,.45) 0%, rgba(27,67,50,.82) 100%);
}
.ei-img-badge {
  position: absolute;
  bottom: 28px;
  left: 24px;
  right: 24px;
  background: var(--gold);
  color: var(--green-dark);
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(201,168,76,.45);
}
.ei-img-badge i { font-size: 1.1rem; }
.ei-img-badge span { font-size: .78rem; font-weight: 500; display: block; opacity: .85; }

/* ---- Content column ---- */
.ei-body {
  padding: 44px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ei-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  width: fit-content;
}
.ei-tag i { font-size: .8rem; }
.ei-body h2 {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.25;
  margin-bottom: 12px;
}
.ei-body h2 span { color: var(--gold); }
.ei-body > p {
  font-size: .93rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 22px;
}
.ei-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.ei-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--text-dark);
  font-weight: 500;
}
.ei-perks li i {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  flex-shrink: 0;
}
.ei-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), #a8862e);
  color: var(--green-dark);
  font-family: var(--font-head);
  font-size: .97rem;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(201,168,76,.35);
  margin-bottom: 14px;
}
.ei-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.5);
}
.ei-skip {
  display: block;
  width: 100%;
  text-align: center;
  font-size: .8rem;
  color: var(--text-light);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  padding: 4px;
  transition: color .2s;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ei-skip:hover { color: var(--text-mid); }

/* ---- Close button ---- */
.ei-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-dark);
  cursor: pointer;
  z-index: 10;
  transition: background .2s, transform .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  line-height: 1;
}
.ei-close:hover { background: var(--white); transform: scale(1.1); }

/* ---- Trust strip ---- */
.ei-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--beige);
}
.ei-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  color: var(--text-light);
  font-weight: 500;
}
.ei-trust-item i { color: var(--green-primary); font-size: .75rem; }

/* ---- Responsive ---- */
@media (max-width: 720px) {
  .ei-modal {
    grid-template-columns: 1fr;
    max-width: 420px;
    border-radius: 16px;
  }
  .ei-img-col {
    min-height: 220px;
    max-height: 240px;
  }
  .ei-body { padding: 28px 24px 24px; }
  .ei-body h2 { font-size: 1.4rem; }
  .ei-trust { flex-wrap: wrap; gap: 10px; }
}
@media (max-width: 420px) {
  .ei-body { padding: 22px 18px 20px; }
  .ei-body h2 { font-size: 1.25rem; }
}

/* ============================
   LEAD QUALIFIER POPUP
   ============================ */
@keyframes lqFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes lqSlideUp {
  from { opacity: 0; transform: scale(.94) translateY(20px); }
  to   { opacity: 1; transform: scale(1)  translateY(0); }
}
@keyframes lqStepIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}

.lq-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(27,67,50,.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: lqFadeIn .3s ease both;
}
.lq-overlay.lq-hidden {
  display: none;
}

.lq-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  box-shadow: 0 24px 72px rgba(0,0,0,.22);
  animation: lqSlideUp .38s var(--ease) both;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 92vh;
}

/* Header */
.lq-header {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  padding: 28px 28px 20px;
  position: relative;
}
.lq-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.lq-logo {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.lq-close {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  line-height: 1;
}
.lq-close:hover { background: rgba(255,255,255,.28); color: var(--white); }

.lq-title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.lq-subtitle {
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 18px;
  line-height: 1.5;
}

/* Progress bar */
.lq-progress-wrap {
  height: 5px;
  background: rgba(255,255,255,.2);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}
.lq-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  border-radius: 3px;
  width: 20%; /* updated by JS */
  transition: width .4s var(--ease);
}
.lq-step-label {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Body */
.lq-body {
  padding: 28px;
  overflow-y: auto;
  flex: 1;
}

/* Individual steps */
.lq-step {
  display: none;
  animation: lqStepIn .3s var(--ease) both;
}
.lq-step.active { display: block; }

.lq-question {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.lq-hint {
  font-size: .82rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

/* Radio options */
.lq-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.lq-options-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lq-radio-label {
  cursor: pointer;
}
.lq-radio-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
  pointer-events: none;
}
.lq-radio-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid var(--beige);
  border-radius: var(--radius-md);
  background: var(--cream);
  transition: var(--transition);
  cursor: pointer;
  user-select: none;
}
.lq-radio-btn:hover {
  border-color: var(--green-primary);
  background: var(--white);
}
.lq-radio-label input:checked + .lq-radio-btn {
  border-color: var(--green-primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(44,106,79,.1);
}
.lq-radio-label input:checked + .lq-radio-btn .lq-radio-icon {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
}
.lq-radio-icon {
  width: 38px; height: 38px;
  background: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.lq-radio-text strong {
  display: block;
  font-size: .92rem;
  color: var(--text-dark);
  font-weight: 600;
}
.lq-radio-text small {
  display: block;
  font-size: .78rem;
  color: var(--text-light);
  margin-top: 1px;
}

/* Select */
.lq-select-wrap {
  margin-top: 16px;
  position: relative;
}
.lq-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green-primary);
  font-size: .9rem;
  pointer-events: none;
}
.lq-select {
  width: 100%;
  padding: 14px 40px 14px 16px;
  border: 2px solid var(--beige);
  border-radius: var(--radius-md);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--text-dark);
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: var(--transition);
}
.lq-select:focus {
  border-color: var(--green-primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(44,106,79,.1);
}

/* Text input */
.lq-text-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--beige);
  border-radius: var(--radius-md);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
  margin-top: 16px;
}
.lq-text-input:focus {
  border-color: var(--green-primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(44,106,79,.1);
}
.lq-text-input::placeholder { color: var(--text-light); }

/* Validation shake */
@keyframes lqShake {
  0%,100% { transform: translateX(0); }
  20%,60%  { transform: translateX(-6px); }
  40%,80%  { transform: translateX(6px); }
}
.lq-invalid .lq-radio-btn,
.lq-invalid.lq-select,
.lq-invalid.lq-text-input {
  border-color: #f87171;
  animation: lqShake .35s ease;
}
.lq-error-msg {
  font-size: .8rem;
  color: #dc2626;
  margin-top: 8px;
  display: none;
}
.lq-error-msg.visible { display: block; }

/* Footer */
.lq-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px 24px;
  border-top: 1px solid var(--beige);
  background: var(--white);
  gap: 12px;
}
.lq-footer-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.lq-btn-back {
  padding: 10px 20px;
  border: 2px solid var(--beige);
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.lq-btn-back:hover { border-color: var(--green-primary); color: var(--green-primary); }

.lq-btn-skip {
  font-size: .82rem;
  color: var(--text-light);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
  transition: var(--transition);
}
.lq-btn-skip:hover { color: var(--text-mid); }

.lq-btn-next {
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: var(--white);
  border-radius: 50px;
  font-size: .92rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(44,106,79,.35);
}
.lq-btn-next:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(44,106,79,.45); }
.lq-btn-next.lq-finish {
  background: linear-gradient(135deg, var(--gold), #a67c2a);
  box-shadow: 0 4px 14px rgba(201,168,76,.4);
}
.lq-btn-next.lq-finish:hover { box-shadow: 0 6px 20px rgba(201,168,76,.5); }

/* Summary badge shown in contact form after popup complete */
.lq-summary-bar {
  display: none;
  background: linear-gradient(135deg, rgba(44,106,79,.08), rgba(201,168,76,.08));
  border: 1px solid rgba(44,106,79,.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: .82rem;
  color: var(--text-mid);
  gap: 8px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.lq-summary-bar.visible { display: flex; }
.lq-summary-bar strong { color: var(--green-dark); }
.lq-summary-tag {
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: .78rem;
  color: var(--green-dark);
  font-weight: 500;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 560px) {
  .lq-modal { max-height: 100vh; border-radius: var(--radius-md); }
  .lq-header { padding: 20px 20px 16px; }
  .lq-body   { padding: 20px; }
  .lq-footer { padding: 16px 20px 20px; }
  .lq-title  { font-size: 1.15rem; }
  .lq-options-2col { grid-template-columns: 1fr; }
  .lq-btn-next { padding: 11px 22px; }
}
