/* ===============================================
   FLUFFY MINI COWS FARM — Global Styles
   =============================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Lato:wght@300;400;700&family=Dancing+Script:wght@700&display=swap');

/* ── CSS Variables ── */
:root {
  --cream:       #fdf6e3;
  --warm-white:  #fff8f0;
  --brown-dark:  #3d1f00;
  --brown-mid:   #6b3a1f;
  --brown-light: #a0622a;
  --gold:        #c9913d;
  --gold-light:  #f5d08a;
  --green:       #4a7c59;
  --green-light: #8ab89a;
  --pink:        #f4a7b9;
  --pink-dark:   #e07a97;
  --text-dark:   #2c1a00;
  --text-mid:    #5a3a1a;
  --text-light:  #8b6040;
  --shadow-sm:   0 2px 12px rgba(61,31,0,.1);
  --shadow-md:   0 6px 30px rgba(61,31,0,.15);
  --shadow-lg:   0 16px 60px rgba(61,31,0,.2);
  --radius:      16px;
  --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: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ── Keyframe Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.85); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse-ring {
  0%   { transform: scale(.9); box-shadow: 0 0 0 0 rgba(201,145,61,.5); }
  70%  { transform: scale(1);  box-shadow: 0 0 0 20px rgba(201,145,61,0); }
  100% { transform: scale(.9); box-shadow: 0 0 0 0 rgba(201,145,61,0); }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes bounce-in {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.1); }
  80%  { transform: scale(0.95); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}
@keyframes typewriter {
  from { width: 0; }
  to   { width: 100%; }
}
@keyframes blink {
  50% { border-color: transparent; }
}
@keyframes heartbeat {
  0%,100% { transform: scale(1); }
  14%  { transform: scale(1.15); }
  28%  { transform: scale(1); }
  42%  { transform: scale(1.15); }
  70%  { transform: scale(1); }
}

/* ── Utility Classes ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,145,61,.12);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--brown-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--gold); }
.section-subtitle {
  font-size: 1.08rem;
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto 50px;
}
.text-center { text-align: center; }
.animate-on-scroll {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .6s ease, transform .6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.btn:hover::after { transform: scaleX(1); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--brown-light));
  color: #fff;
  box-shadow: 0 6px 24px rgba(201,145,61,.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(201,145,61,.5);
}
.btn-secondary {
  background: transparent;
  color: var(--brown-dark);
  border: 2.5px solid var(--brown-dark);
}
.btn-secondary:hover {
  background: var(--brown-dark);
  color: #fff;
  transform: translateY(-3px);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2.5px solid rgba(255,255,255,.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  transform: translateY(-3px);
}
.btn-pink {
  background: linear-gradient(135deg, var(--pink-dark), #c45a7a);
  color: #fff;
  box-shadow: 0 6px 24px rgba(228,122,151,.35);
}
.btn-pink:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(228,122,151,.5);
}

/* ════════════════════════
   NAVIGATION
════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(253,246,227,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--warm-white);
  padding: 2px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.nav-logo img:hover { transform: rotate(-8deg) scale(1.08); }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brown-dark);
  line-height: 1.2;
}
.logo-text span { color: var(--gold); display: block; font-size: .78rem; font-family: 'Lato', sans-serif; font-weight: 400; letter-spacing: .06em; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-weight: 700;
  font-size: .9rem;
  color: var(--brown-dark);
  padding: 8px 16px;
  border-radius: 50px;
  letter-spacing: .03em;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: width .3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 60%; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { margin-left: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}
.hamburger span {
  display: block;
  width: 26px; height: 2.5px;
  background: var(--brown-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: rgba(253,246,227,.98);
  backdrop-filter: blur(16px);
  padding: 24px;
  box-shadow: var(--shadow-md);
  z-index: 999;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-20px);
  opacity: 0;
  transition: var(--transition);
}
.mobile-nav.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.mobile-nav a {
  font-weight: 700;
  font-size: 1rem;
  color: var(--brown-dark);
  padding: 14px 18px;
  border-radius: 12px;
  transition: var(--transition);
}
.mobile-nav a:hover { background: rgba(201,145,61,.1); color: var(--gold); }

/* ════════════════════════
   HERO SECTION
════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2c1a00 0%, #5a3a1a 40%, #3d1f00 100%);
  background-size: 300% 300%;
  animation: gradientShift 12s ease infinite;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(201,145,61,.3);
  animation: float 6s ease-in-out infinite;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("../images/hero-bg-pattern.svg") center/cover,
              radial-gradient(ellipse at 70% 50%, rgba(201,145,61,.15) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 120px 0 60px;
}
.hero-text .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,145,61,.2);
  border: 1px solid rgba(201,145,61,.4);
  color: var(--gold-light);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeInLeft 1s ease .2s both;
}
.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInLeft 1s ease .4s both;
}
.hero-text h1 span {
  background: linear-gradient(90deg, var(--gold-light), var(--pink), var(--gold-light));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
.hero-text p {
  color: rgba(255,255,255,.82);
  font-size: 1.08rem;
  margin-bottom: 36px;
  animation: fadeInLeft 1s ease .6s both;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInLeft 1s ease .8s both;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  animation: fadeInLeft 1s ease 1s both;
}
.stat {
  text-align: center;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold-light);
  display: block;
}
.stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-image-wrap {
  position: relative;
  animation: fadeInRight 1s ease .5s both;
}
.hero-image-card {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: float 5s ease-in-out infinite;
}
.hero-image-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.hero-badge-float {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: .85rem;
  color: var(--brown-dark);
  animation: bounce-in .6s ease forwards;
}
/* ════════════════════════
   FLOATING DECORATIONS
════════════════════════ */
.floating-hearts {
  position: absolute;
  pointer-events: none;
  font-size: 1.4rem;
  animation: float 4s ease-in-out infinite;
  opacity: .6;
}

/* ════════════════════════
   BREED CARDS
════════════════════════ */
.breeds-section {
  padding: 100px 0;
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}
.breeds-section::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,145,61,.1) 0%, transparent 70%);
  border-radius: 50%;
}
.breeds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
  margin-top: 16px;
}
.breed-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
.breed-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.breed-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .5s ease;
}
.breed-card:hover .breed-card-img { transform: scale(1.06); }
.breed-card-img-placeholder {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.breed-card-body { padding: 20px 22px 24px; }
.breed-tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.breed-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.22rem;
  color: var(--brown-dark);
  margin-bottom: 8px;
}
.breed-card p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 18px;
}
.breed-traits {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.trait-pill {
  font-size: .72rem;
  font-weight: 700;
  background: rgba(201,145,61,.1);
  color: var(--brown-mid);
  padding: 4px 10px;
  border-radius: 50px;
}
.breed-card .btn {
  width: 100%;
  justify-content: center;
  padding: 11px 20px;
  font-size: .88rem;
}

/* ════════════════════════
   CTA SECTION
════════════════════════ */
.cta-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--brown-dark), var(--brown-mid));
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '🐄';
  position: absolute;
  font-size: 18rem;
  opacity: .05;
  top: -40px; right: -40px;
  line-height: 1;
}
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 16px;
}
.cta-section h2 span { color: var(--gold-light); }
.cta-section p { color: rgba(255,255,255,.8); max-width: 540px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════
   PAYMENT METHODS
════════════════════════ */
.payment-section {
  padding: 80px 0;
  background: var(--cream);
}
.payment-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.payment-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  font-weight: 700;
  font-size: .95rem;
  color: var(--brown-dark);
}
.payment-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.payment-card .pay-icon { font-size: 1.8rem; }

/* ════════════════════════
   TESTIMONIALS
════════════════════════ */
.testimonials-section {
  padding: 100px 0;
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--gold-light);
  position: absolute;
  top: -10px; left: 18px;
  line-height: 1;
  opacity: .4;
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 1.1rem;
}
.testimonial-card p {
  font-size: .95rem;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brown-dark);
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  font-size: .95rem;
  color: var(--brown-dark);
}
.author-location {
  font-size: .8rem;
  color: var(--text-light);
}

/* ════════════════════════
   TRUST BADGES
════════════════════════ */
.trust-section {
  padding: 60px 0;
  background: linear-gradient(90deg, rgba(201,145,61,.06), rgba(244,167,185,.06), rgba(201,145,61,.06));
}
.trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--text-mid);
}
.trust-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--brown-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 16px rgba(201,145,61,.3);
}

/* ════════════════════════
   FOOTER
════════════════════════ */
footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,.8);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 50px;
}
.footer-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-brand .logo-wrap img {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--warm-white);
  padding: 2px;
}
.footer-brand .logo-wrap h3 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.1rem;
}
.footer-brand p { font-size: .9rem; line-height: 1.8; }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.social-btn {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--gold);
  transform: translateY(-4px);
}
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0;
  width: 30px; height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .9rem;
  transition: color .25s ease;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: .9rem;
  margin-bottom: 12px;
}
.footer-contact-item .cf-icon { font-size: 1rem; flex-shrink: 0; color: var(--gold); }
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-bottom: 28px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .84rem;
}
.footer-bottom a { transition: color .25s ease; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ════════════════════════
   PAGE HERO (inner pages)
════════════════════════ */
.page-hero {
  padding: 150px 0 80px;
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-mid) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 14px;
}
.page-hero h1 span { color: var(--gold-light); }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.08rem; max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ════════════════════════
   ABOUT PAGE
════════════════════════ */
.about-intro {
  padding: 90px 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  border-radius: 24px;
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--brown-light));
  color: #fff;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-img-badge .number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  display: block;
}
.about-img-badge .label { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.mission-section {
  padding: 90px 0;
  background: var(--warm-white);
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 50px;
}
.mission-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.mission-icon {
  width: 70px; height: 70px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--gold-light), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(201,145,61,.25);
}
.mission-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--brown-dark);
  margin-bottom: 10px;
}
.mission-card p { font-size: .9rem; color: var(--text-mid); }

.cert-section {
  padding: 80px 0;
  background: var(--cream);
}
.cert-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 16px 24px;
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  font-size: .9rem;
  color: var(--brown-dark);
  transition: var(--transition);
}
.cert-badge:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cert-badge .cert-icon { font-size: 1.6rem; }

/* ════════════════════════
   COWS GALLERY PAGE
════════════════════════ */
.cows-section {
  padding: 60px 0 100px;
  background: var(--cream);
}
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid rgba(107,58,31,.2);
  background: #fff;
  color: var(--text-mid);
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201,145,61,.35);
}
.cows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.cow-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.cow-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.cow-card-img-wrap { position: relative; overflow: hidden; }
.cow-card-img-wrap img, .cow-card-img-wrap .img-placeholder {
  width: 100%; height: 240px; object-fit: cover;
  transition: transform .5s ease;
}
.cow-card-img-wrap .img-placeholder {
  display: flex; align-items: center; justify-content: center; font-size: 5rem;
}
.cow-card:hover .cow-card-img-wrap img { transform: scale(1.06); }
.cow-status-badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.status-available { background: #22c55e; color: #fff; }
.status-reserved  { background: #f59e0b; color: #fff; }
.cow-card-body { padding: 20px 22px 24px; }
.cow-breed-tag {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.cow-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--brown-dark); margin-bottom: 6px;
}
.cow-meta {
  display: flex; gap: 16px; margin-bottom: 12px;
  font-size: .85rem; color: var(--text-light);
}
.cow-meta span { display: flex; align-items: center; gap: 4px; }
.cow-card p { font-size: .88rem; color: var(--text-mid); margin-bottom: 16px; }
.cow-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--brown-dark); margin-bottom: 16px;
}
.cow-price span { font-size: .85rem; font-family: 'Lato', sans-serif; font-weight: 400; color: var(--text-light); }

/* ════════════════════════
   ADOPTION PAGE
════════════════════════ */
.adoption-section {
  padding: 80px 0 100px;
  background: var(--cream);
}
.adoption-steps {
  position: relative;
  margin-top: 16px;
}
.adoption-steps::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--pink));
  transform: translateX(-50%);
}
.adoption-step {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 60px;
}
.adoption-step:nth-child(even) .step-content { grid-column: 3; }
.adoption-step:nth-child(even) .step-empty   { grid-column: 1; grid-row: 1; }
.adoption-step:nth-child(even) .step-center  { grid-column: 2; grid-row: 1; }
.step-center {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.step-number {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--brown-light));
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201,145,61,.4);
  animation: pulse-ring 2.5s ease infinite;
}
.step-content {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.step-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.step-icon { font-size: 2rem; margin-bottom: 12px; }
.step-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--brown-dark);
  margin-bottom: 10px;
}
.step-content p { font-size: .93rem; color: var(--text-mid); }
.adoption-cta {
  text-align: center;
  margin-top: 70px;
  padding: 60px;
  background: linear-gradient(135deg, var(--brown-dark), var(--brown-mid));
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}
.adoption-cta::before {
  content: '🐄';
  position: absolute;
  font-size: 12rem;
  opacity: .06;
  bottom: -20px; right: 20px;
}
.adoption-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 14px;
}
.adoption-cta p { color: rgba(255,255,255,.8); margin-bottom: 28px; }

/* ════════════════════════
   CONTACT PAGE
════════════════════════ */
.contact-section {
  padding: 70px 0 100px;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: linear-gradient(135deg, var(--brown-dark), var(--brown-mid));
  border-radius: 24px;
  padding: 42px;
  color: #fff;
  position: sticky;
  top: 100px;
}
.contact-info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.contact-info-card > p { color: rgba(255,255,255,.8); margin-bottom: 32px; font-size: .95rem; }
.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail-info label {
  font-size: .75rem; text-transform: uppercase;
  letter-spacing: .08em; color: var(--gold-light); font-weight: 700;
  display: block; margin-bottom: 2px;
}
.contact-detail-info span { font-size: .95rem; }
.contact-social { margin-top: 32px; }
.contact-social h4 { font-size: .9rem; margin-bottom: 14px; color: rgba(255,255,255,.7); }
.contact-social .social-row { display: flex; gap: 10px; }

.contact-form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 42px;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--brown-dark);
  margin-bottom: 8px;
}
.contact-form-wrap > p { color: var(--text-mid); margin-bottom: 30px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label.field-label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 7px;
  letter-spacing: .03em;
}
input[type="text"], input[type="email"], input[type="tel"],
select, textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid rgba(107,58,31,.15);
  border-radius: 12px;
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201,145,61,.12);
}
textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; padding: 16px; font-size: 1rem; margin-top: 8px; }
.form-success {
  display: none;
  background: rgba(34,197,94,.1);
  border: 1.5px solid rgba(34,197,94,.3);
  border-radius: 12px;
  padding: 16px 20px;
  color: #15803d;
  font-weight: 700;
  margin-top: 16px;
  text-align: center;
}

.faq-section {
  padding: 80px 0;
  background: var(--warm-white);
}
.faq-list { max-width: 760px; margin: 40px auto 0; }
.faq-item {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: .98rem;
  color: var(--brown-dark);
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(201,145,61,.12);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform .3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  font-size: .93rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}

/* ════════════════════════
   MAP EMBED
════════════════════════ */
.map-section {
  padding: 20px 0 80px;
  background: var(--cream);
}
.map-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 380px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ════════════════════════
   SCROLL TO TOP
════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--brown-light));
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 900;
  transition: var(--transition);
}
.scroll-top.visible { display: flex; animation: bounce-in .4s ease; }
.scroll-top:hover { transform: translateY(-4px) scale(1.08); }

/* ════════════════════════
   RESPONSIVE
════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { order: -1; }
  .hero-image-card img { height: 300px; }
  .hero-stats { gap: 20px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .adoption-steps::before { left: 30px; }
  .adoption-step { grid-template-columns: 60px 1fr; gap: 16px; }
  .adoption-step .step-empty { display: none; }
  .adoption-step:nth-child(even) .step-content { grid-column: 2; }
  .adoption-step:nth-child(even) .step-empty   { display: none; }
  .adoption-step:nth-child(even) .step-center  { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-text h1 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }
}

/* ════════════════════════
   FLOATING ACTION BUTTONS (PROFESSIONAL WIDGETS)
════════════════════════ */
.floating-btns { position:fixed; bottom:30px; z-index:9990; display:flex; flex-direction:column; gap:16px; }
.floating-btns.left  { left:30px; }
.floating-btns.right { right:30px; }

.float-btn {
  height:60px; border-radius:30px;
  display:flex; align-items:center; justify-content:center; gap:12px;
  padding:0 24px; cursor:pointer; border:none; text-decoration:none;
  box-shadow:0 8px 30px rgba(0,0,0,.15);
  transition:transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s ease;
  overflow:hidden; position:relative;
}
.float-btn::after {
  content:attr(data-label);
  font-family:'Lato',sans-serif;
  font-size:1.05rem; font-weight:700; color:#fff;
  white-space:nowrap;
  display:block;
}

.float-btn:hover { transform:translateY(-5px); box-shadow:0 12px 40px rgba(0,0,0,.25); }
.float-btn.whatsapp { background:#25D366; }
.float-btn.livechat  { background:linear-gradient(135deg,#1d8cf8,#0052cc); }
.float-btn svg { filter:drop-shadow(0 2px 4px rgba(0,0,0,.1)); }

@media(max-width:600px){
  .floating-btns.left{ left:16px; bottom:20px; }
  .floating-btns.right{ right:16px; bottom:20px; }
  .float-btn{ height:50px; padding:0 20px; border-radius:25px; gap:8px; }
  .float-btn::after { font-size:.9rem; }
  .float-btn.whatsapp svg { width:24px; height:24px; }
  .float-btn.livechat svg { width:20px; height:20px; }
}
