/* ============================================================
   VEMORA ANIMAL NUTRITION — "The Organic Edge" Design System
   Pure CSS · No Build Tools Required
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;900&display=swap');

/* ── CSS Custom Properties (Design Tokens) ────────────────── */
:root {
  /* Brand Colors */
  --blue-900: #0a1f3c;
  --blue-800: #113260;
  --blue-700: #16407b;
  --blue-600: #1d529f;
  --blue-500: #2b6dbf;
  --blue-400: #4288dc;
  --blue-300: #7eb3ef;
  --blue-100: #e0f0ff;

  --green-600: #0074aa;
  --green-500: #0095da;
  --green-400: #3db8f5;
  --green-100: #e2f5ff;

  --cream: #F8F6F0;
  --warm-100: #FEF9F0;
  --warm-200: #FDF3DC;

  /* Neutrals */
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-500: #6B7280;
  --gray-300: #D1D5DB;
  --gray-100: #F3F4F6;
  --white: #FFFFFF;

  /* Functional */
  --radius-sm: 10px;
  --radius-md: 10px;
  --radius-lg: 10px;
  --radius-xl: 10px;
  --radius-full: 10px;

  --shadow-sm: 0 2px 12px rgba(10, 22, 40, 0.07);
  --shadow-md: 0 8px 32px rgba(10, 22, 40, 0.12);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.18);
  --shadow-glow: 0 0 40px rgba(30, 77, 140, 0.25);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography */
  --font-sans: 'Outfit', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--gray-700);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ── Utility Classes ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 100px 0;
}

.section-pad-sm {
  padding: 60px 0;
}

.text-center {
  text-align: center;
}

.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.gap-4 {
  gap: 1rem;
}

/* ── Typography ───────────────────────────────────────────── */
.heading-display {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--blue-900);
  line-height: 1.1;
}

.heading-section {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--blue-900);
  line-height: 1.2;
}

.heading-card {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--blue-900);
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-500);
  display: block;
  margin-bottom: 12px;
}

.body-text {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.75;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(30, 77, 140, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(30, 77, 140, 0.45);
}

.btn-green {
  background: linear-gradient(135deg, var(--green-500), var(--green-400));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(34, 168, 99, 0.35);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(34, 168, 99, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--blue-500);
  border: 2px solid var(--blue-300);
}

.btn-outline:hover {
  background: var(--blue-500);
  color: var(--white);
  border-color: var(--blue-500);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* ── Navigation ───────────────────────────────────────────── */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: transparent;
  transition: var(--transition);
}

.navbar.transparent {
  background: transparent;
}

.navbar.scrolled {
  background: transparent !important;
  box-shadow: none;
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: none;
  padding: 10px 0;
  z-index: 1000;
  border: 1px solid var(--gray-300);
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: var(--gray-700);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.dropdown-menu li a:hover {
  background: var(--blue-100);
  color: var(--blue-600);
  padding-left: 25px;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
  animation: fadeInDown 0.3s ease forwards;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--green-500), var(--blue-400));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.nav-logo-img {
  height: 60px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.btn-nav-cta {
  padding: 8px 18px !important;
  font-size: 0.85rem !important;
  border-radius: 8px !important;
  white-space: nowrap;
}

.nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 4px;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-400);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--white);
}

.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 12px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 50%, var(--blue-800) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
}

.hero-blob-1 {
  width: 600px;
  height: 600px;
  background: var(--green-500);
  top: -150px;
  right: -100px;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: var(--blue-300);
  bottom: -100px;
  left: -80px;
}

.hero-blob-3 {
  width: 250px;
  height: 250px;
  background: var(--green-400);
  top: 40%;
  left: 35%;
}

/* Animated grid pattern overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 160px 24px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}

.hero-content {
  max-width: 800px;
  margin: 0;
  text-align: left;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
  animation: fadeInUp 0.9s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  justify-content: flex-start;
  animation: fadeInUp 0.9s ease 0.4s both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  color: var(--green-400);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease forwards;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green-400);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s ease 0.1s both;
}

.hero-title .accent {
  color: var(--green-400);
  display: block;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 40px;
  line-height: 1.75;
  animation: fadeInUp 0.9s ease 0.2s both;
}



.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-num span {
  color: var(--green-400);
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* ── Hero Photo Cluster ───────────────────────────────────── */
.hero-photo-cluster {
  position: relative;
  width: 550px; /* Increased from 480px */
  height: 550px;
  flex-shrink: 0;
}

/* Ambient glow blob behind cluster */
.cluster-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px; /* Increased from 320px */
  height: 420px;
  background: var(--green-400);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  opacity: 0.15;
  filter: blur(50px);
  z-index: 0;
  animation: clusterGlowPulse 6s ease-in-out infinite;
}

@keyframes clusterGlowPulse {
  0%, 100% { opacity: 0.15; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 0.25; transform: translate(-50%, -50%) scale(1.08); }
}

/* MAIN photo — center */
.cluster-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px; /* Increased from 320px */
  height: 380px;
  z-index: 5;
  animation: clusterMainFloat 5s ease-in-out infinite;
}

.cluster-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 48% 52% 68% 32% / 42% 28% 72% 58%;
  border: 14px solid rgba(255, 255, 255, 1); /* Thicker border for scale */
  box-shadow: 0 50px 120px rgba(10, 22, 40, 0.45);
  background: rgba(255,255,255,1);
}

@keyframes clusterMainFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
  50%       { transform: translate(-50%, -50%) translateY(-18px); }
}

/* Satellite photos — shared base */
.cluster-sat {
  position: absolute;
}

.cluster-sat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 15px 45px rgba(10, 22, 40, 0.25);
}

/* SAT 1 — top-left (hen1) — BEHIND */
.cluster-sat-1 {
  top: 5px;
  left: 15px;
  width: 110px; /* Decreased from 140px */
  height: 100px;
  z-index: 2;
  animation: sat1Float 4s ease-in-out infinite;
}
.cluster-sat-1 img {
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  filter: brightness(0.9);
}
@keyframes sat1Float {
  0%, 100% { transform: translateY(0px) rotate(-3deg); }
  50%       { transform: translateY(-10px) rotate(0deg); }
}

/* SAT 2 — top-right (hen2) — FRONT */
.cluster-sat-2 {
  top: -15px;
  right: 10px;
  width: 160px;
  height: 150px;
  z-index: 8;
  animation: sat2Float 4.8s ease-in-out 0.5s infinite;
}
.cluster-sat-2 img {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  border-width: 6px;
}
@keyframes sat2Float {
  0%, 100% { transform: translateY(0px) rotate(3deg); }
  50%       { transform: translateY(-20px) rotate(-2deg); }
}

/* SAT 3 — bottom-left (camel) — FRONT */
.cluster-sat-3 {
  bottom: -5px;
  left: -5px;
  width: 210px; /* Increased from 180px */
  height: 190px;
  z-index: 9;
  animation: sat3Float 5.5s ease-in-out 1s infinite;
}
.cluster-sat-3 img {
  border-radius: 52% 48% 37% 63% / 45% 55% 45% 55%;
  border-width: 8px; /* Thicker border for large satellite */
}
@keyframes sat3Float {
  0%, 100% { transform: translateY(0px) rotate(2deg); }
  50%       { transform: translateY(-16px) rotate(-3deg); }
}

/* SAT 4 — bottom-right (lamb & sheep) — BEHIND */
.cluster-sat-4 {
  bottom: 25px;
  right: 15px;
  width: 150px;
  height: 130px;
  z-index: 3;
  animation: sat4Float 4.2s ease-in-out 0.2s infinite;
}
.cluster-sat-4 img {
  border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
  filter: brightness(0.9);
}
@keyframes sat4Float {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50%       { transform: translateY(-18px) rotate(3deg); }
}

/* Responsive: shrink cluster on smaller screens */
@media (max-width: 900px) {
  .hero-photo-cluster {
    width: 340px;
    height: 340px;
  }
  .cluster-main  { width: 165px; height: 165px; }
  .cluster-sat-1 { width: 92px;  height: 85px;  top: 14px; left: 14px; }
  .cluster-sat-2 { width: 82px;  height: 82px;  top: 18px; right: 14px; }
  .cluster-sat-3 { width: 90px;  height: 82px;  bottom: 18px; left: 12px; }
  .cluster-sat-4 { width: 100px; height: 86px;  bottom: 10px; right: 10px; }
}

@media (max-width: 640px) {
  .hero-photo-cluster { display: none; }
}



.hero-floating-tags {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-tag {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

.hero-tag.tag-1 {
  top: 10%;
  left: -30px;
  animation: float 3s ease-in-out infinite;
}

.hero-tag.tag-2 {
  top: 30%;
  right: -30px;
  animation: float 3.5s ease-in-out 0.5s infinite;
}

.hero-tag.tag-3 {
  bottom: 20%;
  left: -20px;
  animation: float 4s ease-in-out 1s infinite;
}

.hero-tag .tag-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-400);
  margin-right: 6px;
}

/* ── Categories Section ───────────────────────────────────── */
.categories-section {
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-card {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  border-radius: 30px;
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  color: var(--white);
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-500), var(--green-500));
  opacity: 0;
  transition: var(--transition);
  border-radius: inherit;
}

.category-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-400);
}

.category-card:hover::before {
  opacity: 0.06;
}

.category-card:hover .cat-icon {
  transform: scale(1.12) rotate(-5deg);
}

.cat-icon-wrap {
  width: auto;
  height: auto;
  background: transparent !important;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  transition: var(--transition);
}

.category-card:hover .cat-icon-wrap {
  transform: scale(1.1);
}

.category-card:hover .cat-emoji {
  filter: drop-shadow(0 0 15px rgba(255,255,255,0.4));
}

.cat-emoji {
  font-size: 8rem; /* Significant increase as requested */
  line-height: 1;
  transition: var(--transition);
}

.cat-name {
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.cat-count {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* ── Products Grid ────────────────────────────────────────── */
.products-section {
  background: var(--cream);
}

.products-filter {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 12px 24px;
  border-radius: 4px 4px 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  background: transparent;
  color: var(--gray-500);
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.filter-btn:hover {
  color: var(--blue-500);
}

.filter-btn.active {
  color: var(--blue-600);
  border-bottom-color: var(--blue-600);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  position: relative;
  overflow: hidden;
  height: 320px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card-img {
  height: 100%;
  width: 100%;
}

.product-card-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card-body {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.product-card:hover .product-card-body {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.product-card:hover .product-card-img img {
  transform: scale(1.1);
}

.product-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--blue-300);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--green-500);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

.product-card-cat {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.product-card-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: white !important;
  margin-bottom: 8px; /* Reduced to make room for composition */
  line-height: 1.35;
}

.product-card-composition {
  font-size: 0.85rem;
  color: var(--green-400);
  line-height: 1.4;
  margin-bottom: 20px;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}

.product-card-desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── Benefits / Bubbles Section ───────────────────────────── */
.benefits-section {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  position: relative;
  overflow: hidden;
}

.benefits-section .hero-blob {
  opacity: 0.12;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}

.benefit-bubble {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.benefit-bubble:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 18px;
  display: block;
}

.benefit-title {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}

.benefit-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* ── Contact Page ─────────────────────────────────────────── */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--blue-100), var(--green-100));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-500);
  margin-bottom: 4px;
}

.contact-info-val {
  font-weight: 600;
  color: var(--blue-900);
}

/* Form Styles */
.form-card {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-900);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--gray-700);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 4px rgba(30, 77, 140, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.form-control.is-invalid {
  border-color: #ef4444;
}

.invalid-feedback {
  font-size: 0.8rem;
  color: #ef4444;
  margin-top: 6px;
  display: block;
}

/* ── Alert Flash ──────────────────────────────────────────── */
.flash-alert {
  padding: 16px 22px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  font-size: 0.92rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}

.flash-success {
  background: var(--green-100);
  color: var(--green-600);
  border: 1px solid #86efac;
}

.flash-error {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fca5a5;
}

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  padding: 160px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero .hero-blob {
  opacity: 0.1;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 14px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a:hover {
  color: var(--green-400);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb .current {
  color: var(--green-400);
}

/* ── Product Catalog Filter Bar ───────────────────────────── */
.catalog-toolbar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}

.catalog-search {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  border-radius: var(--radius-full);
  padding: 10px 20px;
}

.catalog-search input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  color: var(--gray-700);
}

.catalog-search-icon {
  color: var(--gray-500);
  font-size: 1.1rem;
}

/* ── Product Detail ───────────────────────────────────────── */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.product-image-wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-image-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--blue-100), var(--green-100));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
}

.product-detail-cat {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-500);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.product-detail-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--blue-900);
  margin-bottom: 20px;
  line-height: 1.15;
}

.product-detail-desc {
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.product-spec-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}

.product-spec-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-300);
}

.product-spec-row:last-child {
  border-bottom: none;
}

.product-spec-icon {
  font-size: 1.4rem;
}

.product-spec-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.product-spec-val {
  font-weight: 600;
  color: var(--blue-900);
}

/* Related products */
.related-section {
  background: var(--cream);
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: #121212;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  margin-top: 20px;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-social:hover {
  background: var(--green-500);
  border-color: var(--green-500);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 22px;
}

.footer-link {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--green-400);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* ── Map Components ────────────────────────────────────────── */
.map-responsive {
  overflow: hidden;
  padding-bottom: 450px;
  position: relative;
  height: 0;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  border: 0;
}

.partners-map-container {
  position: relative;
  width: 100%;
  background: var(--blue-900);
  padding: 80px 0;
  overflow: hidden;
}

.map-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.world-map-svg {
  width: 100%;
  height: auto;
  opacity: 0.2;
}

.map-point {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--green-400);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  box-shadow: 0 0 15px var(--green-400);
  margin-top: -20px;
  margin-left: -10px;
}

.map-point::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid var(--green-400);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.map-point:hover {
  transform: scale(1.5);
  background: var(--white);
}

.map-tooltip {
  position: absolute;
  bottom: 150%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  color: var(--blue-900);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  pointer-events: none;
}

.map-point:hover .map-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.map-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--white);
}

/* ── Admin Dashboard ──────────────────────────────────────── */
.admin-layout {
  display: flex;
  min-height: 100vh;
  background: #F0F4F8;
  font-family: var(--font-sans);
}

.admin-sidebar {
  width: 260px;
  background: var(--blue-900);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: 100;
  transition: var(--transition);
}

.admin-sidebar-logo {
  padding: 28px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-sidebar-logo .logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--green-500), var(--blue-400));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.admin-sidebar-logo .logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}

.admin-sidebar-logo .logo-text span {
  color: var(--green-400);
}

.admin-nav {
  padding: 20px 14px;
  flex: 1;
}

.admin-nav-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.35);
  padding: 14px 10px 8px;
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition);
  margin-bottom: 3px;
}

.admin-nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.admin-nav-link.active {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(30, 77, 140, 0.4);
}

.admin-nav-icon {
  font-size: 1.15rem;
  width: 24px;
  text-align: center;
}

.admin-sidebar-footer {
  padding: 16px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Admin Main */
.admin-main {
  margin-left: 260px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.admin-header {
  background: var(--white);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  box-shadow: 0 1px 0 var(--gray-300);
  position: sticky;
  top: 0;
  z-index: 50;
}

.admin-header-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue-900);
}

.admin-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.admin-avatar {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--blue-500), var(--green-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
}

.admin-content {
  padding: 36px 32px;
  flex: 1;
}

/* Stats Cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.stat-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.stat-icon.blue {
  background: var(--blue-100);
}

.stat-icon.green {
  background: var(--green-100);
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-900);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 4px;
}

/* Admin Table */
.admin-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.admin-card-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-card-title {
  font-weight: 700;
  color: var(--blue-900);
  font-size: 1rem;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  background: var(--gray-100);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
}

.admin-table td {
  padding: 16px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
  color: var(--gray-700);
  vertical-align: middle;
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-table tr:hover td {
  background: var(--gray-100);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.badge-success {
  background: var(--green-100);
  color: var(--green-600);
}

.badge-neutral {
  background: var(--gray-100);
  color: var(--gray-500);
}

.action-btns {
  display: flex;
  gap: 8px;
}

.btn-icon {
  width: 34px;
  height: 34px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-edit {
  background: var(--blue-100);
  color: var(--blue-500);
}

.btn-edit:hover {
  background: var(--blue-500);
  color: var(--white);
}

.btn-delete {
  background: #fef2f2;
  color: #dc2626;
}

.btn-delete:hover {
  background: #dc2626;
  color: var(--white);
}

/* Admin Forms */
.admin-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.admin-form-group {
  margin-bottom: 22px;
}

.admin-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-900);
  margin-bottom: 8px;
}

.admin-label .required {
  color: #ef4444;
  margin-left: 2px;
}

.admin-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.93rem;
  color: var(--gray-700);
  transition: var(--transition);
  outline: none;
  background: var(--white);
}

.admin-input:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 4px rgba(30, 77, 140, 0.1);
}

select.admin-input {
  cursor: pointer;
}

textarea.admin-input {
  resize: vertical;
  min-height: 120px;
}

.admin-input.is-invalid {
  border-color: #ef4444;
}

.img-preview-wrap {
  margin-top: 12px;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: none;
  max-width: 200px;
}

.img-preview-wrap img {
  width: 100%;
}

/* Admin Login Page */
.admin-login-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.admin-login-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.login-logo {
  text-align: center;
  margin-bottom: 32px;
}

.login-logo-mark {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--blue-500), var(--green-500));
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-glow);
}

.login-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue-900);
}

.login-sub {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-top: 4px;
}

/* ── Floating WhatsApp ──────────────────────────────────────── */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: white;
}

/* ── Pagination ───────────────────────────────────────────── */
.pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
  gap: 6px;
}

.pagination-wrap .page-link {
  padding: 10px 16px;
  border-radius: 5px;
  background: var(--white);
  color: var(--blue-900);
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--gray-300);
  transition: var(--transition);
  display: inline-block;
}

.pagination-wrap .page-link:hover {
  background: var(--blue-500);
  color: var(--white);
  border-color: var(--blue-500);
}

.pagination-wrap .page-link.active {
  background: var(--blue-500);
  color: var(--white);
  border-color: var(--blue-500);
}

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {

  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes float-soft {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

.float-animation {
  animation: float-soft 4s ease-in-out infinite;
}

.hover-float-up:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.about-box-hover:hover {
  transform: scale(1.05);
  border-bottom-color: var(--blue-500) !important;
  box-shadow: var(--shadow-md);
}

.btn-tab {
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  border: 1px solid var(--gray-300);
  background: var(--white);
  color: var(--gray-700);
  cursor: pointer;
  transition: var(--transition);
}

.btn-tab:hover {
  background: var(--blue-100);
  border-color: var(--blue-500);
  color: var(--blue-600);
}

.btn-tab.active {
  background: var(--blue-500);
  border-color: var(--blue-500);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(43, 109, 191, 0.3);
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(0.8);
  }
}

@keyframes morphBlob {

  0%,
  100% {
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  }

  33% {
    border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
  }

  66% {
    border-radius: 70% 30% 50% 50% / 30% 70% 30% 70%;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding-top: 100px;
  }

  .hero-content {
    text-align: center !important;
    margin: 0 auto;
  }

  .hero-actions, .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
  }
}

.research-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Research Section */
.research-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
}
.research-content {
  flex: 1 1 500px;
}
.research-visual {
  flex: 1 1 350px;
  text-align: center;
}

/* CTA Section */
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-horse-wrap {
  flex: 0 0 400px;
  max-width: 450px;
  text-align: left;
  position: relative;
  z-index: 10;
}
.cta-content {
  flex: 1 1 400px;
  padding-left: 60px;
}


@media (max-width: 768px) {
  .section-pad {
    padding: 64px 0;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 76px; /* Aligning with 76px nav-inner height */
    left: 0;
    right: 0;
    bottom: 0;
    background: #0a1628; /* Solid dark color to match scrolled navbar */
    backdrop-filter: blur(16px);
    padding: 40px 24px;
    gap: 24px;
    z-index: 999;
    overflow-y: auto;
  }

  .nav-links.open .nav-dropdown .dropdown-menu {
    position: static;
    display: block;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 10px 0 10px 20px;
    animation: none;
  }

  .nav-links.open .dropdown-menu li a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    padding: 8px 0;
  }

  .nav-link {
    font-size: 1.4rem;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
    margin: 0 !important;
  }

  .cta-content {
    flex: 1 1 100%;
    padding-left: 0;
    text-align: center;
  }

  .cta-content .eyebrow, 
  .cta-content .heading-section, 
  .cta-content .body-text {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .research-content {
    flex: 1 1 100%;
  }

  .research-visual {
    flex: 1 1 100%;
    margin-top: 40px;
  }

  .research-stats-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 20px;
    margin-top: 40px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .admin-sidebar {
    transform: translateX(-260px);
  }

  .admin-sidebar.open {
    transform: translateX(0);
  }

  .admin-main {
    margin-left: 0;
  }

  .admin-content {
    padding: 20px 16px;
  }

  .admin-form-card {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-animal-card {
    padding: 28px 20px;
  }

  .hero-animal-icon {
    font-size: 5rem;
  }

  .admin-login-card {
    padding: 36px 28px;
  }
}

/* ──────────────── breadcrumb ───────────────────────────── */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start; /* Left alignment as requested */
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ──────────────── hero split ────────────────────────────── */
.products-hero-split {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
}

@media (max-width: 768px) {
  .products-hero-split {
    display: block !important; /* Disable flex on mobile as requested */
  }
}
