/* ═══════════════════════════════════════════════
   APPOLLO PRODUCTS — PREMIUM KOMBUCHA
   Clean · Modern · Fully Responsive · High-End
   ═══════════════════════════════════════════════ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green-deep: #0d3b1a;
  --green-dark: #145220;
  --green: #1e6b2e;
  --green-mid: #2a8040;
  --green-light: #e8f5ec;
  --mint: #f2faf5;
  --white: #ffffff;
  --off-white: #fafcfa;
  --cream: #fdf9f0;
  --gold: #b87800;
  --gold-light: #d4960a;
  --gold-pale: #fff8e0;
  --gold-warm: #ffd86a;
  --text-dark: #111a13;
  --text-heading: #0f2614;
  --text-body: #3a5340;
  --text-muted: #6b8570;
  --border: #1e6b2e1a;
  --shadow-sm: 0 2px 12px #0f26140f;
  --shadow-md: 0 8px 32px #0f261414;
  --shadow-lg: 0 20px 60px #0f26141f;
  --shadow-gold: 0 8px 32px #b8780026;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --ease-out: cubic-bezier(0.22, 0.68, 0, 1.1);
  --ease-bounce: cubic-bezier(0.22, 0.68, 0, 1.4);
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

h1,
h2,
h3,
h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--text-heading);
  line-height: 1.2;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ── ANIMATIONS ── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.stagger>* {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger.visible>*:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0s;
}

.stagger.visible>*:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: .12s;
}

.stagger.visible>*:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: .24s;
}

.stagger.visible>*:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: .36s;
}

.stagger.visible>*:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: .48s;
}

.stagger.visible>*:nth-child(6) {
  opacity: 1;
  transform: none;
  transition-delay: .6s;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

@keyframes pulse-blob {

  0%,
  100% {
    transform: scale(1);
    opacity: .6;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

@keyframes fadeInBadge {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(48px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroImgIn {
  from {
    opacity: 0;
    transform: scale(.85) translateY(40px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes glow-pulse {

  0%,
  100% {
    opacity: .3;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: .5;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* ═══════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffffeb;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  animation: slideDown 0.6s ease both;
  transition: background var(--transition), box-shadow var(--transition);
}

nav.scrolled {
  background: #fffffff8;
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.nav-logo:hover {
  transform: scale(1.03);
}

.nav-logo-img {
  width: 90px;
  height: 70px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-brand-text {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
  letter-spacing: 0.3px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--green);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--green-dark);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  border: none;
  letter-spacing: 0.3px;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.nav-cta:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #1e6b2e4d;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-heading);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════════
   S1 — HERO (Mint Green)
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 2rem 80px;
  background: url("Assets/background.jpg") no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
}

.shape-1 {
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #1e6b2e14 0%, transparent 70%);
  animation: pulse-blob 8s ease-in-out infinite;
}

.shape-2 {
  bottom: -100px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #b878000d 0%, transparent 70%);
  animation: pulse-blob 10s ease-in-out infinite reverse;
}

.shape-3 {
  top: 40%;
  left: 45%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #1e6b2e0a 0%, transparent 70%);
  animation: pulse-blob 6s ease-in-out infinite 2s;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-text {
  animation: heroTextIn 1s var(--ease-out) 0.2s both;
}

.hero-badge {
  display: inline-block;
  background:#aeeb05;
  border: 1.5px solid #1e6b2e33;
  color: black;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 600;
  animation: fadeInBadge 0.7s ease 0.5s both;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  color: #aeeb05;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero h1 span {
  color: #f8d46f;
}

.hero-sub {
  font-size: 19px;
  color:#ffffff;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  background: #aeeb05;
  color: rgb(0, 0, 0);
  border: 2px solid  #aeeb05;
  padding: 15px 34px;
  border-radius: var(--radius-full) ;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background:var(--green-dark);
  transform: translateY(-3px);
  color:white;
  box-shadow: 0 10px 28px #1e6b2e4d;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #aeeb05;
  border: 2px solid #aeeb05;
  padding: 13px 34px;
  border-radius: var(--radius-full);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--green-dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px #29e94f33;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #1e6b2e1f;
  animation: heroTextIn 0.9s var(--ease-out) 0.7s both;
}

.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #aeeb05;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: white;
  margin-top: 6px;
  font-weight: 500;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: heroImgIn 1s var(--ease-out) 0.4s both;
}

.hero-img-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, #e8f5ece6 0%, #f2faf566 60%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: glow-pulse 4s ease-in-out infinite;
  pointer-events: none;
}

.hero-img-container {
  width: 100%;
  max-width: 480px;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 60px #0f26142e);
  animation: float 5s ease-in-out infinite;
}

.mobile-hero-image {
  display: none !important;
}

/* ── Section Utilities ── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 28px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--green);
  transform: translateY(-50%);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-label {
  padding-left: 0;
}

.section-header .section-label::before {
  display: none;
}

.section-header h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}

.section-header p {
  font-size: 19px;
  color: var(--green);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   S2 — ABOUT (White)
   ═══════════════════════════════════════════════ */
.about {
  background: var(--white);
  padding: 7rem 2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about h2 {
  font-size: clamp(26px, 3vw, 40px);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.about p {
  font-size: 20px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-features {
  margin-top: 2rem;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
  color: var(--text-heading);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  transition: color var(--transition), gap var(--transition);
}

.about-features li:last-child {
  border-bottom: none;
}

.about-features li:hover {
  color: var(--green);
  gap: 18px;
}

.check {
  width: 26px;
  height: 26px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 12px;
  font-weight: 700;
  transition: transform var(--transition);
}

.about-features li:hover .check {
  transform: scale(1.15);
}

.about-img-wrap {
  max-width: 400px;
  margin:0 auto;
  position: relative; /* important for positioning badge */
  background: var(--mint);
  border-radius: 35px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-wrap:hover {
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 90%;
  height: auto;
  max-height: 500px;
  display: block;
  border-radius: 40px;
}

.about-img-wrap:hover img {
  transform: scale(1.05);
}

.since-badge {
  position: absolute;
  top: -50px;   /* pushes outside */
  left: -1px; 
  bottom: auto;   /* pushes outside */
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green-deep));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  z-index: 2;
}

.since-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px #14522059;
}

.since-badge .year {
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  color: var(--gold-warm);
}


.since-badge .year-label {
  font-size: 10px;
  opacity: 0.85;
  margin-top: 3px;
  padding: 0 8px;
}
/* ═══════════════════════════════════════════════
   S3 — BENEFITS (Cream)
   ═══════════════════════════════════════════════ */
.benefits {
  background: #f8d46f;
  padding: 6rem 2rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  text-align: center;
  border: 1px solid #b8780014;
  transition: transform 0.35s var(--ease-bounce), box-shadow 0.35s ease;
  
}

.benefit-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.3rem;
  font-size: 28px;
  transition: transform 0.4s var(--ease-bounce);
}

.benefit-card:hover .benefit-icon {
  transform: rotate(8deg) scale(1.15);
}

.benefit-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.benefit-card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   S4 — PRODUCTS (Mint)
   ═══════════════════════════════════════════════ */
.products {
  background: #d9ffe7;
  padding: 6rem 2rem;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 920px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-bounce), box-shadow 0.35s ease;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-mid));
  opacity: 0;
  transition: opacity var(--transition);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.product-badge {
  display: inline-block;
  padding: 5px 18px;
  border-radius: var(--radius-full);
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.badge-green {
  background: var(--green-light);
  color: var(--green-dark);
  border: 1px solid #1e6b2e26;
}

.badge-gold {
  background: var(--gold-pale);
  color: var(--gold);
  border: 1px solid #b8780033;
}

.product-img-container {
  width: 100%;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  overflow: hidden;
}

.product-img-container img {
  width: 500px;
  height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px #0f26141f);
  transition: transform 0.5s var(--ease-out);
}

.product-card:hover .product-img-container img {
  transform: scale(1.06) translateY(-8px);
}

.product-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.product-meta {
  margin-bottom: 1.5rem;
}

.product-size {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: var(--green);
  border: 1px solid #1e6b2e40;
  padding: 5px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.btn-product {
  background: var(--green-dark);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: var(--radius-full);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-product:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #1e6b2e40;
}

/* ═══════════════════════════════════════════════
   S5 — PROCESS (White)
   ═══════════════════════════════════════════════ */
.process {
  background: var(--white);
  padding: 6rem 2rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step {
  text-align: center;
  position: relative;
  padding: 1.5rem 1rem;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 38px;
  right: -0.75rem;
  width: 1.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  opacity: 0.35;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-light);
  border: 2px solid var(--green);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 1.2rem;
  transition: all 0.35s var(--ease-bounce);
}

.step:hover .step-num {
  background: var(--green-dark);
  color: white;
  transform: scale(1.12);
  box-shadow: 0 8px 24px #1e6b2e4d;
}

.step h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}

.step:hover h3 {
  color: var(--green);
}

.step p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   S6 — TESTIMONIALS SLIDER (Gold Pale)
   ═══════════════════════════════════════════════ */
.testimonials {
  background: #f8d46f;
  padding: 6rem 2rem;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.slider-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem 2rem;
  border: 1px solid #b878001a;
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 0;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 1rem;
  letter-spacing: 3px;
}

.testimonial-card p {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.testimonial-card:hover .author-avatar {
  transform: scale(1.1);
}

.author-name {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-heading);
}

.author-loc {
  font-size: 12px;
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: var(--white);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}

.slider-btn:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: white;
  transform: scale(1.08);
}

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1e6b2e33;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  padding: 0;
}

.slider-dot.active {
  background: var(--green);
  width: 28px;
  border-radius: 8px;
}

/* ═══════════════════════════════════════════════
   S7 — FAQ (Off-White)
   ═══════════════════════════════════════════════ */
.faq {
  background: var(--off-white);
  padding: 6rem 2rem;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.faq-item:hover,
.faq-item.open {
  border-color: #1e6b2e40;
  box-shadow: 0 6px 24px #1e6b2e0f;
}

.faq-q {
  width: 100%;
  padding: 1.3rem 1.8rem;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-heading);
  text-align: left;
  transition: color var(--transition);
}

.faq-q:hover {
  color: var(--green);
}

.faq-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  color: var(--green);
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.8rem;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 1.8rem 1.3rem;
}

.faq-a p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   S8 — CONTACT (Dark Green)
   ═══════════════════════════════════════════════ */
.contact {
  background: linear-gradient(145deg, var(--green-deep), var(--green-dark), var(--green));
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: #ffd86a08;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-col h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  color: white;
  margin-bottom: 1rem;
}

.contact-desc {
  color: #ffffffa6;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ffffffd9;
  font-size: 15px;
  transition: gap var(--transition);
}

.contact-item:hover {
  gap: 20px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff1a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffffcc;
  transition: background var(--transition), transform var(--transition);
}

.contact-item:hover .contact-icon {
  background: #ffffff2e;
  transform: scale(1.08);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #ffffff40;
  background: transparent;
  color: #ffffffcc;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.social-btn:hover {
  background: #ffffff26;
  transform: translateY(-3px) scale(1.08);
  border-color: var(--gold-warm);
  color: var(--gold-warm);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  background: #ffffff14;
  border: 1.5px solid #ffffff26;
  border-radius: var(--radius-sm);
  padding: 15px 18px;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #ffffff59;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ffd86a80;
  background: #ffffff1f;
  transform: translateY(-1px);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  background: var(--gold-warm);
  color: var(--green-deep);
  border: none;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #ffe88a;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px #00000033;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
footer {
  background: #091f10;
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #ffffff14;
}

.footer-brand-row {
    display: flex;
  flex-direction: column;   /* 🔥 makes logo go above */
  align-items: flex-start; 
}

.footer-logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-brand {
  font-family: 'Poppins', sans-serif;
  color: var(--gold-warm);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.3rem;
  letter-spacing: 1.5px;
}

.footer-tagline {
  color: rgb(255, 245, 245);
  font-size: 13px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--gold-warm);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li {
  color: rgb(255, 245, 245);
  font-size: 14px;
  line-height: 1.6;
}

.footer-col a {
  color: rgb(255, 245, 245);
  font-size: 14px;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-col a:hover {
  color: var(--gold-warm);
  padding-left: 6px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  color: rgb(255, 245, 245);
  font-size: 13px;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width:1100px) {
  .nav-inner {
    padding: 0 1.5rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .hero-sub {
    margin: 0 auto 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .desktop-hero-image {
    display: none !important;
  }

  .mobile-hero-image {
    display: flex !important;
    margin-bottom: 2.5rem;
  }

  .about-grid {
    gap: 3rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .step:not(:last-child)::after {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (max-width:768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 100px 2rem 2rem;
    gap: 0;
    box-shadow: -8px 0 32px #0000001a;
    transition: right 0.4s ease;
    z-index: 999;
  }
  .nav-links.open {
    right: 0;
  }

  .nav-links li {
    border-bottom: 1px solid var(--border);
  }

  .nav-link {
    display: block;
    padding: 16px 0;
    font-size: 16px;
  }

  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-brand-text {
    display: none;
  }

  .hero {
    padding: 110px 1.5rem 50px;
    min-height: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 2rem;
  }

  .hero-img-container {
    max-width: 340px;
    height: 380px;
    margin: 0 auto;
  }

  .hero-img-glow {
    width: 260px;
    height: 260px;
  }

  .about {
    padding: 5rem 1.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .section-label {
    padding-left: 0;
  }

  .section-label::before {
    display: none;
  }

  .about-features li {
    justify-content: center;
  }

  .benefits,
  .products,
  .process,
  .testimonials,
  .faq {
    padding: 5rem 1.5rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  .contact {
    padding: 5rem 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-brand {
    text-align: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

     .footer-brand-row {
    align-items: center;     /* center logo horizontally */
    text-align: center;      /* center text */
  }
  

  .footer-col ul {
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width:576px) {
  .hero h1 {
    font-size: 30px;
  }

  .hero-badge {
    font-size: 10px;
    padding: 5px 14px;
    letter-spacing: 1.5px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .stat-num {
    font-size: 26px;
  }

  .hero-img-container {
    max-width: 280px;
    height: 310px;
  }

  .hero-img-glow {
    width: 200px;
    height: 200px;
  }

  .about h2,
  .section-header h2 {
    font-size: 24px;
  }

  .about-img-wrap {
    height: 260px;
    padding: 1.5rem;
  }

  .since-badge .year {
    font-size: 36px;
  }

  .benefit-card {
    padding: 1.5rem 1.2rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .section-header {
    margin-bottom: 3rem;
  }
}

@media (max-width:400px) {
  .nav-inner {
    padding: 0 1rem;
    height: 72px;
  }

  .nav-logo-img {
    width: 80px;
    height: 60px;
  }

  .hero {
    padding: 96px 1rem 40px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero-sub {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero-img-container {
    max-width: 220px;
    height: 250px;
  }

  .about,
  .benefits,
  .products,
  .process,
  .testimonials,
  .faq {
    padding: 3.5rem 1rem;
  }

  .contact {
    padding: 3.5rem 1rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-col h2 {
    font-size: 24px;
  }

  .faq-q {
    padding: 1rem 1.2rem;
    font-size: 14px;
  }

  .faq-a {
    padding: 0 1.2rem;
  }

  .faq-item.open .faq-a {
    padding: 0 1.2rem 1rem;
  }

  footer {
    padding: 2.5rem 1rem 1.5rem;
  }

  .footer-brand {
    font-size: 15px;
    text-align: center;
  }

  .footer-logo-img {
    width: 80px;
    height: 70px;
  }
}