/* ============================================================
   FH Fish Farm — Global Stylesheet (Aquatic Edition)
   ============================================================ */

/* 1. CSS Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* 2. Design Tokens */
:root {
  --color-primary:    #0b2d5e;
  --color-secondary:  #0891b2;
  --color-accent:     #f97316;
  --color-aqua:       #06b6d4;
  --color-violet:     #7c3aed;
  --color-bg:         #f0f9ff;
  --color-surface:    #ffffff;
  --color-text:       #0b2d5e;
  --color-text-muted: #4a6f85;
  --color-border:     #bae6fd;
  --color-wa:         #25D366;
  --nav-height:       68px;
  --radius:           14px;
  --shadow-sm:        0 1px 4px rgba(11,45,94,0.08);
  --shadow-md:        0 4px 16px rgba(11,45,94,0.13);
  --shadow-lg:        0 10px 36px rgba(11,45,94,0.18);
  --transition:       0.25s ease;
}

/* 3. Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }
.mt-3 { margin-top: 1.5rem; }
.btn-group { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* 4. Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.4rem; border-radius: 100px;
  font-size: 0.93rem; font-weight: 600; font-family: inherit;
  border: 2px solid transparent; cursor: pointer;
  text-decoration: none; transition: all var(--transition);
  white-space: nowrap; line-height: 1.2;
  overflow: hidden;
}
.btn-primary { background: var(--color-primary); color: white; }
.btn-primary:hover { background: #0e3a6e; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--color-secondary); color: white; }
.btn-secondary:hover { background: #0b7ba3; transform: translateY(-1px); }
.btn-wa { background: var(--color-wa); color: white; }
.btn-wa:hover { background: #1dac55; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,211,102,0.35); }
.btn-wa[aria-disabled="true"], .btn-wa:disabled { background: #9ca3af; pointer-events: none; }
.btn-outline { background: transparent; color: var(--color-primary); border: 2px solid var(--color-border); }
.btn-outline:hover { border-color: var(--color-secondary); color: var(--color-secondary); }
.contact-strip .btn-outline { color: white; border-color: rgba(255,255,255,0.5); background: transparent; }
.contact-strip .btn-outline:hover { color: white; border-color: white; background: rgba(255,255,255,0.12); }
.btn-outline-dark {
  background: transparent; color: var(--color-text-muted);
  border: 1.5px solid var(--color-border); border-radius: 8px;
  padding: 0.4rem 0.9rem; font-size: 0.83rem; font-weight: 500;
}
.btn-outline-dark:hover { border-color: var(--color-primary); color: var(--color-primary); }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.83rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-ghost {
  background: rgba(255,255,255,0.12); color: white;
  border: 2px solid rgba(255,255,255,0.4); backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.65); }

/* 5. Navbar */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-height);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
.navbar.scrolled {
  background: rgba(11,45,94,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 14px rgba(11,45,94,0.28);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-height);
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem; font-weight: 700; color: white; letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 0.5rem;
}
.nav-logo-img {
  height: 36px; width: auto; object-fit: contain;
  flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.92rem; font-weight: 500;
  color: rgba(255,255,255,0.82);
  transition: color var(--transition);
  padding-bottom: 2px;
}
.nav-links a:hover,
.nav-links a.active { color: white; }
.nav-links a.active { border-bottom: 2px solid var(--color-aqua); }

.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; padding: 6px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: white; border-radius: 2px;
  transition: all 0.25s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* 6. Mobile Menu */
.mobile-menu {
  position: fixed; top: var(--nav-height); left: 0; right: 0; z-index: 850;
  background: var(--color-primary);
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
  box-shadow: 0 8px 24px rgba(11,45,94,0.3);
}
.mobile-menu.open { max-height: 320px; }
.mobile-menu a {
  display: block; padding: 0.9rem 1.5rem;
  color: rgba(255,255,255,0.85); font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition), background var(--transition);
}
.mobile-menu a:hover { color: white; background: rgba(255,255,255,0.06); }
.mobile-menu a.active { color: var(--color-aqua); }

/* ═══════════════════════════════════════════════════════════
   7. HERO SECTION — Video Background
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* CSS fallback shown before video loads */
  background: linear-gradient(135deg, #040e24 0%, #0c3060 45%, #0d7aa0 100%);
}

/* Full-bleed background video */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

/* Dark overlay so text stays readable over any video content */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(4,14,36,0.70) 0%, rgba(12,48,96,0.52) 50%, rgba(13,122,160,0.40) 100%);
  z-index: 1;
  pointer-events: none;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(6,182,212,0.35); }
  50%       { box-shadow: 0 0 0 8px rgba(6,182,212,0); }
}
@keyframes shimmer {
  0%, 100% { opacity: 0.45; }
  50%       { opacity: 0.72; }
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: calc(var(--nav-height) + 2.5rem) 1.5rem 5rem;
  max-width: 800px;
  width: 100%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(6,182,212,0.18);
  border: 1px solid rgba(6,182,212,0.5);
  color: var(--color-aqua);
  padding: 0.42rem 1.1rem; border-radius: 100px;
  font-size: 0.84rem; font-weight: 600; letter-spacing: 0.03em;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
  animation: badgePulse 2.5s ease-in-out infinite;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: 1.35rem;
  text-shadow: 0 2px 24px rgba(4,14,36,0.5);
}
.hero-title .accent {
  background: linear-gradient(135deg, #f97316 0%, #fb923c 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(0.98rem, 2.5vw, 1.18rem);
  color: rgba(255,255,255,0.76);
  max-width: 540px;
  margin: 0 auto 2.75rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  line-height: 0;
  pointer-events: none;
  z-index: 2; /* sits above plants so wave covers plant roots */
}
.hero-wave svg { display: block; width: 100%; height: auto; }

/* ═══════════════════════════════════════════════════════════
   8. CATEGORY CARDS SECTION
═══════════════════════════════════════════════════════════ */
.categories-section {
  padding: 5rem 0 4rem;
  background: var(--color-bg);
}
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.category-card {
  border-radius: var(--radius);
  padding: 1.75rem 1rem;
  text-align: center;
  color: white;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--transition);
}
.category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.category-card:hover::before { opacity: 1; }

.category-card.albino-veritas { background: linear-gradient(135deg, #0369a1, #38bdf8); }
.category-card.big-ear        { background: linear-gradient(135deg, #b45309, #fbbf24); }
.category-card.hybrid         { background: linear-gradient(135deg, #6d28d9, #a78bfa); }
.category-card.koi-variety    { background: linear-gradient(135deg, #be185d, #f472b6); }
.category-card.mosaic         { background: linear-gradient(135deg, #0f766e, #2dd4bf); }
.category-card.ribbon         { background: linear-gradient(135deg, #4338ca, #818cf8); }
.category-card.swallow        { background: linear-gradient(135deg, #c2410c, #fb923c); }

.category-icon { font-size: 2.5rem; margin-bottom: 0.75rem; display: block; }
.category-img {
  width: 90px; height: 90px; border-radius: 12px;
  object-fit: cover; margin: 0 auto 0.85rem;
  display: block; border: 3px solid rgba(255,255,255,0.4);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.category-name { font-size: 0.95rem; font-weight: 700; display: block; }
.category-sub  { font-size: 0.76rem; opacity: 0.8; display: block; margin-top: 0.2rem; }

/* ═══════════════════════════════════════════════════════════
   9. FEATURED & PRODUCTS SECTIONS
═══════════════════════════════════════════════════════════ */
.featured-section {
  padding: 4rem 0 5rem;
  background: white;
}
.products-section {
  padding: 2.5rem 0 4rem;
  background: var(--color-bg);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 1.5rem;
}

/* Product Card */
.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card.out-of-stock { opacity: 0.72; }

.product-img-wrap {
  position: relative;
  width: 100%;
  padding-top: 62%;
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  overflow: hidden;
}
.product-img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.product-img-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-aqua);
}
.product-img-placeholder svg { width: 54px; height: 54px; opacity: 0.42; }

/* Badges */
.badge-category, .badge-stock {
  position: absolute;
  font-size: 0.7rem; font-weight: 700;
  padding: 0.22rem 0.62rem; border-radius: 100px;
  letter-spacing: 0.03em; line-height: 1.4;
}
.badge-category { top: 0.65rem; left: 0.65rem; text-transform: uppercase; }
.badge-stock    { top: 0.65rem; right: 0.65rem; }

/* Category badge colors */
.badge-category.albino-veritas { background: rgba(56,189,248,0.16);  color: #0369a1; border: 1px solid rgba(56,189,248,0.38); }
.badge-category.big-ear        { background: rgba(251,191,36,0.16);  color: #b45309; border: 1px solid rgba(251,191,36,0.38); }
.badge-category.hybrid         { background: rgba(167,139,250,0.16); color: #6d28d9; border: 1px solid rgba(167,139,250,0.38); }
.badge-category.koi-variety    { background: rgba(244,114,182,0.16); color: #be185d; border: 1px solid rgba(244,114,182,0.38); }
.badge-category.mosaic         { background: rgba(45,212,191,0.16);  color: #0f766e; border: 1px solid rgba(45,212,191,0.38); }
.badge-category.ribbon         { background: rgba(129,140,248,0.16); color: #4338ca; border: 1px solid rgba(129,140,248,0.38); }
.badge-category.swallow        { background: rgba(251,146,60,0.16);  color: #c2410c; border: 1px solid rgba(251,146,60,0.38); }

.badge-stock.in-stock  { background: #dcfce7; color: #166534; }
.badge-stock.out-stock { background: #f1f5f9; color: #64748b; }

.product-body {
  padding: 1.1rem 1.2rem 1.3rem;
  flex: 1; display: flex; flex-direction: column;
}
.product-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--color-primary); margin-bottom: 0.3rem; line-height: 1.3;
}
.product-price {
  font-size: 1.15rem; font-weight: 700;
  color: var(--color-secondary); margin-bottom: 0.5rem;
}
.product-price span { font-size: 0.8rem; font-weight: 500; color: var(--color-text-muted); }
.product-desc {
  font-size: 0.85rem; color: var(--color-text-muted);
  line-height: 1.55; flex: 1; margin-bottom: 1rem;
}
.product-actions { display: flex; flex-direction: column; gap: 0.5rem; margin-top: auto; }
.product-actions .btn-wa {
  width: 100%; justify-content: center;
  white-space: normal; text-align: center; line-height: 1.3;
  word-break: break-word;
}

/* ═══════════════════════════════════════════════════════════
   10. WHY CHOOSE US
═══════════════════════════════════════════════════════════ */
.why-section {
  padding: 5rem 0;
  background: var(--color-primary);
}
.why-section .section-title { color: white; }
.why-section .section-subtitle { color: rgba(255,255,255,0.68); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.12); }
.why-icon { font-size: 2.4rem; display: block; margin-bottom: 1rem; }
.why-card h3 { font-size: 1.05rem; font-weight: 700; color: white; margin-bottom: 0.5rem; }
.why-card p  { font-size: 0.87rem; color: rgba(255,255,255,0.68); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════
   11. FILTER BAR
═══════════════════════════════════════════════════════════ */
.filter-section {
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
  background: white;
  border-bottom: 1px solid var(--color-border);
  padding: 0.85rem 0;
  box-shadow: 0 2px 8px rgba(11,45,94,0.06);
}
.filter-top { display: flex; gap: 1rem; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.filter-bar { display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; }
.search-wrap { position: relative; flex-shrink: 0; }
.search-icon { position: absolute; left: 0.7rem; top: 50%; transform: translateY(-50%); color: var(--color-text-muted); pointer-events: none; }
.search-wrap input[type="search"] {
  padding: 0.45rem 1rem 0.45rem 2.1rem;
  border: 1.5px solid var(--color-border);
  border-radius: 100px;
  font-size: 0.85rem; font-family: inherit;
  outline: none; background: white;
  width: 210px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.search-wrap input[type="search"]:focus { border-color: var(--color-secondary); box-shadow: 0 0 0 3px rgba(13,115,119,0.1); }
.filter-pill {
  padding: 0.45rem 1.1rem; border-radius: 100px;
  font-size: 0.85rem; font-weight: 600;
  border: 1.5px solid var(--color-border);
  color: var(--color-text-muted); background: transparent;
  transition: all var(--transition); cursor: pointer;
}
.filter-pill:hover { border-color: var(--color-secondary); color: var(--color-secondary); }
.filter-pill.active { background: var(--color-primary); color: white; border-color: var(--color-primary); }

/* ═══════════════════════════════════════════════════════════
   12. PAGE HERO (About / Contact / Products)
═══════════════════════════════════════════════════════════ */
.page-hero {
  background:
    linear-gradient(135deg, var(--color-primary) 0%, #0c4a72 55%, var(--color-secondary) 100%);
  padding: calc(var(--nav-height) + 2.25rem) 0 2.5rem;
  text-align: left;
}
.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700; color: white; margin-bottom: 0.65rem;
}
.breadcrumb { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; }
.breadcrumb a { color: rgba(255,255,255,0.62); }
.breadcrumb a:hover { color: white; }
.breadcrumb span:not(.sep) { color: rgba(255,255,255,0.9); }
.breadcrumb .sep { color: rgba(255,255,255,0.38); }

/* ═══════════════════════════════════════════════════════════
   13. PRODUCT MODAL
═══════════════════════════════════════════════════════════ */
@keyframes modalIn {
  from { opacity: 0; transform: translateY(22px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(11,45,94,0.65);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-dialog {
  background: white; border-radius: 20px;
  display: flex; max-width: 820px; width: 100%;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(11,45,94,0.38);
  max-height: 90vh;
  animation: modalIn 0.3s ease;
}
.modal-img-col {
  width: 42%; flex-shrink: 0;
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  min-height: 320px; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.modal-img-col img { width: 100%; height: 100%; object-fit: cover; }
.modal-img-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; color: var(--color-aqua); }
.modal-img-placeholder svg { width: 80px; height: 80px; opacity: 0.38; }
.modal-body-col { flex: 1; padding: 2rem; overflow-y: auto; display: flex; flex-direction: column; position: relative; }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--color-bg); color: var(--color-text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.modal-close:hover { background: #fee2e2; color: #ef4444; }
.modal-close svg { width: 16px; height: 16px; fill: none; }
.modal-badge-row { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.modal-badge-row .badge-category,
.modal-badge-row .badge-stock { position: static; }
.modal-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.5rem; font-weight: 700; color: var(--color-primary); margin-bottom: 0.4rem; }
.modal-price { font-size: 1.3rem; font-weight: 700; color: var(--color-secondary); margin-bottom: 0.75rem; }
.modal-price span { font-size: 0.85rem; font-weight: 500; color: var(--color-text-muted); }
.modal-desc { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.65; margin-bottom: 1.25rem; }
.modal-options-label { font-size: 0.78rem; font-weight: 700; color: var(--color-text); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.6rem; }
.qty-counter { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.qty-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--color-border);
  background: white; font-size: 1.25rem; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--color-primary); line-height: 1;
  transition: all var(--transition);
}
.qty-btn:hover:not(:disabled) { border-color: var(--color-secondary); background: var(--color-secondary); color: white; }
.qty-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.qty-value { font-size: 1.3rem; font-weight: 700; min-width: 1.8rem; text-align: center; color: var(--color-primary); }
.qty-unit { font-size: 0.88rem; color: var(--color-text-muted); }
.modal-cta { margin-top: auto; padding-top: 1rem; }

/* ═══════════════════════════════════════════════════════════
   14. ABOUT PAGE
═══════════════════════════════════════════════════════════ */
.about-story { padding: 4.5rem 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.story-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700;
  color: var(--color-primary); margin-bottom: 1.25rem; line-height: 1.3;
}
.story-content p { font-size: 0.95rem; color: var(--color-text-muted); line-height: 1.78; margin-bottom: 1rem; }
.story-content p:last-of-type { margin-bottom: 0; }
.story-img-placeholder {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
}
.story-img-placeholder svg { width: 120px; height: auto; opacity: 0.45; }

/* Video Container for About Section */
.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--color-primary);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.promises-section { padding: 4rem 0; background: var(--color-bg); }
.promises-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.promise-card {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--color-border);
  padding: 1.75rem 1.25rem; text-align: center;
}
.promise-icon {
  width: 56px; height: 56px; background: var(--color-bg);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.promise-card h3 { font-size: 1rem; font-weight: 700; color: var(--color-primary); margin-bottom: 0.4rem; }
.promise-card p  { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   15. CONTACT PAGE
═══════════════════════════════════════════════════════════ */
.contact-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 2.5rem; }
.contact-card {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--color-border);
  padding: 1.75rem 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
  box-shadow: var(--shadow-sm);
}
.contact-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--color-primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; fill: white; }
.contact-card-content h3 { font-size: 1rem; font-weight: 700; color: var(--color-primary); margin-bottom: 0.35rem; }
.contact-card-content a { color: var(--color-secondary); font-weight: 600; font-size: 0.95rem; display: block; }
.contact-card-content a:hover { color: var(--color-primary); }
.contact-card-content p { color: var(--color-text-muted); font-size: 0.85rem; }
.wa-cta-block {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 20px; padding: 2.5rem; text-align: center;
  margin-bottom: 2.5rem; color: white;
}
.wa-cta-block h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.6rem; margin-bottom: 0.5rem; }
.wa-cta-block p  { color: rgba(255,255,255,0.78); margin-bottom: 1.5rem; }
.contact-form-section {
  background: white; border-radius: 20px;
  padding: 2rem; border: 1px solid var(--color-border);
}
.contact-form-section h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.4rem; color: var(--color-primary); margin-bottom: 0.35rem; }
.contact-form-section > p { color: var(--color-text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--color-text); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea {
  width: 100%; padding: 0.7rem 0.95rem;
  border: 1.5px solid var(--color-border); border-radius: 10px;
  background: var(--color-bg); color: var(--color-text);
  font-size: 0.92rem; font-family: inherit; outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--color-secondary); background: white; }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ═══════════════════════════════════════════════════════════
   16. CONTACT STRIP (CTA Banner)
═══════════════════════════════════════════════════════════ */
.contact-strip {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0c3a6e 100%);
  padding: 4rem 0; text-align: center; color: white;
}
.contact-strip h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 0.6rem; }
.contact-strip p  { color: rgba(255,255,255,0.73); margin-bottom: 1.75rem; font-size: 1rem; }

/* ═══════════════════════════════════════════════════════════
   17. EMPTY STATE
═══════════════════════════════════════════════════════════ */
.empty-state {
  display: none; flex-direction: column; align-items: center;
  justify-content: center; padding: 4rem 2rem; text-align: center;
  color: var(--color-text-muted);
}
.empty-state.visible { display: flex; }
.empty-state svg { width: 72px; height: 72px; margin-bottom: 1rem; opacity: 0.22; }
.empty-state h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--color-primary); }

/* ═══════════════════════════════════════════════════════════
   18. FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: #040e24;
  padding: 3.5rem 0 0;
  color: rgba(255,255,255,0.72);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .nav-logo { color: white; font-size: 1.25rem; margin-bottom: 0.75rem; display: block; }
.footer-tagline { font-size: 0.86rem; line-height: 1.65; color: rgba(255,255,255,0.56); max-width: 240px; margin-bottom: 1.1rem; }
.footer-wa-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--color-wa); color: white;
  padding: 0.5rem 1rem; border-radius: 100px;
  font-size: 0.85rem; font-weight: 600;
  transition: background var(--transition);
}
.footer-wa-link:hover { background: #1dac55; }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.45); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.87rem; color: rgba(255,255,255,0.62); transition: color var(--transition); }
.footer-links a:hover { color: white; }
.footer-contact-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.87rem; color: rgba(255,255,255,0.62); margin-bottom: 0.5rem; }
.footer-contact-item svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.48); flex-shrink: 0; }
.footer-bottom { padding: 1.25rem 0; text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.32); }

/* ═══════════════════════════════════════════════════════════
   19. FLOATING WHATSAPP
═══════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 800;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--color-wa); color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.65); }
.wa-float svg { width: 28px; height: 28px; }
.wa-float-tooltip {
  position: absolute; right: calc(100% + 0.75rem);
  background: rgba(11,45,94,0.92); color: white;
  font-size: 0.78rem; font-weight: 600;
  padding: 0.35rem 0.75rem; border-radius: 8px; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.wa-float:hover .wa-float-tooltip { opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   20. SCROLL ANIMATIONS
═══════════════════════════════════════════════════════════ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════
   21. RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .category-grid  { grid-template-columns: repeat(3, 1fr); }
  .promises-grid  { grid-template-columns: repeat(2, 1fr); }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .story-grid    { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; gap: 1rem; }
  .contact-cards-grid { grid-template-columns: 1fr; }
  .modal-dialog  { flex-direction: column; max-height: 95vh; }
  .modal-img-col { width: 100%; min-height: 200px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { gap: 1rem; }
}

@media (max-width: 520px) {
  .hero-ctas { flex-direction: column; align-items: center; width: 100%; }
  .hero-ctas .btn { width: 100%; max-width: 320px; justify-content: center; }
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .why-grid { grid-template-columns: 1fr; }
  .promises-grid { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .product-body { padding: 0.85rem 0.9rem 1rem; }
  .product-actions .btn-wa { font-size: 0.78rem; padding: 0.5rem 0.75rem; }
}

@media (max-width: 360px) {
  .product-grid { grid-template-columns: 1fr; }
}
