/* ═══════════════════════════════════════════════════
   AFRIKA BOERBOELS — Premium Breeder Website
   Design System & Global Styles
   ═══════════════════════════════════════════════════ */

/* ── CSS Custom Properties ── */
:root {
  --crimson: #8B0000;
  --crimson-light: #B22222;
  --crimson-dark: #5C0000;
  --charcoal: #111111;
  --charcoal-mid: #1E1E1E;
  --charcoal-soft: #2D2D2D;
  --ivory: #F7F3EE;
  --ivory-dark: #EDE8E0;
  --gold: #C7A24A;
  --gold-light: #E0C26A;
  --white: #FFFFFF;

  --font-heading: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Playfair Display', serif;

  --container: 1280px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.2);
  --transition-fast: 0.2s ease;
  --transition-mid: 0.35s ease;
  --transition-slow: 0.6s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: 0.03em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: 0.02em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; color: #444; }

.accent-font { font-family: var(--font-accent); font-style: italic; }

/* ── Layout ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.section-dark {
  background: var(--charcoal);
  color: var(--ivory);
}
.section-dark h2, .section-dark h3, .section-dark h4,
.section-dark p { color: var(--ivory); }
.section-dark p { color: rgba(247,243,238,0.8); }

.section-crimson {
  background: var(--crimson);
  color: var(--white);
}
.section-crimson h2, .section-crimson h3, .section-crimson p { color: var(--white); }

.section-ivory { background: var(--ivory); }
.section-ivory-dark { background: var(--ivory-dark); }

/* ── Section Headers ── */
.section-kicker {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  margin-bottom: 1rem;
  position: relative;
}

.section-subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.1rem;
  color: #777;
  max-width: 640px;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-subtitle { margin: 0 auto; }

/* ── Gold Divider ── */
.gold-divider {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem auto;
  display: block;
}
.gold-divider-left {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem 0;
  display: block;
}

/* ── EST Badge ── */
.est-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════
   UTILITY BAR
   ═══════════════════════════════════════════════════ */
.utility-bar {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1001;
}
.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.utility-bar a { color: var(--gold); }
.utility-bar a:hover { color: var(--gold-light); }
.utility-left { display: flex; gap: 1.5rem; align-items: center; }
.utility-left span { display: flex; align-items: center; gap: 0.3rem; }
.utility-right { display: flex; gap: 1.5rem; align-items: center; }
.utility-right a { display: flex; align-items: center; gap: 0.3rem; }
.utility-separator { width: 1px; height: 14px; background: rgba(255,255,255,0.2); }

/* ═══════════════════════════════════════════════════
   MAIN HEADER / NAV
   ═══════════════════════════════════════════════════ */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(17,17,17,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(199,162,74,0.15);
  transition: box-shadow var(--transition-mid);
}
.main-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 2rem;
  max-width: var(--container);
  margin: 0 auto;
}

/* Logo Area */
.logo-area {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}
.logo-area img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.logo-text h2 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: 0.08em;
  margin: 0;
  line-height: 1.3;
}
.logo-tagline {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  position: relative;
  transition: color var(--transition-fast);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-mid);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 70%;
}

/* CTA Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--crimson);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius);
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.btn-cta:hover {
  background: var(--crimson-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(139,0,0,0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 1002;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-mid);
  display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════════════════════
   HERO SECTIONS
   ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,11,11,0.75) 0%, rgba(92,0,0,0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  padding: 2rem;
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-color: var(--charcoal);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,11,11,0.8) 0%, rgba(92,0,0,0.5) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}
.page-hero-content h1 { color: var(--white); margin-bottom: 0.5rem; }

/* Breadcrumb */
.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.75rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { margin: 0 0.5rem; }

/* ═══════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--crimson);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  transition: all var(--transition-fast);
  border: 2px solid var(--crimson);
}
.btn-primary:hover {
  background: var(--crimson-light);
  border-color: var(--crimson-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139,0,0,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  transition: all var(--transition-fast);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  transition: all var(--transition-fast);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(199,162,74,0.3);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  transition: all var(--transition-fast);
}
.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

/* ═══════════════════════════════════════════════════
   TRUST BADGES BAR
   ═══════════════════════════════════════════════════ */
.trust-bar {
  background: var(--charcoal-mid);
  padding: 1.8rem 0;
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid rgba(199,162,74,0.15);
}
.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.trust-badge .badge-icon {
  font-size: 1.8rem;
  color: var(--gold);
}
.trust-badge .badge-text {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

/* ═══════════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════════ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition-mid);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.card:hover .card-image img { transform: scale(1.06); }

.card-body { padding: 1.5rem; }
.card-body h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}
.card-body p { font-size: 0.92rem; color: #666; }

/* Dog Profile Card */
.dog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition-mid);
  border: 1px solid rgba(199,162,74,0.1);
}
.dog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(199,162,74,0.3);
}
.dog-card .card-image {
  aspect-ratio: 1/1;
  position: relative;
}
.dog-card .card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}
.dog-card .dog-name {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.dog-card .card-body { padding: 1.5rem; }
.dog-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--ivory-dark);
}
.dog-stat {
  font-size: 0.82rem;
}
.dog-stat .stat-label {
  color: #999;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.dog-stat .stat-value {
  color: var(--charcoal);
  font-weight: 600;
}

/* Value Proposition Cards */
.value-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  transition: all var(--transition-mid);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.value-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--crimson);
}
.value-card h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.value-card p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* ═══════════════════════════════════════════════════
   GRIDS
   ═══════════════════════════════════════════════════ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

/* ═══════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════ */
.stats-bar {
  background: var(--charcoal);
  padding: 3rem 0;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-item .stat-label {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ═══════════════════════════════════════════════════
   INTERNATIONAL SECTION
   ═══════════════════════════════════════════════════ */
.intl-section {
  position: relative;
  background: var(--charcoal);
  overflow: hidden;
}
.intl-section::before {
  content: '🌍';
  font-size: 20rem;
  position: absolute;
  right: -3rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.03;
}
.region-card {
  background: var(--charcoal-soft);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(199,162,74,0.15);
  transition: all var(--transition-mid);
}
.region-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.region-card .region-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.region-card h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.region-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin: 0;
}

/* ═══════════════════════════════════════════════════
   GALLERY STRIP
   ═══════════════════════════════════════════════════ */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.gallery-strip-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.gallery-strip-item:hover img { transform: scale(1.1); }
.gallery-strip-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(139,0,0,0);
  transition: background var(--transition-mid);
}
.gallery-strip-item:hover::after {
  background: rgba(139,0,0,0.2);
}

/* ═══════════════════════════════════════════════════
   CTA SECTIONS
   ═══════════════════════════════════════════════════ */
.cta-section {
  text-align: center;
  padding: 5rem 2rem;
}
.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-section p {
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 2rem;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════
   TIMELINE
   ═══════════════════════════════════════════════════ */
.timeline {
  position: relative;
  padding: 2rem 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: translateX(-50%);
}
.timeline-item {
  position: relative;
  width: 50%;
  padding: 1.5rem 2.5rem;
}
.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; }
.timeline-item::before {
  content: '';
  position: absolute;
  top: 2rem;
  width: 14px;
  height: 14px;
  background: var(--crimson);
  border: 3px solid var(--gold);
  border-radius: 50%;
}
.timeline-item:nth-child(odd)::before { right: -7px; }
.timeline-item:nth-child(even)::before { left: -7px; }
.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.timeline-text {
  font-size: 0.92rem;
  color: #666;
}

/* ═══════════════════════════════════════════════════
   PROCESS STEPS
   ═══════════════════════════════════════════════════ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  counter-reset: step;
}
.process-step {
  text-align: center;
  position: relative;
  counter-increment: step;
}
.process-step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--crimson);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 3px solid var(--gold);
}
.process-step h4 {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.process-step p {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}

/* ═══════════════════════════════════════════════════
   GALLERY PAGE
   ═══════════════════════════════════════════════════ */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border: 2px solid var(--charcoal-soft);
  border-radius: var(--radius);
  color: var(--charcoal);
  transition: all var(--transition-fast);
  background: transparent;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--crimson);
  border-color: var(--crimson);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '⊕';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  background: rgba(139,0,0,0);
  transition: all var(--transition-mid);
  opacity: 0;
}
.gallery-item:hover::after {
  background: rgba(139,0,0,0.3);
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: pointer;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: 0 0 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: background var(--transition-fast);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════ */
.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  transition: all var(--transition-mid);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.15em;
}
.testimonial-text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.testimonial-author {
  font-weight: 700;
  color: var(--charcoal);
  font-size: 0.9rem;
}
.testimonial-meta {
  font-size: 0.8rem;
  color: #999;
}

/* ═══════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════ */
.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: all var(--transition-fast);
  gap: 1rem;
}
.faq-question:hover { color: var(--crimson); }
.faq-question .faq-icon {
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform var(--transition-mid);
  flex-shrink: 0;
}
.faq-item.active .faq-question { color: var(--crimson); }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-mid);
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.92rem;
  color: #666;
  line-height: 1.7;
}
.faq-category {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--ivory-dark);
}

/* ═══════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199,162,74,0.15);
}
.form-group textarea {
  resize: vertical;
  min-height: 150px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-info-block {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
}
.contact-info-block h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info-item .info-icon {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.contact-info-item .info-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.2rem;
}
.contact-info-item .info-value {
  color: var(--ivory);
  font-size: 0.95rem;
}
.contact-info-item a { color: var(--gold); }
.contact-info-item a:hover { color: var(--gold-light); }

/* Map placeholder */
.map-placeholder {
  width: 100%;
  height: 350px;
  background: var(--charcoal-mid);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  margin-top: 2rem;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
  border-top: 3px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-brand img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--gold);
}
.footer-brand span {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.08em;
}
.footer-col p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  padding: 0.3rem 0;
  transition: all var(--transition-fast);
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 0.3rem;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.85rem;
}
.footer-contact-item .fc-icon { color: var(--gold); flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* ═══════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═══════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition-fast);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2s infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1.3); opacity: 0; }
}
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.78rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ═══════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════════════════
   DECORATIVE ELEMENTS
   ═══════════════════════════════════════════════════ */
.paw-decoration {
  color: rgba(199,162,74,0.08);
  font-size: 8rem;
  position: absolute;
  pointer-events: none;
}

.section-pattern {
  position: relative;
}
.section-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2H0v-2h20v-2H0V8h20V6H0V4h20V2H0V0h22v20h2V0h2v20h2V0h2v20h2V0h2v20h2V0h2v22H20v-1.5zM0 20h2v20H0V20zm4 0h2v20H4V20zm4 0h2v20H8V20zm4 0h2v20h-2V20zm4 0h2v20h-2V20zm4 4h20v2H20v-2zm0 4h20v2H20v-2zm0 4h20v2H20v-2zm0 4h20v2H20v-2z' fill='%23c7a24a' fill-opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Puppy status badges */
.status-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-weight: 700;
}
.status-available { background: #e8f5e9; color: #2e7d32; }
.status-reserved { background: #fff3e0; color: #e65100; }
.status-coming { background: #e3f2fd; color: #1565c0; }

/* Health guarantee badges */
.health-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.health-badge {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid rgba(199,162,74,0.15);
}
.health-badge .hb-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.health-badge h4 {
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}
.health-badge p {
  font-size: 0.8rem;
  color: #888;
  margin: 0;
}

/* Two column content */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.two-col-text h2 { margin-bottom: 1rem; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .grid-4, .stats-grid, .process-steps, .health-badges { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  /* Mobile Nav */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--charcoal);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transition: right var(--transition-mid);
    box-shadow: -4px 0 30px rgba(0,0,0,0.3);
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    display: block;
    padding: 0.85rem 0;
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links .btn-cta {
    margin-top: 1rem;
    text-align: center;
    justify-content: center;
  }

  .utility-bar { display: none; }
  .hero { min-height: 80vh; }
  .page-hero { min-height: 35vh; }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-badges { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .region-card { padding: 1.5rem; }

  /* Timeline mobile */
  .timeline::before { left: 1rem; }
  .timeline-item { width: 100%; left: 0 !important; text-align: left; padding-left: 3rem; padding-right: 1rem; }
  .timeline-item::before { left: 3px !important; right: auto !important; }
}

@media (max-width: 640px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 3.5rem 0; }
  .grid-2, .grid-3, .grid-4, .stats-grid, .trust-badges,
  .process-steps, .health-badges { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .hero-content h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; }
}

/* ═══════════════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════════════ */
@media print {
  .utility-bar, .main-header, .whatsapp-float, .site-footer { display: none; }
  body { color: #000; background: #fff; }
}
