/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700;800;900&family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* ===== CSS VARIABLES — FARMER / NATURAL THEME ===== */
:root {
  /* Marqet Remedies Magenta Pink Theme */
  --primary: #e01a4f;
  /* Magenta Pink */
  --primary-dark: #b00e3a;
  --primary-light: #ff5c8a;
  --primary-pale: #ffebee;

  /* Neutrals for white background & black text */
  --secondary: #2d3748;
  /* Dark Slate */
  --secondary-dark: #1a202c;
  --secondary-light: #4a5568;

  /* Accent - Hot pink/rose */
  --accent: #ff3b7e;
  /* Vibrant pink */
  --accent-dark: #c2185b;
  --accent-light: #ff85a7;

  /* Background - Pure white */
  --bg-body: #ffffff;
  /* Pure white background */
  --bg-section: #f8f9fa;
  /* Off-white for sections */
  --bg-card: #ffffff;
  --bg-card-hover: #f8f9fa;
  --bg-header: rgba(255, 255, 255, 0.97);
  --bg-dark-strip: #2d0914;
  /* Dark burgundy strip for footer/contrast */

  /* Text - Black and dark gray */
  --text-primary: #000000;
  /* Black */
  --text-secondary: #333333;
  /* Dark gray */
  --text-muted: #666666;
  /* Gray */
  --text-on-dark: #ffffff;

  /* Borders */
  --border: #e2e8f0;
  /* Neutral border */
  --border-hover: #e01a4f;
  --border-light: #edf2f7;

  /* Shadows & glows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 12px 40px rgba(224, 26, 79, 0.12);
  --shadow-warm: 0 8px 30px rgba(0, 0, 0, 0.05);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-med: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);

  /* Fonts */
  --font-heading: 'Sora', system-ui, -apple-system, sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

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

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

ul,
ol {
  list-style: none;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: var(--bg-section);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

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

/* Mobile touch target helper */
@media (max-width: 768px) {
  .container {
    padding: 0 18px;
  }
}

.section-pad {
  padding: 90px 0;
}

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

/* Badge pill */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: var(--primary-dark);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.75;
}

/* ===== SCROLL ANIMATIONS — DISABLED ===== */
.fade-up,
.fade-left,
.fade-right {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.delay-1 {
  transition-delay: 0s;
}

.delay-2 {
  transition-delay: 0s;
}

.delay-3 {
  transition-delay: 0s;
}

.delay-4 {
  transition-delay: 0s;
}

.delay-5 {
  transition-delay: 0s;
}

.delay-6 {
  transition-delay: 0s;
}

/* ===== GLOW LINE — repurposed as a warm divider ===== */
.glow-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-light), var(--primary-light), var(--accent-light), transparent);
  opacity: 0.6;
  margin: 0;
}

/* ===================================================================
   HEADER / NAVIGATION
   =================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition-med);
}

.header.scrolled {
  padding: 10px 0;
  border-bottom: 2px solid var(--border);
  box-shadow: 0 4px 24px rgba(46, 125, 50, 0.10);
}

.header.scrolled::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--bg-header);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 120px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
  overflow: visible;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.12));
}

.logo:hover .logo-icon {
  transform: scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-name {
  display: none;
}

.logo-tagline {
  font-size: 0.62rem;
  color: var(--text-muted);
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

/* Nav links */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-dark);
  background: #e8f5e9;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 55%;
}

.nav-cta {
  background: var(--primary) !important;
  color: #ffffff !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(46, 125, 50, 0.3) !important;
  margin-left: 8px;
  transition: all var(--transition-fast) !important;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(46, 125, 50, 0.35) !important;
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: transparent;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ===================================================================
   HERO SECTION
   =================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url('images/h.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Particle canvas stays but will draw in green */
#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.45;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(45, 9, 20, 0.92) 35%, rgba(45, 9, 20, 0.5) 100%);
  z-index: 1;
}

/* Hero Dark Mode styles for readability on background image */
.hero .hero-title {
  color: #ffffff;
}

.hero .hero-title .highlight {
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.hero .hero-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.hero .hero-badge-dot {
  background: var(--accent-light);
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
}

.hero .trust-item {
  color: rgba(255, 255, 255, 0.85);
}

.hero .trust-item-icon {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.hero .trust-divider {
  background: rgba(255, 255, 255, 0.15);
}

.hero .scroll-mouse {
  border: 2px solid rgba(255, 255, 255, 0.45);
}

.hero .scroll-wheel {
  background: var(--accent-light);
}

.hero .scroll-text {
  color: rgba(255, 255, 255, 0.6);
}

/* Transparent Header Styling for all pages before scroll */
.header:not(.scrolled) .logo-name {
  color: #ffffff;
}

.header:not(.scrolled) .logo-tagline {
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 769px) {
  .header:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.9);
  }

  .header:not(.scrolled) .nav-link:hover,
  .header:not(.scrolled) .nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
  }
}

.header:not(.scrolled) .hamburger span {
  background: #ffffff;
}

@media (max-width: 1024px) {
  .hero-bg-gradient {
    background: linear-gradient(to bottom, rgba(45, 9, 20, 0.94) 0%, rgba(45, 9, 20, 0.75) 100%);
  }
}

/* Decorative wavy bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--bg-body);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid #a5d6a7;
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-bottom: 26px;
  animation: slideInLeft 0.8s ease both;
  backdrop-filter: blur(6px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: 22px;
  animation: slideInLeft 0.8s 0.1s ease both;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 38px;
  animation: slideInLeft 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: slideInLeft 0.8s 0.3s ease both;
}

/* Buttons */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  font-size: 0.97rem;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.28);
  transition: all var(--transition-fast);
  text-decoration: none;
  font-family: var(--font-body);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(46, 125, 50, 0.35);
}

.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-primary .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  transform: scale(0);
  animation: ripple-anim 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-anim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--primary-dark);
  font-size: 0.97rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--primary-pale);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  font-family: var(--font-body);
}

.btn-secondary:hover {
  background: #e8f5e9;
  border-color: var(--primary-light);
  transform: translateY(-3px);
}

/* ===================================================================
   HERO VISUAL (the orb/visual area on right)
   =================================================================== */
.hero-visual {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  animation: floatHeroVis 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes floatHeroVis {

  0%,
  100% {
    transform: translateY(-50%);
  }

  50% {
    transform: translateY(-52.5%);
  }
}

.hero-orb-main {
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%,
      rgba(46, 125, 50, 0.18) 0%,
      rgba(249, 168, 37, 0.12) 50%,
      transparent 100%);
  border: 1.5px solid rgba(46, 125, 50, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(46, 125, 50, 0.12);
  animation: spin-slow linear infinite;
}

.hero-orb-ring:nth-child(1) {
  inset: 30px;
  animation-duration: 22s;
}

.hero-orb-ring:nth-child(2) {
  inset: 80px;
  animation-duration: 16s;
  animation-direction: reverse;
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero-center-icon {
  font-size: 5rem;
  filter: drop-shadow(0 6px 20px rgba(46, 125, 50, 0.3));
  animation: pulse-icon 3s ease-in-out infinite;
}

@keyframes pulse-icon {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

.floating-pill {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px solid #a5d6a7;
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(8px);
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.12);
}

.floating-pill-1 {
  top: 55px;
  left: -10px;
  animation: float-pill-1 4s ease-in-out infinite;
}

.floating-pill-2 {
  bottom: 75px;
  right: -5px;
  animation: float-pill-2 5s ease-in-out infinite;
}

@keyframes float-pill-1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@keyframes float-pill-2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(7px);
  }
}

.pill-icon {
  font-size: 1.2rem;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 2s infinite;
}

/* Trust row */
.trust-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 48px;
  animation: slideInLeft 0.8s 0.5s ease both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.trust-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.trust-divider {
  width: 1px;
  height: 22px;
  background: var(--border);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  z-index: 4;
  animation: fadeInUp 1s 1s both;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(46, 125, 50, 0.35);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px;
  height: 7px;
  background: var(--primary);
  border-radius: 2px;
  animation: scroll-wheel 2s ease infinite;
}

@keyframes scroll-wheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(10px);
    opacity: 0;
  }
}

.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===================================================================
   STATS SECTION
   =================================================================== */
.stats-section {
  padding: 70px 0;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232e7d32' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 44px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-med);
}

.stat-card:hover::after {
  transform: scaleX(1);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-pale);
}

.stat-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===================================================================
   PAGE HERO (inner pages)
   =================================================================== */
.page-hero {
  padding: 150px 0 90px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-about {
  background-image: url('images/uploaded_farm_4.jpg');
}

.hero-products {
  background-image: url('images/uploaded_silo_1.jpg');
}

.hero-contact {
  background-image: url('images/uploaded_corridor_1.jpg');
}

.hero-gallery {
  background-image: url('images/uploaded_farm_3.jpg');
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(45, 9, 20, 0.82) 0%, rgba(45, 9, 20, 0.9) 100%);
  z-index: 0;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bg-body);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero .badge {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  font-weight: 700 !important;
  opacity: 1 !important;
  letter-spacing: 2.2px !important;
}

.page-hero .badge::before {
  background: #ffffff !important;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: #ffffff;
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
}

.page-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ===================================================================
   FEATURES STRIP
   =================================================================== */
.features-strip {
  padding: 70px 0;
  background: white;
  border-top: 1.5px solid var(--border-light);
  border-bottom: 1.5px solid var(--border-light);
}

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

.feature-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-md);
  background: var(--bg-body);
  border: 1.5px solid transparent;
  transition: all var(--transition-med);
}

.feature-item:hover {
  background: #e8f5e9;
  border-color: #a5d6a7;
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.feature-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: all var(--transition-fast);
}

.feature-icon-wrap img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.feature-item:hover .feature-icon-wrap {
  transform: scale(1.08);
}

.f-blue {
  background: #e3f2fd;
  border: 1.5px solid #90caf9;
}

.f-green {
  background: #e8f5e9;
  border: 1.5px solid #a5d6a7;
}

.f-cyan {
  background: #e0f7fa;
  border: 1.5px solid #80deea;
}

.f-warm {
  background: #fff8e1;
  border: 1.5px solid #ffe082;
}

.feature-title {
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.feature-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===================================================================
   PREVIEW SECTION (Home)
   =================================================================== */
.preview-section {
  padding: 90px 0;
  background: var(--bg-section);
}

.preview-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 48px;
  gap: 20px;
}

.preview-header>div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.preview-header .badge {
  margin-bottom: 12px;
}

.preview-header .section-title {
  margin-bottom: 12px;
  line-height: 1.12;
  font-size: clamp(2rem, 5vw, 2.8rem);
  max-width: 680px;
}

.preview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.preview-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}

.preview-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-med);
}

.preview-card:hover::after {
  transform: scaleX(1);
}

.preview-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: #a5d6a7;
}

.preview-card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.preview-card-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 9px;
}

.preview-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 18px;
}

.preview-card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.preview-card:hover .preview-card-link {
  gap: 12px;
}

/* Product image wrapper at the top of each card */
.preview-image-wrap {
  width: 100%;
  height: 200px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  padding: 8px;
}

/* Responsive product image inside card */
.preview-card-img {
  display: block;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform var(--transition-med);
}

/* Hover micro-animation to scale image slightly */
.preview-card:hover .preview-card-img {
  transform: scale(1.05);
}

@media (max-width: 480px) {
  .preview-image-wrap {
    height: 180px;
    margin-bottom: 18px;
  }
}

/* ===================================================================
   TIMELINE
   =================================================================== */
.timeline-section {
  padding: 90px 0;
  background: white;
}

.timeline-heading {
  text-align: center;
  margin-bottom: 70px;
}

.timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--primary-light), var(--accent), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  gap: 48px;
  margin-bottom: 56px;
  align-items: flex-start;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  text-align: left;
}

.timeline-content {
  flex: 1;
  padding: 28px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-med);
}

.timeline-content:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}

.timeline-title {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.timeline-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--primary-pale);
  top: 32px;
  z-index: 2;
  transition: all var(--transition-med);
}

.timeline-item:hover .timeline-dot {
  transform: translateX(-50%) scale(1.4);
}

.timeline-spacer {
  flex: 1;
}

/* Computer View Timeline Override (min-width: 1025px) */
@media (min-width: 1025px) {
  .timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .timeline::before {
    display: none !important;
  }

  .timeline-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    gap: 0;
    align-items: stretch;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    flex-direction: column;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    text-align: left;
  }

  .timeline-dot {
    display: none !important;
  }

  .timeline-spacer {
    display: none !important;
  }

  .timeline-item:nth-child(3),
  .timeline-item:nth-child(6) {
    grid-column: 1 / span 2;
    justify-self: center;
    width: 100%;
    max-width: calc(50% - 15px);
  }
}

/* ===================================================================
   FUTURE SECTION
   =================================================================== */
.future-section {
  padding: 90px 0;
  background: var(--bg-section);
}

.future-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px;
  box-shadow: var(--shadow-warm);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-med);
}

.future-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-hover);
}

.future-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(249, 168, 37, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.future-year-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff8e1;
  border: 1.5px solid #ffe082;
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.future-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 18px;
  color: var(--text-primary);
}

.future-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.82;
  max-width: 680px;
}

.future-highlight {
  color: var(--primary-dark);
  font-weight: 700;
}

.directors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.director-card {
  background: var(--bg-section);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--transition-fast);
}

.director-card:hover {
  border-color: var(--primary-light);
  background: #e8f5e9;
  transform: translateY(-3px);
}

.director-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(46, 125, 50, 0.25);
}

.director-name {
  font-weight: 800;
  font-size: 0.97rem;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.director-title {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
}

/* ===================================================================
   MISSION CARDS (About)
   =================================================================== */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.mission-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 34px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-med);
}

.mission-card:hover::before {
  transform: scaleX(1);
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: #a5d6a7;
}

.mission-card-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
}

.mission-card-title {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.mission-card-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===================================================================
   FOUNDER SECTION
   =================================================================== */
.founder-section {
  padding: 90px 0;
  background: white;
}

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

.founder-portrait-bg {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.12), rgba(249, 168, 37, 0.08), transparent);
  border: 2px solid rgba(46, 125, 50, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}

.founder-avatar-large {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), #81c784);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 50px rgba(46, 125, 50, 0.3);
  border: 4px solid rgba(46, 125, 50, 0.2);
  overflow: hidden;
  position: relative;
}

.founder-avatar-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-badge-float {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid #a5d6a7;
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: var(--shadow-card);
}

.founder-badge-float-1 {
  top: 18px;
  right: 0;
  text-align: center;
  animation: float-pill-1 4s ease-in-out infinite;
}

.founder-badge-float-2 {
  bottom: 28px;
  left: 0;
  animation: float-pill-2 5s ease-in-out infinite;
}

.fbf-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fbf-text {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.founder-name {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.founder-title-tag {
  font-size: 0.84rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.founder-bio {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 28px;
}

.founder-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.founder-stat {
  text-align: center;
}

.founder-stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.founder-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===================================================================
   CONTACT
   =================================================================== */
.contact-section {
  padding: 90px 0;
  background: var(--bg-section);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.contact-info-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: #e8f5e9;
  border: 1.5px solid #a5d6a7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.contact-detail:hover .contact-icon {
  background: var(--primary);
  border-color: var(--primary);
  font-size: 1.2rem;
  transform: scale(1.08);
}

.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.contact-detail-value {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

/* Form */
.contact-form {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 7px;
  letter-spacing: 0.3px;
}

.form-input {
  width: 100%;
  background: var(--bg-body);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.93rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus {
  border-color: var(--primary-light);
  background: white;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.12);
}

.form-input::placeholder {
  color: var(--text-muted);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-body);
}

.form-submit {
  width: 100%;
  padding: 15px;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.28);
  transition: all var(--transition-fast);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(46, 125, 50, 0.35);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
  background: var(--bg-dark-strip);
  padding: 56px 0 28px;
  color: var(--text-on-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 44px;
  margin-bottom: 44px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 14px 0 20px;
  max-width: 300px;
}

.footer-motto {
  font-style: italic;
  color: var(--accent-light) !important;
  font-weight: 600;
  border-left: 3px solid var(--accent);
  padding-left: 14px;
  font-size: 0.88rem !important;
}

/* Footer logo override */
.footer .logo-name {
  display: block !important;
  color: white !important;
  -webkit-text-fill-color: white !important;
}

.footer .logo-tagline {
  display: block !important;
  color: rgba(255, 255, 255, 0.5);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-link i {
  color: #ffffff !important;
  font-size: 1.1rem;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  transform: translateY(-3px);
}

.social-link:hover i {
  color: #ffffff !important;
}

.footer-col-title {
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: all var(--transition-fast);
}

.footer-link:hover {
  color: var(--accent-light);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ===================================================================
   KEYFRAMES
   =================================================================== */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-6px); }
  80% { transform: translateX(6px); }
}

@keyframes pop-in {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ===================================================================
   RESPONSIVE — COMPREHENSIVE MOBILE-FIRST
   =================================================================== */

/* ---- TABLET (≤1024px) ---- */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .preview-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

  .hero-visual {
    display: none;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .founder-portrait-bg {
    width: 280px;
    height: 280px;
  }

  .founder-avatar-large {
    width: 190px;
    height: 190px;
  }

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

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

  .timeline::before {
    left: 20px;
  }

  .timeline-dot {
    left: 20px;
    top: 20px;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    flex-direction: column;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    margin-left: 56px;
  }

  .timeline-spacer {
    display: none;
  }

  /* About preview: stack on tablet */
  .about-preview-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .about-preview-content {
    align-items: center;
    order: 2;
    margin-top: 24px;
  }

  .about-preview-visual {
    order: 1;
  }

  .about-preview-badge-card {
    max-width: 560px;
    margin: 0 auto;
    padding: 56px 48px;
  }

  .about-preview-deco-circle {
    width: 640px;
    height: 640px;
  }

  .about-badge-founder-avatar {
    width: 200px;
    height: 200px;
  }

  .about-preview-bullets {
    text-align: left;
    max-width: 560px;
  }
}

/* ---- MOBILE (≤768px) ---- */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .section-pad {
    padding: 56px 0;
  }

  /* Header */
  .header {
    padding: 14px 0;
  }

  .header.scrolled {
    padding: 10px 0;
  }

  .logo-tagline {
    font-size: 0.55rem;
  }

  .logo-icon {
    width: 95px;
    height: 38px;
  }

  .logo {
    gap: 9px;
  }

  /* Mobile sidebar nav drawer */
  .nav {
    display: flex;
    /* Always layout as flex, but hide it off-screen */
    position: fixed;
    top: 0;
    right: -320px;
    height: 100vh;
    height: 100dvh;
    width: 290px;
    background: #ffffff;
    box-shadow: -8px 0 32px rgba(26, 46, 15, 0.12);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 100px 24px 40px;
    gap: 12px;
    z-index: 999;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav.open {
    right: 0;
  }

  /* Backdrop overlay */
  .nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 46, 15, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  body.nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    width: 100%;
    text-align: left;
    padding: 14px 18px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    color: var(--text-secondary) !important;
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent !important;
    transition: all var(--transition-fast);
  }

  .nav-link::after {
    display: none !important;
  }

  /* Icons for sidebar navigation links */
  .nav-link#nav-home::before {
    content: '🏠';
    font-size: 1.1rem;
  }

  .nav-link#nav-about::before {
    content: '🏢';
    font-size: 1.1rem;
  }

  .nav-link#nav-products::before {
    content: '📦';
    font-size: 1.1rem;
  }

  .nav-link#nav-contact::before {
    content: '📞';
    font-size: 1.1rem;
  }

  .nav-link::before {
    display: none !important;
    content: none !important;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--primary-dark) !important;
    background: #e8f5e9 !important;
  }

  .nav-cta {
    margin-left: 0 !important;
    text-align: left;
    width: 100%;
    padding: 14px 18px !important;
    background: var(--primary) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2) !important;
  }

  .nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: none !important;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
    position: relative;
  }

  /* Hero section */
  .hero {
    min-height: 100svh;
    padding-top: 80px;
    align-items: flex-start;
  }

  .hero-bg-gradient {
    background: linear-gradient(to bottom, rgba(45, 9, 20, 0.96) 0%, rgba(45, 9, 20, 0.78) 100%);
  }

  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 40px;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 7px 14px;
  }

  .hero-subtitle {
    font-size: 0.97rem;
    margin-bottom: 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
    width: 100%;
    padding: 15px 20px;
    font-size: 0.95rem;
  }

  .trust-row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
    justify-content: flex-start;
  }

  .trust-item {
    font-size: 0.78rem;
    gap: 7px;
  }

  .trust-divider {
    display: none;
  }

  .hero::after {
    height: 50px;
  }

  .hero-scroll-indicator {
    bottom: 80px;
  }

  /* Stats */
  .stats-section {
    padding: 48px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-card {
    padding: 32px 24px;
  }

  /* About Preview — Our Story section (ENLARGED) */
  .about-preview-section {
    padding: 64px 0 80px;
  }

  .about-preview-grid {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }

  .about-preview-content {
    order: 2;
    align-items: center;
    text-align: center;
    margin-top: 24px;
  }

  .about-preview-visual {
    order: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 28px;
  }

  .about-preview-badge-card {
    max-width: calc(100vw - 80px);
    width: 100%;
    padding: 44px 32px 52px;
    border-radius: 24px;
    position: relative;
    z-index: 2;
    box-shadow: 0 16px 60px rgba(46, 125, 50, 0.18), 0 4px 20px rgba(46, 125, 50, 0.1);
    border: 2px solid rgba(165, 214, 167, 0.6);
  }

  .about-badge-year {
    font-size: 3.5rem;
    margin-bottom: 6px;
  }

  .about-badge-label {
    margin-bottom: 20px;
  }

  .about-badge-founder-avatar {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-width: 6px;
    box-shadow: 0 10px 40px rgba(46, 125, 50, 0.2);
  }

  .about-badge-founder-name {
    font-size: 1.25rem;
    margin-bottom: 5px;
  }

  .about-badge-founder-title {
    font-size: 0.85rem;
  }

  .about-preview-deco-circle {
    width: calc(100vw - 40px);
    height: calc(100vw - 40px);
    max-width: 420px;
    max-height: 420px;
  }

  .about-preview-bullets {
    text-align: left;
    width: 100%;
    margin: 20px 0 32px;
    gap: 20px;
  }

  .about-bullet-item {
    align-items: flex-start;
  }

  .about-preview-text {
    font-size: 0.97rem;
  }

  /* Features strip */
  .features-strip {
    padding: 52px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-item {
    display: block;
    text-align: left;
    padding: 24px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
  }

  .feature-icon-wrap {
    display: none;
  }

  .feature-title {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .feature-text {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  /* Products preview */
  .preview-section {
    padding: 60px 0;
  }

  .preview-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .preview-header {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    text-align: center;
  }

  .preview-header>div {
    align-items: center;
  }

  .preview-header .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .preview-card {
    padding: 24px 20px;
  }

  /* Section text */
  .section-title {
    font-size: clamp(1.55rem, 6vw, 2.4rem);
    line-height: 1.2;
  }

  .badge {
    font-size: 0.68rem;
    padding: 5px 14px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer {
    padding: 44px 0 24px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  /* Page hero (inner pages) */
  .page-hero {
    padding: 120px 0 70px;
  }

  /* Contact */
  .contact-form {
    padding: 24px 20px;
  }

  /* Future / Directors */
  .future-card {
    padding: 28px 22px;
  }

  .directors-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Mission */
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Founder */
  .founder-section {
    padding: 60px 0;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-portrait-bg {
    width: 240px;
    height: 240px;
  }

  .founder-avatar-large {
    width: 160px;
    height: 160px;
  }

  .founder-badge-float {
    display: none;
  }

  .founder-stats {
    justify-content: center;
    gap: 20px;
  }
}

/* ---- SMALL MOBILE (≤480px) ---- */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 16px;
  }

  /* Hero */
  .hero {
    min-height: 100svh;
  }

  .hero-badge {
    font-size: 0.65rem;
    letter-spacing: 0.8px;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 0.9rem;
    padding: 14px 18px;
  }

  /* Stats single column compact */
  .stat-card {
    padding: 28px 20px;
  }

  .stat-icon {
    font-size: 2rem;
  }

  /* Our Story card even more compact */
  .about-preview-badge-card {
    padding: 36px 22px 44px;
  }

  .about-badge-year {
    font-size: 3rem;
  }

  .about-badge-founder-avatar {
    width: 140px;
    height: 140px;
  }

  .about-preview-visual {
    min-height: 340px;
  }

  /* Features: single column */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-item {
    display: block;
    text-align: left;
    padding: 24px 22px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
  }

  .feature-icon-wrap {
    display: none;
  }

  .feature-title {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .feature-text {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  /* Products */
  .preview-card-name {
    font-size: 1.1rem;
  }

  /* Footer */
  .social-links {
    flex-wrap: wrap;
  }

  /* Timeline */
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 40px;
  }

  /* Contact form */
  .contact-form {
    padding: 20px 16px;
  }

  /* Founder */
  .founder-portrait-bg {
    width: 210px;
    height: 210px;
  }

  .founder-avatar-large {
    width: 140px;
    height: 140px;
  }
}

/* ===== TABLE SCROLLBAR HIDING ONLY ===== */
.pricelist-table-wrap::-webkit-scrollbar {
  display: none !important;
}

.pricelist-table-wrap {
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}

/* ===== ABOUT PREVIEW IMAGE FRAME ===== */
.about-image-frame {
  width: 100%;
  max-width: 680px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 40px rgba(46, 125, 50, 0.12), var(--shadow-hover);
  position: relative;
  z-index: 2;
  background: var(--bg-card);
  pointer-events: auto;
  margin: 0 auto;
}

.about-preview-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform var(--transition-med);
  display: block;
}

.about-image-frame:hover .about-preview-img {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .about-image-frame {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
}

/* ===== FOUNDER IMAGE BADGE ===== */
.founder-image-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  padding: 14px 20px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  pointer-events: none;
  line-height: 1.25;
}

.founder-image-badge-role {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  margin-bottom: 4px;
}

.founder-image-badge-name {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 2.2vw, 1.1rem);
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .founder-image-badge {
    bottom: 10px;
    right: 10px;
    padding: 12px 16px;
    border-radius: 18px;
  }

  .founder-image-badge-role {
    font-size: 0.55rem;
    letter-spacing: 0.12em;
  }
}

@media (max-width: 480px) {
  .founder-image-badge {
    bottom: 8px;
    right: 8px;
    padding: 10px 14px;
    border-radius: 18px;
  }

  .founder-image-badge-role {
    font-size: 0.5rem;
  }

  .founder-image-badge-name {
    font-size: 0.82rem;
  }
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  background: var(--bg-card);
  position: relative;
  border-top: 1.5px solid var(--border-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.gallery-page-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {

  .gallery-grid,
  .gallery-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-page-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-page-grid .gallery-item {
    height: auto;
    aspect-ratio: 16 / 9;
    background: var(--bg-section);
  }

  .gallery-item {
    height: 280px;
  }
}

@media (max-width: 560px) {

  .gallery-grid,
  .gallery-page-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  position: relative;
  height: 340px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-med);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-med);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 46, 15, 0.9) 0%, rgba(26, 46, 15, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.gallery-desc {
  color: var(--accent-light);
  font-size: 0.78rem;
  font-weight: 600;
}

.gallery-featured {
  margin-top: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-med);
  background: var(--bg-section);
}

.gallery-featured:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light);
}

.gallery-featured-image {
  width: 100%;
  line-height: 0;
  background: var(--bg-section);
}

.gallery-featured-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.gallery-featured-caption {
  padding: 28px 32px;
  background: var(--bg-card);
  border-top: 1.5px solid var(--border-light);
}

.gallery-featured-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.gallery-featured-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
  max-width: 720px;
}

/* ===================================================================
   ZOETIS-INSPIRED PREMIUM HERO SLIDER SECTION
   =================================================================== */
.hero-slider-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 10;
  background: #000000;
}

.hero-slides-container {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  padding-top: 100px;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 22%;
  background-repeat: no-repeat;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .hero-slide-bg {
    background-position: center 28%;
  }

  .slide-bg-2 {
    background-position: 0% 28% !important;
  }
}

.hero-slide.active .hero-slide-bg {
  animation: kenBurnsZoom 8s ease-out forwards;
}

@keyframes kenBurnsZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.15);
  }
}

.hero-slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.05) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-slider-content-container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-slider-content {
  max-width: 680px;
  text-align: left;
  color: #ffffff;
}

.hero-label-wrap {
  margin-bottom: 24px;
}

.hero-label {
  font-size: 0.85rem;
  font-weight: 900 !important;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff !important;
  background: var(--primary) !important;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--primary-light) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: inline-block;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900 !important;
  line-height: 1.15;
  color: #ffffff !important;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.65) !important;
}

.hero-paragraph {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: #ffffff !important;
  margin-bottom: 32px;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55) !important;
}

.hero-slider-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: #e01a4f !important;
  color: #ffffff !important;
  font-size: 0.95rem;
  font-weight: 800 !important;
  padding: 16px 36px;
  border-radius: 50px;
  transition: all var(--transition-fast);
  border: none !important;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 6px 22px rgba(224, 26, 79, 0.45) !important;
  text-align: center;
}

.btn-hero-primary:hover {
  background: #f91b5b !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(224, 26, 79, 0.6) !important;
}

.btn-hero-secondary {
  background: #2e7d32 !important;
  color: #ffffff !important;
  font-size: 0.95rem;
  font-weight: 800 !important;
  padding: 16px 36px;
  border-radius: 50px;
  transition: all var(--transition-fast);
  border: none !important;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 6px 22px rgba(46, 125, 50, 0.45) !important;
}

.btn-hero-secondary:hover {
  background: #388e3c !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(46, 125, 50, 0.6) !important;
}

.hero-slider-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero-slider-indicators .indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-slider-indicators .indicator.active {
  width: 28px;
  border-radius: 50px;
  background: var(--primary-light);
}

.hero-slider-arrows {
  position: absolute;
  bottom: 30px;
  right: 40px;
  display: flex;
  gap: 12px;
  z-index: 5;
}

.hero-slider-arrows .arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.35);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero-slider-arrows .arrow-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.08);
}

/* ===================================================================
   DESKTOP CENTERED NAVBAR LAYOUT
   =================================================================== */
@media (min-width: 769px) {
  .nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
  }

  .desktop-only-cta {
    display: block;
  }

  .mobile-only {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .desktop-only-cta {
    display: none !important;
  }

  .mobile-only {
    display: flex !important;
  }

  .hero-slider-section {
    height: 100vh;
  }

  .hero-slider-content {
    padding: 0 10px;
  }

  .hero-heading {
    font-size: clamp(2rem, 6vw, 2.8rem) !important;
    margin-bottom: 18px;
  }

  .hero-paragraph {
    font-size: 1.02rem !important;
    margin-bottom: 30px;
  }

  .hero-slider-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    padding: 14px 28px;
  }

  .hero-slider-arrows {
    display: none !important;
  }
}

/* ===================================================================
   HERO SLIDER INTEGRATED FEATURE HIGHLIGHTS
   =================================================================== */
.hero-feature-highlight {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
  background: rgba(18, 18, 18, 0.95) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  width: fit-content;
  max-width: 480px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4) !important;
}

.hero-feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(224, 26, 79, 0.25) !important;
  border: 2px solid rgba(224, 26, 79, 0.55) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(224, 26, 79, 0.25);
}

.hero-feature-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-feature-title {
  font-size: 1.05rem;
  font-weight: 900 !important;
  color: #ffffff !important;
  letter-spacing: 0.3px;
}

.hero-feature-desc {
  font-size: 0.88rem;
  color: #ffffff !important;
  line-height: 1.4;
}

@media (max-width: 576px) {
  .hero-feature-highlight {
    max-width: 100%;
    margin-top: 36px;
    padding: 14px 20px;
  }
}

/* ===== CONSISTENT TYPOGRAPHY SYSTEM OVERRIDES ===== */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.preview-card-name,
.pcard-name,
.mission-card-title,
.about-bullet-title,
.contact-info-title,
.form-submit,
.btn-primary,
.btn-secondary,
.btn-hero-primary,
.btn-hero-secondary,
.details-cta,
.pcard-expand-btn,
.pcard-cta,
.details-name,
.action-text-title,
.hero-label,
.logo-name,
.footer-col-title,
.hero-feature-title,
.details-category,
.pcard-category,
.table-badge,
.badge {
  font-family: var(--font-heading) !important;
  font-weight: 800 !important;
}

body,
p,
span,
a,
li,
input,
textarea,
label,
.nav-link,
.about-preview-text,
.feature-text,
.preview-card-desc,
.pcard-desc,
.mission-card-text,
.about-bullet-desc,
.contact-detail-value,
.contact-detail-label,
.form-label,
.form-input,
.footer-link,
.footer-bottom,
.pack-sizes,
.details-purpose,
.details-purpose-desc,
.info-row-text,
.action-text-desc,
.hero-paragraph,
.hero-feature-desc {}

/* =============================================
   11. PREMIUM SPLASH SCREEN LOADING
   ============================================= */
.splash-screen {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  visibility: visible;
}

.splash-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.splash-logo-wrap {
  text-align: center;
  transform: scale(0.95);
  opacity: 0;
  animation: splashFadeInScale 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.splash-logo {
  max-width: 360px;
  width: 85%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@keyframes splashFadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    transform: scale(1.05);
  }
}

body.overflow-hidden {
  overflow: hidden !important;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff !important;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
  background-color: #128c7e;
}

.whatsapp-float i {
  margin: 0;
  padding: 0;
  line-height: 1;
}

/* Tooltip text for WhatsApp button */
.whatsapp-float::before {
  content: 'Chat with Us';
  position: absolute;
  right: 75px;
  background-color: #333;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-family: var(--font-body);
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.whatsapp-float:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive adjustment for small screens */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .whatsapp-float::before {
    display: none;
    /* Hide tooltip on mobile to prevent clutter */
  }
}
}

.whatsapp-float::before {
  display: none;
  /* Hide tooltip on mobile to prevent clutter */
}
}