/* ============================================================
   ABOUT.CSS — Likitha Enterprises About Us Page Styles
   Matches index.html design system: Green / White / Black
   Font: Barlow Condensed (display) + Barlow (body)
   ============================================================ */

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --green:        #1a7c3e;
  --green-dark:   #125c2d;
  --green-light:  #25a254;
  --green-pale:   #e8f5ed;
  --black:        #0d0d0d;
  --charcoal:     #1c1c1c;
  --grey-dark:    #2e2e2e;
  --grey:         #6b7280;
  --grey-light:   #f5f5f5;
  --white:        #ffffff;
  --accent:       #ffce00;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:    0 2px 12px rgba(0,0,0,.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,.14);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.2);
  --radius:       12px;
  --radius-lg:    20px;
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--grey-light); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 4px; }

/* ── TOP BAR ────────────────────────────────────────────────── */
.top-bar {
  background: var(--black);
  color: #aaa;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .03em;
  padding: 7px 0;
}
.top-bar a { color: #aaa; transition: color .3s; }
.top-bar a:hover { color: var(--accent); }
.top-bar .wa-pill {
  background: #25d366;
  color: #fff;
  padding: 3px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .73rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: background .3s;
}
.top-bar .wa-pill:hover { background: #1ebe58; color: #fff; }
.hide-sm { /* hidden on mobile via media query */ }

/* ── NAVBAR ─────────────────────────────────────────────────── */
.main-nav {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .3s;
}
.main-nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.18); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Brand Logo */
.brand-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-box {
  width: 50px; height: 50px;
  background: var(--green);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: -1px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-box::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
}
.brand-name-wrap { line-height: 1.1; }
.b-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.38rem;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.b-sub {
  font-size: .63rem;
  color: var(--green);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Desktop Nav Links */
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-weight: 600;
  font-size: .9rem;
  color: var(--charcoal);
  padding: 8px 14px;
  border-radius: 8px;
  position: relative;
  transition: color .3s, background .3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--green); background: var(--green-pale); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--green) !important;
  color: #fff !important;
  padding: 9px 22px !important;
  border-radius: 8px !important;
}
.nav-cta:hover { background: var(--green-dark) !important; color: #fff !important; }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  color: var(--black);
  padding: 4px;
}

/* ── MOBILE MENU ─────────────────────────────────────────────── */
.mobile-menu {
  display: flex;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 2000;
  flex-direction: column;
  padding: 28px 24px;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mob-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.mob-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--black);
  line-height: 1;
}
.mob-links a {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.65rem;
  color: var(--black);
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  letter-spacing: .02em;
  transition: color .25s, padding-left .25s;
}
.mob-links a:hover { color: var(--green); padding-left: 8px; }
.mob-cta { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.mob-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #fff;
}
.mob-cta .call-btn { background: var(--green); }
.mob-cta .wa-btn   { background: #25d366; }

/* ── PAGE HERO ──────────────────────────────────────────────── */
.page-hero {
  position: relative;
  background: var(--black);
  padding: 100px 0 80px;
  overflow: hidden;
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,124,62,.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,124,62,.13) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: gridScroll 22s linear infinite;
}
@keyframes gridScroll { to { transform: translateY(56px); } }
.page-hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(26,124,62,.22) 0%, transparent 70%);
}
.page-hero-content {
  position: relative;
  z-index: 10;
}
.breadcrumb-trail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .6s ease forwards .15s;
}
.breadcrumb-trail a { color: var(--green-light); transition: color .25s; }
.breadcrumb-trail a:hover { color: #fff; }
.breadcrumb-trail i { font-size: .6rem; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -.01em;
  opacity: 0;
  animation: fadeUp .7s ease forwards .3s;
}
.page-hero h1 .hl { color: var(--green-light); }
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.62);
  max-width: 500px;
  line-height: 1.75;
  margin-top: 16px;
  opacity: 0;
  animation: fadeUp .7s ease forwards .5s;
}
/* Decorative right side */
.hero-deco {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  opacity: .06;
  background: repeating-linear-gradient(
    45deg,
    var(--green) 0px,
    var(--green) 2px,
    transparent 2px,
    transparent 28px
  );
  pointer-events: none;
}
.hero-year-badge {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  opacity: 0;
  animation: fadeUp .8s ease forwards .6s;
}
.hero-year-badge .yr {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 6rem;
  color: rgba(26,124,62,.25);
  line-height: 1;
  letter-spacing: -4px;
}
.hero-year-badge .yr-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green-light);
}

/* ── SHARED UTILITIES ───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.section-pad    { padding: 88px 0; }
.section-pad-sm { padding: 60px 0; }

.s-label {
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 10px;
}
.s-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 14px;
}
.s-desc {
  color: var(--grey);
  font-size: .97rem;
  line-height: 1.72;
  max-width: 580px;
}
.divider {
  width: 48px;
  height: 4px;
  background: var(--green);
  border-radius: 2px;
  margin-bottom: 18px;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── TICKER ─────────────────────────────────────────────────── */
.ticker { background: var(--green); padding: 10px 0; overflow: hidden; }
.ticker-track {
  display: flex;
  gap: 56px;
  animation: ticker 26s linear infinite;
  white-space: nowrap;
}
.t-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .83rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .08em;
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.t-item i { color: var(--accent); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ── STORY SECTION ──────────────────────────────────────────── */
.story-section { background: var(--white); }

.story-text-block { padding-right: 32px; }
.story-text-block .s-label { color: var(--green); }
.story-text-block p {
  font-size: .97rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
}
.story-text-block p:last-of-type { margin-bottom: 0; }

/* Shop image card */
.shop-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--charcoal);
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--grey-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,.3);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.shop-img-placeholder i { font-size: 3.5rem; color: rgba(26,124,62,.5); }
/* If a real image is used, just replace the div with an <img> */

.img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--green);
  color: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.img-badge .ib-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  color: var(--accent);
}
.img-badge .ib-text {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.4;
}

/* Quick info pills */
.info-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.info-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-pale);
  border: 1px solid rgba(26,124,62,.2);
  color: var(--green-dark);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
}
.info-pill i { color: var(--green); }

/* ── MISSION / VISION / VALUES ──────────────────────────────── */
.mvv-section { background: var(--grey-light); }
.mvv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  height: 100%;
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
}
.mvv-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.mvv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.mvv-card:hover::before { transform: scaleX(1); }
.mvv-icon {
  width: 60px; height: 60px;
  background: var(--green-pale);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--green);
  margin-bottom: 22px;
  transition: background .3s, transform .3s;
}
.mvv-card:hover .mvv-icon { background: var(--green); color: #fff; transform: rotate(-8deg); }
.mvv-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.mvv-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 12px;
}
.mvv-text {
  font-size: .9rem;
  color: var(--grey);
  line-height: 1.72;
}
.mvv-list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mvv-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .88rem;
  color: var(--grey-dark);
  line-height: 1.5;
}
.mvv-list li i { color: var(--green); font-size: .95rem; margin-top: 2px; flex-shrink: 0; }

/* ── TIMELINE ───────────────────────────────────────────────── */
.timeline-section { background: var(--black); }
.timeline-section .s-label { color: var(--green-light); }
.timeline-section .s-title { color: #fff; }
.timeline-section .s-desc  { color: rgba(255,255,255,.5); }
.timeline-section .divider { background: var(--green-light); }

.timeline {
  position: relative;
  padding: 20px 0;
  margin-top: 48px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(26,124,62,.6) 10%, rgba(26,124,62,.6) 90%, transparent);
  transform: translateX(-50%);
}
.tl-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 40px);
  margin-bottom: 52px;
  position: relative;
}
.tl-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 40px);
}
.tl-dot {
  position: absolute;
  left: 50%;
  top: 22px;
  transform: translateX(-50%);
  width: 16px; height: 16px;
  background: var(--green);
  border-radius: 50%;
  border: 3px solid var(--black);
  box-shadow: 0 0 0 3px rgba(26,124,62,.4);
  z-index: 2;
  transition: box-shadow .3s;
}
.tl-item:hover .tl-dot {
  box-shadow: 0 0 0 6px rgba(26,124,62,.3);
}
.tl-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  padding: 22px 24px;
  max-width: 340px;
  width: 100%;
  transition: background .3s, border-color .3s;
}
.tl-card:hover { background: rgba(255,255,255,.08); border-color: rgba(26,124,62,.4); }
.tl-year {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--green-light);
  letter-spacing: .06em;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tl-year i { font-size: .85rem; color: var(--accent); }
.tl-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.tl-text { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.65; }

/* ── STATS BAND ─────────────────────────────────────────────── */
.stats-band { background: var(--green); padding: 60px 0; }
.stat-block { text-align: center; padding: 10px; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}

/* ── TEAM / BRAND SECTION ───────────────────────────────────── */
.brand-section { background: var(--white); }
.brand-logo-card {
  background: var(--grey-light);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  border: 2px solid transparent;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.brand-logo-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.brand-logo-icon {
  font-size: 3.5rem;
  color: var(--green);
  margin-bottom: 16px;
  transition: transform .3s;
}
.brand-logo-card:hover .brand-logo-icon { transform: scale(1.12) rotate(-5deg); }
.brand-logo-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 6px;
}
.brand-logo-desc { font-size: .82rem; color: var(--grey); line-height: 1.6; }

/* Certified badge */
.certified-block {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.certified-block .cert-icon {
  font-size: 3.5rem;
  margin-bottom: 18px;
  color: var(--accent);
}
.certified-block h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 14px;
}
.certified-block p {
  font-size: .92rem;
  line-height: 1.72;
  color: rgba(255,255,255,.78);
  margin-bottom: 24px;
}
.cert-perks { display: flex; flex-direction: column; gap: 10px; }
.cert-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: rgba(255,255,255,.88);
  font-weight: 500;
}
.cert-perk i { color: var(--accent); font-size: 1rem; flex-shrink: 0; }

/* ── WHY CHOOSE US (about variant) ────────────────────────────*/
.why-about { background: var(--grey-light); }
.wa-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  height: 100%;
  display: flex;
  gap: 18px;
  border: 1px solid #eee;
  transition: box-shadow .3s, transform .3s;
}
.wa-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.wa-icon {
  width: 50px; height: 50px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  color: var(--green);
  flex-shrink: 0;
  transition: background .3s, transform .3s;
}
.wa-card:hover .wa-icon { background: var(--green); color: #fff; transform: rotate(-8deg); }
.wa-body {}
.wa-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 6px;
}
.wa-text { font-size: .85rem; color: var(--grey); line-height: 1.65; }

/* ── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
  background: var(--black);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 75% at 50% 50%, rgba(26,124,62,.2) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 1.05;
}
.cta-section p {
  color: rgba(255,255,255,.58);
  font-size: .98rem;
  margin-bottom: 34px;
  max-width: 480px;
  margin-left: auto; margin-right: auto;
}
.cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* Shared buttons */
.btn-green {
  background: var(--green);
  color: #fff;
  padding: 13px 30px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 2px solid var(--green);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .3s, transform .3s, box-shadow .3s;
  box-shadow: 0 4px 20px rgba(26,124,62,.4);
}
.btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,124,62,.5); color: #fff; }

.btn-call {
  background: #fff;
  color: var(--black);
  padding: 13px 30px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .98rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background .3s, transform .3s;
}
.btn-call:hover { background: var(--grey-light); transform: translateY(-2px); color: var(--black); }

.btn-wa {
  background: #25d366;
  color: #fff;
  padding: 13px 30px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .98rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background .3s, transform .3s;
}
.btn-wa:hover { background: #1ebe58; transform: translateY(-2px); color: #fff; }

/* ── FOOTER ─────────────────────────────────────────────────── */
footer { background: var(--black); color: #fff; padding: 60px 0 0; }
.f-tagline {
  font-size: .82rem;
  color: rgba(255,255,255,.42);
  margin-top: 12px;
  line-height: 1.65;
  max-width: 260px;
}
.f-head {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .83rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--green-light);
  margin-bottom: 18px;
}
.f-links a {
  display: block;
  color: rgba(255,255,255,.48);
  font-size: .87rem;
  margin-bottom: 10px;
  transition: color .25s, padding-left .25s;
}
.f-links a:hover { color: #fff; padding-left: 6px; }
.f-ci {
  display: flex;
  gap: 10px;
  margin-bottom: 13px;
  font-size: .87rem;
  color: rgba(255,255,255,.52);
}
.f-ci i { color: var(--green-light); font-size: .98rem; flex-shrink: 0; margin-top: 2px; }
.f-ci a { color: rgba(255,255,255,.52); transition: color .25s; }
.f-ci a:hover { color: #fff; }
.f-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: .76rem;
  color: rgba(255,255,255,.32);
}
.soc-links { display: flex; gap: 10px; }
.soc-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: .98rem;
  color: rgba(255,255,255,.48);
  transition: border-color .3s, color .3s, background .3s;
}
.soc-link:hover { border-color: var(--green); color: var(--green-light); background: rgba(26,124,62,.1); }

/* ── FLOATING BUTTONS ───────────────────────────────────────── */
#btt {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--green);
  color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.18rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(26,124,62,.45);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s, transform .3s, background .3s;
  z-index: 999;
  border: none;
}
#btt.show { opacity: 1; transform: translateY(0); }
#btt:hover { background: var(--green-dark); }

.wa-float {
  position: fixed;
  bottom: 86px; right: 28px;
  width: 46px; height: 46px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .3s, background .3s;
  z-index: 999;
}
.wa-float:hover { transform: scale(1.12); background: #1ebe58; color: #fff; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1199px) {
  .hero-year-badge { right: 20px; }
  .hero-year-badge .yr { font-size: 5rem; }
}

@media (max-width: 991px) {
  .nav-links  { display: none; }
  .hamburger  { display: block; }
  .story-text-block { padding-right: 0; margin-bottom: 40px; }
  .hero-year-badge  { display: none; }
  .timeline::before { left: 24px; transform: none; }
  .tl-item,
  .tl-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 60px;
    padding-right: 0;
  }
  .tl-dot { left: 24px; transform: none; }
  .tl-card { max-width: 100%; }
  .certified-block { border-radius: var(--radius); padding: 36px 28px; margin-top: 24px; }
}

@media (max-width: 767px) {
  .section-pad  { padding: 60px 0; }
  .hide-sm      { display: none !important; }
  .page-hero    { padding: 72px 0 60px; }
  .page-hero h1 { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .f-bottom     { flex-direction: column; text-align: center; }
  .cta-section  { padding: 60px 0; }
  .shop-img-card { height: 280px; }
}

@media (max-width: 480px) {
  .tl-item,
  .tl-item:nth-child(even) { padding-left: 48px; }
  .tl-dot { left: 16px; }
  .timeline::before { left: 16px; }
}
