/* ============================================================
   Adel Natural SkinGlow — style.css
   Aesthetic: Organic Luxury — earth tones, cream, deep forest
   green, warm gold accents. Cormorant Garamond + DM Sans.
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --cream:       #F9F4EE;
  --cream-deep:  #F0E8DC;
  --gold:        #C9A84C;
  --gold-light:  #E2C97E;
  --gold-dark:   #9E7A2A;
  --forest:      #2D4A35;
  --forest-mid:  #3E6347;
  --forest-pale: #EBF2ED;
  --earth:       #7B5C3A;
  --earth-pale:  #F5EDE3;
  --charcoal:    #1E1E1E;
  --grey-mid:    #6B6B6B;
  --grey-light:  #D8D0C8;
  --wa-green:    #25D366;
  --white:       #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --shadow-sm:  0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.14);
  --radius:     12px;
  --radius-sm:  6px;
  --trans:      0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── Typography helpers ── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  color: var(--forest);
}

.section-sub {
  color: var(--grey-mid);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

.section-header { margin-bottom: 3.5rem; }

/* ── Buttons ── */
.btn-primary-gold {
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: none;
  transition: var(--trans);
  display: inline-flex;
  align-items: center;
}
.btn-primary-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.45);
  transition: var(--trans);
  display: inline-flex;
  align-items: center;
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}

.btn-wa {
  background: var(--wa-green);
  color: var(--white) !important;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  border: none;
  transition: var(--trans);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-wa:hover {
  background: #1EBE5B;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37,211,102,0.35);
}

.btn-wa-large {
  background: var(--wa-green);
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  border: none;
  transition: var(--trans);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.btn-wa-large:hover {
  background: #1EBE5B;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.4);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  background: transparent;
  padding: 1.2rem 0;
  transition: background var(--trans), backdrop-filter var(--trans), box-shadow var(--trans);
}

#mainNav.scrolled {
  background: rgba(249,244,238,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 0.7rem 0;
}

/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.brand-leaf {
  color: var(--gold);
  font-size: 1.3rem;
  line-height: 1;
}
.brand-text {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: color var(--trans);
}
.brand-text em { font-style: italic; color: var(--gold-light); }
#mainNav.scrolled .brand-text { color: var(--charcoal); }
#mainNav.scrolled .brand-text em { color: var(--gold); }

/* Nav links */
.nav-link {
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.88) !important;
  padding: 0.4rem 0.8rem !important;
  transition: color var(--trans);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0.8rem; right: 0.8rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.nav-link:hover::after { transform: scaleX(1); }
.nav-link:hover { color: var(--white) !important; }

#mainNav.scrolled .nav-link { color: var(--charcoal) !important; }
#mainNav.scrolled .nav-link:hover { color: var(--gold-dark) !important; }

.navbar-toggler {
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  background: transparent;
}
#mainNav.scrolled .navbar-toggler { color: var(--charcoal); }
.navbar-toggler:focus { box-shadow: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: url('https://media.istockphoto.com/id/971593924/photo/pink-shower-gel.webp?a=1&b=1&s=612x612&w=0&k=20&c=CHu_xML7Yc0OP7AL_aJ5hX459BUY5FkMFTF_PlF_EuM=') center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(30,50,35,0.80) 0%,
    rgba(30,50,35,0.55) 50%,
    rgba(30,50,35,0.3) 100%
  );
  z-index: 1;
}

/* Botanical decorative SVG */
.hero-botanical {
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  width: 260px;
  opacity: 0.4;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
}

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  animation: fadeInUp 0.8s ease both;
}
.eyebrow-line {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold-light);
  flex-shrink: 0;
}

/* Hero Title */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.9s 0.1s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 460px;
  margin-bottom: 2rem;
  animation: fadeInUp 1s 0.2s ease both;
}

.hero-ctas { animation: fadeInUp 1s 0.3s ease both; }

/* Trust items */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  animation: fadeInUp 1s 0.4s ease both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}
.trust-item i { color: var(--gold-light); font-size: 0.9rem; }

/* Hero image frame */
.hero-img-frame {
  position: relative;
  animation: fadeInUp 1s 0.5s ease both;
}
.hero-img-inner {
  width: 340px;
  height: 420px;
  border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
  overflow: hidden;
  border: 3px solid rgba(212,175,100,0.35);
}
.hero-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.hero-img-inner:hover img { transform: scale(1.06); }

.hero-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--white);
  border-radius: 50px;
  padding: 0.55rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--charcoal);
  box-shadow: var(--shadow-md);
}
.hero-badge i { color: var(--gold); font-size: 0.9rem; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-indicator i { font-size: 0.7rem; }

/* ============================================================
   PRODUCTS
   ============================================================ */
.section-products {
  padding: 7rem 0;
  background: var(--cream);
}

/* Filter Pills */
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.pill {
  background: transparent;
  border: 1px solid var(--grey-light);
  color: var(--grey-mid);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--trans);
}
.pill:hover,
.pill.active {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}

/* Product Cards */
.product-item {
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.product-item.hidden {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans);
  height: 100%;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.07); }

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  z-index: 2;
}
.new-badge { background: var(--forest); }
.premium-badge { background: var(--earth); }

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,50,35,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--trans);
  z-index: 3;
}
.product-card:hover .product-overlay { opacity: 1; }

.overlay-btn {
  background: var(--wa-green);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--trans);
  transform: translateY(8px);
  transition: transform 0.3s ease, background 0.3s ease;
}
.product-card:hover .overlay-btn { transform: translateY(0); }
.overlay-btn:hover { background: #1EBE5B; color: var(--white); }

/* Product Info */
.product-info {
  padding: 1.3rem 1.4rem 1.5rem;
}
.product-cat {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.product-info h5 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
  margin: 0.3rem 0 0.5rem;
}
.product-info p {
  font-size: 0.83rem;
  color: var(--grey-mid);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--forest);
}
.price-old {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--grey-light);
  text-decoration: line-through;
  margin-left: 0.4rem;
}
.stars { color: var(--gold); font-size: 0.72rem; }

/* ============================================================
   PRICING TABLE
   ============================================================ */
.section-pricing {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--forest-pale) 0%, var(--cream) 100%);
}

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,185,165,0.25);
  transition: transform var(--trans), box-shadow var(--trans);
  position: relative;
  height: 100%;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.price-card--featured {
  background: var(--forest);
  border-color: var(--forest);
}
.price-card--featured h5,
.price-card--featured .price-list { color: var(--white); }

.price-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.price-card h5 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.featured-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: 0.22rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.price-list { margin-top: 1.2rem; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(200,185,165,0.2);
  font-size: 0.88rem;
}
.price-card--featured .price-row { border-bottom-color: rgba(255,255,255,0.12); }
.price-row:last-child { border-bottom: none; }
.price-row span:last-child {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
}
.price-card--featured .price-row span:first-child { color: rgba(255,255,255,0.8); }

.pricing-note {
  font-size: 0.88rem;
  color: var(--grey-mid);
}
.pricing-note a { color: var(--forest); font-weight: 500; text-decoration: underline; }

/* ============================================================
   ABOUT
   ============================================================ */
.section-about {
  padding: 7rem 0;
  background: var(--earth-pale);
}

/* Stacked images */
.about-img-stack {
  position: relative;
  padding-bottom: 3rem;
}
.about-img-main {
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 500px;
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: -20px;
  width: 200px;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 5px solid var(--earth-pale);
  box-shadow: var(--shadow-md);
}
.about-stat-pill {
  position: absolute;
  top: 2rem; right: -24px;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-stat-pill strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}
.about-stat-pill span { font-size: 0.72rem; opacity: 0.9; }

.about-text {
  color: var(--grey-mid);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.about-values { margin-top: 2rem; }
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.value-item > i {
  font-size: 1.1rem;
  color: var(--forest);
  width: 36px;
  height: 36px;
  background: var(--forest-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.value-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}
.value-item p {
  font-size: 0.82rem;
  color: var(--grey-mid);
  margin: 0;
}

/* ============================================================
   INGREDIENTS
   ============================================================ */
.section-ingredients {
  padding: 5.5rem 0;
  background: var(--forest);
}
.section-ingredients .section-eyebrow { color: var(--gold-light); }
.section-ingredients .section-title { color: var(--white); }

.ingredient-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--trans);
  cursor: default;
}
.ingredient-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  border-color: rgba(212,175,100,0.35);
}
.ingredient-icon {
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: 0.7rem;
}
.ingredient-card span {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.section-testimonials {
  padding: 7rem 0;
  background: var(--cream);
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,185,165,0.2);
  height: 100%;
  transition: transform var(--trans), box-shadow var(--trans);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testi-card--featured {
  background: var(--forest);
  border-color: var(--forest);
}
.testi-card--featured .testi-text { color: rgba(255,255,255,0.85); }
.testi-card--featured .testi-author strong { color: var(--white); }
.testi-card--featured .testi-author span { color: rgba(255,255,255,0.55); }
.testi-card--featured .testi-product { border-top-color: rgba(255,255,255,0.1); color: var(--gold-light); }

.testi-stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 1rem; }
.testi-text {
  font-size: 0.9rem;
  color: var(--grey-mid);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}
.testi-avatar {
  width: 42px;
  height: 42px;
  background: var(--forest-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.testi-card--featured .testi-avatar { background: rgba(255,255,255,0.1); color: var(--gold-light); }
.testi-author strong { display: block; font-size: 0.88rem; font-weight: 500; color: var(--charcoal); }
.testi-author span { font-size: 0.75rem; color: var(--grey-mid); }
.testi-product {
  font-size: 0.72rem;
  color: var(--gold-dark);
  border-top: 1px solid rgba(200,185,165,0.25);
  padding-top: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Trust Stats */
.stat-box {
  padding: 1.5rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1;
}
.stat-box > span {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
}
.stat-box p {
  font-size: 0.82rem;
  color: var(--grey-mid);
  margin-top: 0.4rem;
  margin-bottom: 0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.section-contact {
  padding: 7rem 0;
  background: var(--cream-deep);
}

.contact-intro {
  color: var(--grey-mid);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-item > i {
  font-size: 1rem;
  color: var(--forest);
  width: 38px; height: 38px;
  background: var(--forest-pale);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact-item strong { display: block; font-size: 0.78rem; font-weight: 600; color: var(--charcoal); letter-spacing: 0.04em; margin-bottom: 0.1rem; }
.contact-item a, .contact-item span { font-size: 0.88rem; color: var(--grey-mid); }
.contact-item a:hover { color: var(--forest); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h5 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.form-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.form-control, .form-select {
  background: var(--cream);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--charcoal);
  padding: 0.7rem 1rem;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.form-control:focus, .form-select:focus {
  background: var(--white);
  border-color: var(--forest-mid);
  box-shadow: 0 0 0 3px rgba(61,99,71,0.12);
  outline: none;
}
.form-control::placeholder { color: var(--grey-light); }

.form-success-msg {
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.2rem;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  padding: 5rem 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.site-footer .brand-leaf { color: var(--gold); font-size: 1.3rem; }
.site-footer .brand-text { color: var(--white); }
.site-footer .brand-text em { color: var(--gold-light); }

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 0.7rem;
}
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  transition: var(--trans);
}
.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--trans);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-newsletter-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  overflow: hidden;
}
.newsletter-form .form-control {
  background: transparent;
  border: none;
  color: var(--white);
  border-radius: 0;
  font-size: 0.82rem;
  flex: 1;
  padding: 0.7rem 1.2rem;
}
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form .form-control:focus { box-shadow: none; }
.newsletter-form .btn {
  background: var(--gold);
  color: var(--white);
  border-radius: 50px;
  margin: 3px;
  padding: 0 1.1rem;
  border: none;
  transition: var(--trans);
  font-size: 0.85rem;
}
.newsletter-form .btn:hover { background: var(--gold-dark); }

.nl-success {
  font-size: 0.8rem;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-certifications span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.footer-certifications i { color: var(--gold); font-size: 0.8rem; }

.footer-bottom {
  margin-top: 4rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom i { color: #e05050; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 999;
  width: 56px; height: 56px;
  background: var(--wa-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--trans);
}
.whatsapp-float:hover {
  color: var(--white);
  background: #1EBE5B;
  transform: scale(1.1);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--wa-green);
  opacity: 0.5;
  animation: waPulse 2.2s infinite;
}

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

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.5; }
  70%  { transform: scale(1.65); opacity: 0; }
  100% { transform: scale(1.65); opacity: 0; }
}

/* Scroll-reveal base state */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .about-img-accent { right: 0; }
  .about-stat-pill { right: 0; }
  .hero-title { font-size: clamp(2.5rem, 8vw, 4rem); }
  .navbar-collapse {
    background: rgba(249,244,238,0.97);
    backdrop-filter: blur(12px);
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    margin-top: 0.5rem;
    box-shadow: var(--shadow-md);
  }
  .navbar-collapse .nav-link { color: var(--charcoal) !important; }
  .hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }
  .btn-ghost-light { margin-left: 0 !important; }
}

@media (max-width: 767px) {
  .section-products, .section-pricing,
  .section-about, .section-testimonials,
  .section-contact { padding: 5rem 0; }
  .hero-trust { gap: 1rem; }
  .trust-item span { font-size: 0.72rem; }
  .contact-form-wrap { padding: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-img-accent { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .filter-pills { gap: 0.4rem; }
  .pill { font-size: 0.72rem; padding: 0.38rem 0.9rem; }
  .stat-num { font-size: 2.2rem; }
}