/* ============================================================
   FLUX FRESH FOODS — Global Stylesheet
   Glassmorphic | Green & Blue | Mobile-First
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --green-primary: #00c853;
  --green-light: #69f0ae;
  --green-dark: #00701a;
  --blue-primary: #0288d1;
  --blue-light: #4fc3f7;
  --blue-dark: #01579b;
  --accent: #00e5ff;

  --bg-dark: #030f0a;
  --bg-deep: #050d14;
  --bg-mid: #071a10;
  --bg-surface: rgba(5, 20, 12, 0.7);

  --glass-bg: rgba(0, 200, 83, 0.06);
  --glass-border: rgba(0, 200, 83, 0.18);
  --glass-shadow: rgba(0, 200, 83, 0.08);
  --glass-hover: rgba(0, 200, 83, 0.12);
  --glass-blue-bg: rgba(2, 136, 209, 0.06);
  --glass-blue-border: rgba(2, 136, 209, 0.18);

  --text-primary: #e8f5e9;
  --text-secondary: #a5d6a7;
  --text-muted: #558b6a;
  --text-white: #ffffff;

  --font-body: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  --shadow-glow-green: 0 0 30px rgba(0, 200, 83, 0.25);
  --shadow-glow-blue: 0 0 30px rgba(2, 136, 209, 0.25);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);

  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.25; }

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Glass Card ---- */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card), var(--shadow-glow-green);
  transition: var(--transition);
}
.glass-card:hover {
  background: var(--glass-hover);
  border-color: var(--green-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 40px rgba(0,200,83,0.3);
}

/* ---- Section Basics ---- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header.center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(0,200,83,0.15), rgba(2,136,209,0.15));
  border: 1px solid rgba(0,200,83,0.3);
  color: var(--green-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  background: linear-gradient(135deg, #fff 40%, var(--green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--green-light), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  background: linear-gradient(135deg, var(--green-primary), var(--blue-primary));
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(0,200,83,0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(0,200,83,0.5);
  filter: brightness(1.1);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--green-primary);
  transform: translateY(-3px);
}

.btn-outline-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  border: 1.5px solid var(--green-primary);
  color: var(--green-light);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 16px;
}
.btn-outline-green:hover {
  background: rgba(0,200,83,0.1);
  transform: translateX(6px);
}

/* ---- Image Frame ---- */
.img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-card), var(--shadow-glow-green);
  position: relative;
}
.img-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.img-frame:hover img { transform: scale(1.04); }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(3, 15, 10, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,200,83,0.12);
  transition: var(--transition);
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(3, 15, 10, 0.92);
  border-bottom-color: rgba(0,200,83,0.25);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  flex-shrink: 0;
}
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--green-light);
  filter: drop-shadow(0 0 8px rgba(0,200,83,0.6));
}
.logo-icon svg {
  width: 100%;
  height: 100%;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-white);
}
.logo-accent {
  background: linear-gradient(135deg, var(--green-light), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  color: var(--text-white);
  background: rgba(0,200,83,0.1);
}
.nav-link.active {
  color: var(--green-light);
}

.nav-cta {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--green-primary), var(--blue-primary));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  box-shadow: 0 2px 16px rgba(0,200,83,0.3);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,200,83,0.5);
  filter: brightness(1.1);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--green-light);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(3,15,10,0.92) 0%,
    rgba(5,20,12,0.88) 40%,
    rgba(1,87,155,0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(0,200,83,0.15), rgba(2,136,209,0.15));
  border: 1px solid rgba(0,200,83,0.35);
  color: var(--green-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  animation: fadeInDown 0.8s ease both;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.1;
  animation: fadeInUp 0.9s ease 0.1s both;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  animation: fadeInUp 0.9s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 24px 32px;
  background: rgba(0,200,83,0.06);
  border: 1px solid rgba(0,200,83,0.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  animation: fadeInUp 0.9s ease 0.4s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--green-light), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(0,200,83,0.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: bounce 2s infinite;
}
.scroll-dot {
  width: 36px;
  height: 56px;
  border: 2px solid rgba(0,200,83,0.4);
  border-radius: 18px;
  position: relative;
}
.scroll-dot::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 12px;
  background: var(--green-primary);
  border-radius: 3px;
  animation: scroll-scroll 2s infinite;
}

/* ===========================
   TICKER
   =========================== */
.ticker-section {
  background: linear-gradient(135deg, rgba(0,200,83,0.08), rgba(2,136,209,0.08));
  border-top: 1px solid rgba(0,200,83,0.15);
  border-bottom: 1px solid rgba(0,200,83,0.15);
  padding: 18px 0;
  overflow: hidden;
}

.ticker-wrapper { overflow: hidden; position: relative; }
.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker-track span {
  white-space: nowrap;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

/* ===========================
   WHO WE ARE
   =========================== */
.who-we-are {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-mid) 100%);
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.who-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.highlight-icon { font-size: 1.1rem; }

.who-image { position: relative; }
.img-badge {
  position: absolute;
  bottom: 24px;
  left: -24px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  min-width: 200px;
}
.img-badge-icon { font-size: 1.8rem; }
.img-badge strong { color: var(--text-white); font-size: 0.95rem; }
.img-badge p { color: var(--text-muted); font-size: 0.8rem; margin: 0; }

/* ===========================
   PRODUCTS
   =========================== */
.products-section {
  background: var(--bg-mid);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  padding: 36px 28px;
  text-align: center;
}
.product-icon {
  font-size: 2.8rem;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 12px rgba(0,200,83,0.4));
}
.product-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}
.product-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ===========================
   NETWORK
   =========================== */
.network-section {
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-dark) 100%);
}

.network-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.locations-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
}
.location-icon { font-size: 1.4rem; margin-top: 2px; }
.location-item strong {
  display: block;
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.location-item p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

/* ===========================
   WHY CHOOSE US
   =========================== */
.why-section {
  background: var(--bg-dark);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-primary), var(--blue-primary));
  border-radius: 3px 3px 0 0;
}
.why-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0,200,83,0.12);
  margin-bottom: 16px;
  line-height: 1;
}
.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}
.why-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ===========================
   STATS SECTION
   =========================== */
.stats-section {
  position: relative;
  padding: 100px 0;
}
.stats-section .container { position: relative; z-index: 1; }

.stats-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.stats-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stats-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3,15,10,0.93), rgba(1,87,155,0.8));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.stat-card {
  padding: 40px 24px;
  text-align: center;
  background: rgba(0,200,83,0.08);
  border: 1px solid rgba(0,200,83,0.2);
}
.stat-big-number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--green-light), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-big-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===========================
   WHO WE SERVE
   =========================== */
.serve-section {
  background: var(--bg-mid);
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.serve-card {
  overflow: hidden;
}
.serve-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.serve-card:hover .serve-img { transform: scale(1.05); }
.serve-content {
  padding: 28px 24px;
}
.serve-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 8px rgba(0,200,83,0.4));
}
.serve-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}
.serve-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===========================
   HOW IT WORKS
   =========================== */
.how-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-mid) 100%);
}

.steps-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}

.step-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  position: relative;
}

.step-number {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--green-primary), var(--blue-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border: 2px solid var(--green-primary);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-connector {
  position: absolute;
  top: 34px;
  left: calc(50% + 34px);
  width: calc(100% - 34px);
  height: 2px;
  background: linear-gradient(90deg, rgba(0,200,83,0.5), rgba(2,136,209,0.3));
}
.step-connector.last { display: none; }

.step-content {
  padding: 24px 20px;
  width: 100%;
}
.step-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}
.step-content p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ===========================
   QUALITY SECTION
   =========================== */
.quality-section {
  background: var(--bg-dark);
}

.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.quality-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 28px;
}
.quality-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.qf-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(0,200,83,0.4));
}
.quality-feature h4 {
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.quality-feature p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ===========================
   SUPPLIERS
   =========================== */
.suppliers-section {
  background: var(--bg-mid);
}

.suppliers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.supplier-card {
  padding: 32px 24px;
  text-align: center;
}
.supplier-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(0,200,83,0.4));
}
.supplier-card h3 {
  color: var(--text-white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.supplier-card p {
  color: var(--text-secondary);
  font-size: 0.87rem;
  line-height: 1.6;
}

.suppliers-image-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.suppliers-image-row img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}
.suppliers-image-row img:hover { transform: scale(1.03); }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials-section {
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-dark) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial-stars { font-size: 1rem; letter-spacing: 3px; }
.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-primary), var(--blue-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  color: var(--text-white);
  font-size: 0.9rem;
}
.testimonial-author span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ===========================
   CTA
   =========================== */
.cta-section {
  position: relative;
  padding: 120px 0;
}

.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3,15,10,0.92), rgba(1,87,155,0.85));
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 20px;
}
.cta-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid rgba(0,200,83,0.12);
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(0,200,83,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 12px;
}
.footer-email a {
  color: var(--green-light);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-email a:hover { color: var(--blue-light); }

.footer-col h4 {
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-primary), var(--blue-primary));
  border-radius: 1px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--green-light); transform: translateX(4px); display: inline-block; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(0,200,83,0.08);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--green-light); }

/* ===========================
   ABOUT PAGE STYLES
   =========================== */
.page-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3,15,10,0.93), rgba(1,87,155,0.75));
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}
.page-hero-content .section-badge { margin-bottom: 20px; }
.page-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 20px;
}
.page-hero-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.7;
}

/* Timeline */
.timeline-section { background: var(--bg-mid); }
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--green-primary), var(--blue-primary));
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  gap: 40px;
  margin-bottom: 48px;
  align-items: flex-start;
}
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-side { flex: 1; }
.timeline-item:nth-child(odd) .timeline-side:last-child { visibility: hidden; }
.timeline-item:nth-child(even) .timeline-side:first-child { visibility: hidden; }
.timeline-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-primary), var(--blue-primary));
  flex-shrink: 0;
  margin-top: 20px;
  box-shadow: 0 0 16px rgba(0,200,83,0.5);
  z-index: 1;
}
.timeline-content {
  padding: 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
}
.timeline-content h3 {
  color: var(--text-white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.timeline-content .tl-year {
  color: var(--green-light);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.timeline-content p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  padding: 36px 28px;
  text-align: center;
}
.value-icon {
  font-size: 2.8rem;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 12px rgba(0,200,83,0.4));
}
.value-card h3 {
  color: var(--text-white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.value-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  padding: 36px 28px;
  text-align: center;
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-primary), var(--blue-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.4rem;
  color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 0 24px rgba(0,200,83,0.4);
}
.team-card h3 {
  color: var(--text-white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.team-card .team-role {
  color: var(--green-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.team-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-form-section { background: var(--bg-dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-info-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-card {
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-info-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(0,200,83,0.4));
}
.contact-info-card h3 {
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-info-card p, .contact-info-card a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}
.contact-info-card a:hover { color: var(--green-light); }

.contact-form-wrapper {
  padding: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}
.contact-form-wrapper h3 {
  color: var(--text-white);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(0,200,83,0.04);
  border: 1px solid rgba(0,200,83,0.2);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  font-size: 0.92rem;
  font-family: var(--font-body);
  transition: var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group select option { background: var(--bg-dark); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-primary);
  background: rgba(0,200,83,0.08);
  box-shadow: 0 0 0 3px rgba(0,200,83,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--green-primary), var(--blue-primary));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,200,83,0.4);
}

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
}
.faq-question {
  width: 100%;
  padding: 22px 24px;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 0.98rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--green-light); }
.faq-icon {
  font-size: 1.2rem;
  color: var(--green-light);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 24px 22px;
}
.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Hub Cards */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hub-card {
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hub-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-primary), var(--blue-primary));
}
.hub-icon { font-size: 2.2rem; margin-bottom: 14px; }
.hub-card h3 { color: var(--text-white); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.hub-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="zoom-in"] { transform: scale(0.92); }
[data-aos="fade-up"] { transform: translateY(30px); }

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }

/* ===========================
   KEYFRAMES
   =========================== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}
@keyframes scroll-scroll {
  0% { top: 8px; opacity: 1; }
  100% { top: 30px; opacity: 0; }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(0,200,83,0.2); }
  50% { box-shadow: 0 0 40px rgba(0,200,83,0.5); }
}

/* ===========================
   RESPONSIVE — TABLET
   =========================== */
@media (max-width: 1024px) {
  .who-grid,
  .network-grid,
  .quality-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .img-badge { left: 0; }
  .who-image { order: -1; }
  .network-image { order: -1; }
  .quality-image { order: -1; }

  .products-grid,
  .why-grid,
  .values-grid,
  .team-grid,
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  .stats-grid,
  .serve-grid,
  .suppliers-grid,
  .hub-grid { grid-template-columns: repeat(2, 1fr); }

  .steps-flow { grid-template-columns: repeat(2, 1fr); }
  .step-connector { display: none; }

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

  .suppliers-image-row { grid-template-columns: 1fr 1fr; }
  .suppliers-image-row img:last-child { display: none; }
}

/* ===========================
   RESPONSIVE — MOBILE
   =========================== */
@media (max-width: 768px) {
  .section { padding: 70px 0; }

  /* Navbar */
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3,15,10,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-link, .nav-cta { font-size: 1.2rem; padding: 12px 28px; }

  /* Hero */
  .hero-content { padding-top: 80px; align-items: center; text-align: center; }
  .hero-title { font-size: 2.8rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; gap: 20px; padding: 20px; }
  .stat-divider { display: none; }

  /* Grids */
  .products-grid,
  .why-grid,
  .serve-grid,
  .stats-grid,
  .testimonials-grid,
  .steps-flow,
  .suppliers-grid,
  .values-grid,
  .team-grid,
  .hub-grid { grid-template-columns: 1fr; }

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

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

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

  .cta-actions { flex-direction: column; align-items: center; }

  .timeline::before { left: 10px; }
  .timeline-item, .timeline-item:nth-child(even) { flex-direction: column; gap: 16px; padding-left: 36px; }
  .timeline-item:nth-child(odd) .timeline-side:last-child,
  .timeline-item:nth-child(even) .timeline-side:first-child { display: none; }
  .timeline-dot { position: absolute; left: 1px; margin-top: 0; }
  .timeline-item { position: relative; }

  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.7rem; }
  .img-frame img { height: 260px; }
  .contact-form-wrapper { padding: 24px 18px; }
}
