/* ============================================================
   HI-TECH FARMS & HATCHERY — Main Stylesheet
   Aesthetic: Organic luxury — earthy greens, clean whites,
   botanical textures, editorial typography
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

/* ── CSS Variables ── */
:root {
  --green-900: #0d2b1a;
  --green-800: #1a4029;
  --green-700: #245c38;
  --green-600: #2e7a4a;
  --green-500: #3a9c5f;
  --green-400: #5db87a;
  --green-300: #8fd4a4;
  --green-100: #d6f0df;
  --green-50:  #f0faf3;
  --cream:     #faf8f2;
  --warm-white:#fffef9;
  --gold:      #c9a227;
  --gold-light:#e8c84a;
  --text-dark: #0d1f0f;
  --text-mid:  #2c4a32;
  --text-muted:#6b8f72;
  --shadow-sm: 0 2px 12px rgba(13,43,26,.08);
  --shadow-md: 0 8px 32px rgba(13,43,26,.14);
  --shadow-lg: 0 20px 60px rgba(13,43,26,.2);
  --radius:    16px;
  --radius-sm: 8px;
  --transition: all .35s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Preloader ── */
#preloader {
  position: fixed; inset: 0;
  background: var(--green-900);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  color: #fff; font-size: 28px; font-weight: 700;
  margin-bottom: 24px;
  animation: pulse-glow 1.4s ease-in-out infinite;
}
.preloader-bar {
  width: 160px; height: 3px;
  background: var(--green-800);
  border-radius: 99px; overflow: hidden;
}
.preloader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-400), var(--gold));
  border-radius: 99px;
  animation: fill-bar 1.8s ease forwards;
}
@keyframes fill-bar {
  from { width: 0; }
  to   { width: 100%; }
}
@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 0 0 rgba(58,156,95,.5); }
  50%      { box-shadow: 0 0 0 18px rgba(58,156,95,0); }
}

/* ── Sticky Header ── */
#main-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 12px 40px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250,248,242,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(46,122,74,.1);
  transition: var(--transition);
}
#main-header.scrolled {
  padding: 8px 40px;
  box-shadow: var(--shadow-md);
}
.header-logo {
  display: flex; align-items: center; gap: 14px;
}
.logo-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  color: #fff; font-weight: 700; font-size: 18px;
  box-shadow: 0 4px 14px rgba(36,92,56,.35);
  flex-shrink: 0;
  transition: var(--transition);
}
.logo-circle:hover { transform: scale(1.07) rotate(-3deg); }
.logo-text-wrap .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--green-800); line-height: 1.1;
}
.logo-text-wrap .brand-tag {
  font-size: .7rem; color: var(--text-muted);
  font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
}
nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: .9rem; font-weight: 500;
  color: var(--text-mid); padding: 8px 14px;
  border-radius: 99px; transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 2px; background: var(--green-500); border-radius: 99px;
  transition: left .3s ease, right .3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--green-700); }
.nav-link:hover::after, .nav-link.active::after { left: 16px; right: 16px; }
.nav-cta {
  background: var(--green-700); color: #fff !important;
  padding: 9px 22px !important; border-radius: 99px !important;
  font-weight: 600 !important; font-size: .88rem !important;
  box-shadow: 0 4px 14px rgba(36,92,56,.35);
  transition: var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--green-600) !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(36,92,56,.4); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span {
  width: 24px; height: 2px;
  background: var(--green-800); border-radius: 99px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed; top: 76px; left: 0; right: 0;
  background: var(--warm-white);
  padding: 20px 24px;
  display: flex; flex-direction: column; gap: 4px;
  border-bottom: 1px solid var(--green-100);
  transform: translateY(-120%); transition: transform .4s cubic-bezier(.4,0,.2,1);
  z-index: 899; box-shadow: var(--shadow-md);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav .nav-link { padding: 12px 16px; font-size: 1rem; }

/* ── Hero Section ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(13,43,26,.72) 0%, rgba(13,43,26,.45) 60%, rgba(13,43,26,.7) 100%),
    url('../images/day\ old\ 2.jpg') center/cover no-repeat;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(58,156,95,.18) 0%, transparent 70%);
}
/* SVG noise texture */
.hero-texture {
  position: absolute; inset: 0; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 780px;
  padding: 0 24px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-size: .8rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 99px; margin-bottom: 28px;
  animation: fadeInDown .8s ease .3s both;
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px;
  background: var(--gold-light); border-radius: 50%;
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.5); opacity: .6; }
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 700; color: #fff;
  line-height: 1.08; margin-bottom: 8px;
  animation: fadeInUp .9s ease .5s both;
}
.hero-title em { color: var(--green-300); font-style: italic; }
.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vw, 1.9rem);
  color: rgba(255,255,255,.8); font-weight: 400; font-style: italic;
  margin-bottom: 24px;
  animation: fadeInUp .9s ease .65s both;
}
.typing-wrapper {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.7); margin-bottom: 40px;
  min-height: 1.8em;
  animation: fadeInUp .9s ease .8s both;
}
.typing-text { border-right: 2px solid var(--green-300); padding-right: 3px; }
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp .9s ease .95s both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green-500); color: #fff;
  font-weight: 700; font-size: 1rem;
  padding: 16px 36px; border-radius: 99px;
  box-shadow: 0 0 0 0 rgba(58,156,95,.5);
  animation: btn-pulse 2.2s ease-in-out infinite;
  transition: var(--transition);
}
.btn-primary:hover {
  background: var(--green-400); transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(58,156,95,.5);
  animation-play-state: paused;
}
@keyframes btn-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(58,156,95,.6); }
  50%      { box-shadow: 0 0 0 16px rgba(58,156,95,0); }
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.12); color: #fff;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,.3);
  font-weight: 600; font-size: 1rem;
  padding: 16px 32px; border-radius: 99px;
  transition: var(--transition);
}
.btn-secondary:hover { background: rgba(255,255,255,.22); transform: translateY(-3px); }
.hero-scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.6); font-size: .75rem; letter-spacing: .12em;
  text-transform: uppercase;
  animation: fadeInUp .8s ease 1.3s both;
}
.scroll-arrow {
  width: 24px; height: 24px;
  border-right: 2px solid rgba(255,255,255,.5);
  border-bottom: 2px solid rgba(255,255,255,.5);
  transform: rotate(45deg);
  animation: arrow-bounce 1.8s ease-in-out infinite;
}
@keyframes arrow-bounce {
  0%,100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50%      { transform: rotate(45deg) translateY(6px); opacity: .4; }
}

/* ── Section Shared ── */
section { position: relative; }
.section-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 100px 40px;
}
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: .75rem; font-weight: 500;
  color: var(--green-500); letter-spacing: .18em;
  text-transform: uppercase; margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: ''; display: inline-block;
  width: 32px; height: 1px; background: var(--green-500);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.12;
  color: var(--green-900); margin-bottom: 20px;
}
.section-title em { color: var(--green-600); font-style: italic; }
.section-lead {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 580px; line-height: 1.75;
}

/* SVG Wave Dividers */
.wave-divider { line-height: 0; }
.wave-divider svg { display: block; width: 100%; }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-50px); transition: opacity .7s ease, transform .7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ── About Section ── */
.about-section { background: var(--warm-white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute; bottom: -30px; right: -30px;
  width: 55%; aspect-ratio: 1;
  object-fit: cover; border-radius: var(--radius);
  border: 6px solid var(--warm-white);
  box-shadow: var(--shadow-md);
}
.about-badge-float {
  position: absolute; top: 24px; left: -24px;
  background: var(--green-700); color: #fff;
  padding: 16px 22px; border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  font-family: 'Playfair Display', serif;
}
.about-badge-float .number {
  font-size: 2.2rem; font-weight: 700; line-height: 1;
}
.about-badge-float .label { font-size: .75rem; opacity: .8; }
.about-features { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.feature-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 20px;
  background: var(--green-50); border-radius: var(--radius-sm);
  border-left: 3px solid var(--green-500);
  transition: var(--transition);
}
.feature-item:hover { background: var(--green-100); transform: translateX(6px); }
.feature-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--green-500); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.feature-text strong { display: block; font-weight: 600; color: var(--green-900); font-size: .95rem; }
.feature-text span  { font-size: .85rem; color: var(--text-muted); }

/* ── Stats Section ── */
.stats-section {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: 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='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; position: relative; z-index: 1;
}
.stat-card {
  text-align: center; padding: 52px 24px;
  position: relative;
}
.stat-card::after {
  content: ''; position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(255,255,255,.1);
}
.stat-card:last-child::after { display: none; }
.stat-icon {
  font-size: 2.2rem; margin-bottom: 16px;
  display: block;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700; color: #fff;
  line-height: 1; display: block;
}
.stat-suffix { color: var(--green-300); }
.stat-label {
  font-size: .85rem; color: rgba(255,255,255,.6);
  text-transform: uppercase; letter-spacing: .1em;
  margin-top: 8px; display: block;
}

/* ── Products Page / Cards ── */
.products-section { background: var(--cream); }
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px; margin-top: 56px;
}
.product-card {
  perspective: 1000px; height: 420px;
  cursor: pointer;
}
.card-inner {
  position: relative; width: 100%; height: 100%;
  transition: transform .65s cubic-bezier(.4,0,.2,1);
  transform-style: preserve-3d;
}
.product-card:hover .card-inner { transform: rotateY(180deg); }
.card-front, .card-back {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius);
  overflow: hidden;
}
.card-front {
  background: #fff;
  box-shadow: var(--shadow-md);
}
.card-front-img {
  width: 100%; height: 220px; object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .card-front-img { transform: scale(1.04); }
.card-front-body { padding: 20px 24px; }
.card-category {
  font-family: 'DM Mono', monospace;
  font-size: .7rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green-500);
  margin-bottom: 6px;
}
.card-front-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; color: var(--green-900);
  margin-bottom: 8px;
}
.card-front-body p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }
.card-flip-hint {
  position: absolute; bottom: 16px; right: 20px;
  font-size: .72rem; color: var(--green-400);
  display: flex; align-items: center; gap: 5px;
  font-weight: 500;
}
.card-back {
  background: linear-gradient(145deg, var(--green-800), var(--green-700));
  transform: rotateY(180deg);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  padding: 32px; text-align: center; color: #fff;
}
.card-back h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; margin-bottom: 16px;
}
.card-back-price {
  font-size: 2.4rem; font-weight: 700;
  color: var(--green-300);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 6px;
}
.card-back-price small {
  font-size: .9rem; color: rgba(255,255,255,.6);
  font-family: 'DM Sans', sans-serif;
}
.card-back-details {
  margin: 20px 0; font-size: .88rem;
  color: rgba(255,255,255,.75); line-height: 1.7;
}
.card-back-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-400); color: var(--green-900);
  font-weight: 700; font-size: .9rem;
  padding: 12px 28px; border-radius: 99px;
  transition: var(--transition);
  margin-top: 8px;
}
.card-back-btn:hover { background: var(--green-300); transform: scale(1.04); }

/* ── Gallery ── */
.gallery-section { background: var(--green-50); }
.gallery-filters {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 40px; margin-top: 40px;
}
.filter-btn {
  padding: 9px 22px; border-radius: 99px;
  font-size: .88rem; font-weight: 600;
  border: 1.5px solid var(--green-300);
  color: var(--green-700); background: transparent;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--green-700); color: #fff;
  border-color: var(--green-700);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(36,92,56,.3);
}
.masonry-grid {
  columns: 3; column-gap: 20px;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 20px;
  border-radius: var(--radius-sm);
  overflow: hidden; cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}
.gallery-item img {
  width: 100%; display: block;
  transition: transform .5s ease;
}
.gallery-item:hover {
  transform: scale(1.02) rotate(.4deg);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,43,26,.8) 0%, transparent 60%);
  opacity: 0; transition: opacity .35s ease;
  display: flex; align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: #fff; font-weight: 600; font-size: .9rem;
  display: flex; align-items: center; gap: 8px;
}

/* Lightbox */
#lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(10,20,12,.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: 90vw; max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  animation: lb-in .3s ease;
}
@keyframes lb-in {
  from { opacity: 0; transform: scale(.9); }
  to   { opacity: 1; transform: scale(1); }
}
.lb-close {
  position: absolute; top: 24px; right: 28px;
  color: #fff; font-size: 2rem; cursor: pointer;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,.1);
  transition: var(--transition);
}
.lb-close:hover { background: rgba(255,255,255,.2); transform: rotate(90deg); }
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: #fff; font-size: 2rem; cursor: pointer;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,.1);
  transition: var(--transition);
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.2); }
.lb-caption {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.8); font-size: .9rem;
  background: rgba(0,0,0,.4); padding: 8px 20px;
  border-radius: 99px;
}

/* ── Hatchery Page ── */
.hatchery-hero {
  background:
    linear-gradient(160deg, rgba(13,43,26,.8) 0%, rgba(13,43,26,.5) 100%),
    url('../images/incub.jpg') center/cover;
  min-height: 60vh; display: flex; align-items: center;
  padding-top: 80px;
}
.page-hero-content { max-width: 640px; padding: 80px 40px; }
.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff; line-height: 1.1; margin-bottom: 16px;
}
.page-hero-content p {
  color: rgba(255,255,255,.75); font-size: 1.1rem; line-height: 1.7;
}
.process-timeline { margin-top: 64px; position: relative; }
.process-timeline::before {
  content: ''; position: absolute;
  left: 28px; top: 0; bottom: 0;
  width: 2px; background: var(--green-200);
}
.timeline-item {
  display: flex; gap: 32px; margin-bottom: 48px;
  align-items: flex-start;
}
.timeline-dot {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green-700); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Mono', monospace; font-weight: 700;
  font-size: .9rem; flex-shrink: 0;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 6px var(--cream);
  transition: var(--transition);
}
.timeline-item:hover .timeline-dot { transform: scale(1.1); background: var(--green-500); }
.timeline-content { padding-top: 10px; }
.timeline-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--green-900); margin-bottom: 6px;
}
.timeline-content p { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }

/* Breeds grid */
.breeds-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px; margin-top: 48px;
}
.breed-card {
  background: #fff; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.breed-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.breed-img { width: 100%; height: 180px; object-fit: cover; }
.breed-body { padding: 20px; }
.breed-tag {
  display: inline-block; padding: 3px 10px;
  background: var(--green-100); color: var(--green-700);
  border-radius: 99px; font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px;
}
.breed-body h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 6px; }
.breed-body p  { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }

/* ── Contact Page ── */
.contact-section { background: var(--warm-white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 60px; align-items: start;
}
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; color: var(--green-900);
  margin-bottom: 16px;
}
.contact-info p { color: var(--text-muted); line-height: 1.7; margin-bottom: 36px; }
.contact-detail {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px;
}
.contact-detail-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--green-100); color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail-text strong { display: block; font-weight: 600; color: var(--green-900); }
.contact-detail-text span  { font-size: .9rem; color: var(--text-muted); }
.contact-form-wrap {
  background: #fff; border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: .85rem; font-weight: 600;
  color: var(--green-800); margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--green-100);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif; font-size: .95rem;
  color: var(--text-dark);
  background: var(--cream); outline: none;
  transition: var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(58,156,95,.12);
}
.form-group textarea { min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  width: 100%; padding: 15px;
  background: var(--green-700); color: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700;
  border-radius: 99px; transition: var(--transition);
  box-shadow: 0 6px 20px rgba(36,92,56,.3);
}
.btn-submit:hover { background: var(--green-600); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(36,92,56,.4); }
.btn-submit:active { transform: translateY(0); }
.form-success {
  display: none; text-align: center; padding: 32px;
  color: var(--green-700);
}
.form-success .check-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--green-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 16px;
  animation: pop-in .4s cubic-bezier(.34,1.56,.64,1);
}
@keyframes pop-in {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}
.map-embed {
  margin-top: 48px; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.map-embed iframe {
  width: 100%; height: 340px; border: none; display: block;
}

/* ── Floating CTA ── */
#floating-cta {
  position: fixed; bottom: 36px; right: 36px; z-index: 800;
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 10px;
}
.floating-btn {
  display: flex; align-items: center; gap: 10px;
  background: var(--green-600); color: #fff;
  font-weight: 700; font-size: .92rem;
  padding: 14px 24px; border-radius: 99px;
  box-shadow: 0 8px 28px rgba(36,92,56,.4);
  animation: float-bob 3s ease-in-out infinite;
  transition: var(--transition);
  white-space: nowrap;
}
.floating-btn:hover {
  background: var(--green-500); transform: scale(1.06);
  box-shadow: 0 12px 36px rgba(36,92,56,.5);
  animation-play-state: paused;
}
.floating-whatsapp {
  background: #25d366; width: 50px; height: 50px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; box-shadow: 0 6px 20px rgba(37,211,102,.4);
  transition: var(--transition);
  animation: float-bob 3s ease-in-out infinite .5s;
}
.floating-whatsapp:hover { transform: scale(1.1); background: #1ebe5d; }
@keyframes float-bob {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ── Footer ── */
#main-footer {
  background: var(--green-900);
  color: rgba(255,255,255,.8);
  padding: 60px 40px 32px;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: #fff; margin: 12px 0 8px;
}
.footer-brand p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.55); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; transition: var(--transition);
}
.social-btn:hover {
  background: var(--green-500); color: #fff;
  transform: translateY(-3px);
}
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  color: #fff; font-size: 1rem; margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .88rem; color: rgba(255,255,255,.55);
  transition: color .25s;
}
.footer-col ul li a:hover { color: var(--green-300); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem; color: rgba(255,255,255,.4);
}
.footer-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06);
  padding: 6px 14px; border-radius: 99px;
  font-size: .75rem; color: rgba(255,255,255,.4);
}

/* ── Testimonials ── */
.testimonials-section { background: var(--green-800); padding: 100px 40px; }
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.testimonials-inner .section-label { color: var(--green-300); }
.testimonials-inner .section-label::before { background: var(--green-300); }
.testimonials-inner .section-title { color: #fff; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.testi-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 32px;
  transition: var(--transition);
}
.testi-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.stars { color: var(--gold-light); font-size: 1rem; margin-bottom: 16px; }
.testi-quote {
  font-size: .95rem; color: rgba(255,255,255,.8);
  line-height: 1.75; font-style: italic; margin-bottom: 20px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--green-400);
}
.testi-author strong { display: block; color: #fff; font-size: .9rem; }
.testi-author span   { font-size: .78rem; color: rgba(255,255,255,.5); }

/* ── Utility Buttons ── */
.btn-green {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-700); color: #fff;
  font-weight: 600; font-size: .95rem;
  padding: 13px 28px; border-radius: 99px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.btn-green:hover { background: var(--green-600); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-green {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--green-700); color: var(--green-700);
  font-weight: 600; font-size: .95rem;
  padding: 13px 28px; border-radius: 99px;
  transition: var(--transition);
}
.btn-outline-green:hover { background: var(--green-700); color: #fff; transform: translateY(-2px); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid { gap: 48px; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2)::after { display: none; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > *:last-child { grid-column: 1 / -1; }
  .masonry-grid { columns: 2; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section-inner { padding: 70px 24px; }
  #main-header  { padding: 12px 20px; }
  #main-header.scrolled { padding: 8px 20px; }
  nav { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-img-accent { bottom: -20px; right: -12px; }
  .about-badge-float { left: -10px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .masonry-grid { columns: 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  #floating-cta { bottom: 20px; right: 20px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .breeds-grid  { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .stat-card::after { display: none; }
}

/* ── 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); }
}

/* ── Page-specific hero backgrounds ── */
.products-hero-bg {
  background:
    linear-gradient(160deg, rgba(13,43,26,.8) 0%, rgba(13,43,26,.5) 100%),
    url('../images/cont.png') center/cover;
}
.gallery-hero-bg {
  background:
    linear-gradient(160deg, rgba(13,43,26,.8) 0%, rgba(13,43,26,.5) 100%),
    url('../images/day\ old\ 3.jpg') center/cover;
}
.contact-hero-bg {
  background:
    linear-gradient(160deg, rgba(13,43,26,.8) 0%, rgba(13,43,26,.5) 100%),
    url('../images/im2.jpeg') center/cover;
}

/* ── Scroll progress bar ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--green-500), var(--gold));
  z-index: 9998; width: 0;
  transition: width .1s linear;
}

/* ── Back to top ── */
#back-to-top {
  position: fixed; bottom: 36px; left: 36px; z-index: 800;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-800); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none;
  transition: var(--transition);
}
#back-to-top.visible { opacity: 1; pointer-events: auto; }
#back-to-top:hover { background: var(--green-600); transform: translateY(-3px); }

/* ── Newsletter strip ── */
.newsletter-strip {
  background: var(--green-700); padding: 56px 40px; text-align: center;
}
.newsletter-strip h2 {
  font-family: 'Playfair Display', serif;
  color: #fff; font-size: 1.8rem; margin-bottom: 8px;
}
.newsletter-strip p { color: rgba(255,255,255,.75); margin-bottom: 24px; }
.newsletter-form {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap; max-width: 480px; margin: 0 auto;
}
.newsletter-form input {
  flex: 1; min-width: 220px; padding: 13px 18px;
  border-radius: 99px; border: none; outline: none;
  font-family: 'DM Sans', sans-serif; font-size: .95rem;
  background: rgba(255,255,255,.15); color: #fff;
  backdrop-filter: blur(8px);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form input:focus { background: rgba(255,255,255,.22); }
.newsletter-form button {
  padding: 13px 28px; border-radius: 99px;
  background: var(--gold); color: var(--green-900);
  font-weight: 700; font-size: .95rem;
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--gold-light); transform: translateY(-2px); }
