/* ===== CSS Variables & Reset ===== */
:root {
  --color-primary: #3a7bd5;
  --color-primary-dark: #2a5fa8;
  --color-primary-light: #dbe9fa;
  --color-secondary: #4caf82;
  --color-secondary-dark: #3a8f68;
  --color-secondary-light: #e0f5ec;
  --color-accent: #5cc9a7;
  --color-dark: #2c2c2c;
  --color-text: #4a4a4a;
  --color-text-light: #7a7a7a;
  --color-bg: #f8fbff;
  --color-white: #ffffff;
  --color-cream: #f4f9f6;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: var(--transition);
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(58, 123, 213, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* ===== Section Labels ===== */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.section-intro {
  max-width: 600px;
  margin: 0 auto 48px;
  color: var(--color-text-light);
  font-size: 1.05rem;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 1.5rem; }
.logo-svg { flex-shrink: 0; transition: var(--transition); }
.logo-img {
  width: 143px;
  height: 143px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 6px;
}
.footer-logo-img {
  width: 210px;
  height: 210px;
  object-fit: contain;
  border-radius: 4px;
}

.navbar.scrolled .logo-svg ellipse { transition: fill 0.3s ease; }
.navbar.scrolled .logo-svg defs linearGradient stop { transition: stop-color 0.3s ease; }

.logo-text {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-white);
  transition: var(--transition);
  display: block;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-tagline {
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 5.5px;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  display: block;
  text-align: justify;
  text-align-last: justify;
}

.navbar.scrolled .logo-text { color: var(--color-dark); }
.navbar.scrolled .logo-tagline { color: var(--color-text-light); }
.amp { color: var(--color-secondary); font-style: italic; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
}

.navbar.scrolled .nav-links a { color: var(--color-text); }
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active { color: var(--color-primary); }

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
}

.nav-links a:not(.nav-cta):hover::after,
.nav-links a.active:not(.nav-cta)::after { width: 100%; }

.nav-cta {
  background: var(--color-primary);
  color: var(--color-white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 500;
}

.nav-cta:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition);
}

.navbar.scrolled .nav-toggle span { background: var(--color-dark); }

/* ===== Hero (Landing Page) ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(76, 175, 130, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 40%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.4) 35%, rgba(0,0,0,0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 24px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-tagline {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-scroll span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ===== Page Hero (Sub-pages) ===== */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  overflow: hidden;
}

.page-hero-florals {
  background: linear-gradient(135deg, #3a7bd5 0%, #2a5fa8 50%, #5b9ce0 100%);
}

.page-hero-grooming {
  background: linear-gradient(135deg, #4caf82 0%, #3a8f68 50%, #5cc9a7 100%);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.1);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.page-hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

/* ===== Family Story Section ===== */
.family-story {
  padding: 120px 0;
  background: var(--color-white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.story-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-img-frame {
  position: relative;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(58, 123, 213, 0.2),
    0 0 0 6px var(--color-white),
    0 0 0 8px var(--color-primary-light),
    0 0 0 14px var(--color-white),
    0 0 0 16px var(--color-secondary-light);
}

.story-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(58, 123, 213, 0.08), rgba(76, 175, 130, 0.08));
  pointer-events: none;
}

.story-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-secondary-light));
  border-radius: 50%;
}

.story-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-secondary-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.story-text h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--color-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.story-text p {
  margin-bottom: 16px;
  color: var(--color-text-light);
  line-height: 1.8;
}

.story-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid #eee;
}

.value-item { text-align: center; }
.value-icon { font-size: 1.8rem; display: block; margin-bottom: 8px; }

.value-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.value-item p {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* ===== Two Paths Section ===== */
.two-paths {
  padding: 100px 0;
  background: var(--color-cream);
  text-align: center;
}

.paths-header {
  margin-bottom: 48px;
}

.paths-header h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.path-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: left;
  transition: var(--transition);
  display: block;
}

.path-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.path-florals { background: linear-gradient(160deg, #eaf2fd, #dbe9fa, #cde0f7); }
.path-grooming { background: linear-gradient(160deg, #edf9f3, #e0f5ec, #d4f0e5); }

.path-content {
  position: relative;
  z-index: 2;
  padding: 48px 36px;
}

.path-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
}

.path-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.path-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.path-highlights {
  list-style: none;
  margin-bottom: 24px;
}

.path-highlights li {
  padding: 4px 0;
  font-size: 0.9rem;
  color: var(--color-text);
}

.path-highlights li::before {
  content: '✓ ';
  color: var(--color-primary);
  font-weight: 600;
}

.path-grooming .path-highlights li::before {
  color: var(--color-secondary);
}

.path-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-primary);
  transition: var(--transition);
}

.path-grooming .path-link { color: var(--color-secondary-dark); }

.path-card:hover .path-link { letter-spacing: 1px; }

/* ===== Stats Bar ===== */
.stats-bar {
  padding: 64px 0;
  background: var(--color-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-primary-light);
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Services (shared) ===== */
.services,
.services-preview {
  padding: 100px 0;
  text-align: center;
  background: var(--color-white);
}

.services h2,
.services-preview h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.services-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: #1e3a5f;
  border-radius: var(--radius);
  padding: 48px 32px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 40px rgba(30, 58, 95, 0.4);
}

.card-icon { font-size: 3rem; margin-bottom: 20px; display: none; }

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 14px;
}

.service-card p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-price {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(76, 175, 130, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(76, 175, 130, 0.5);
}

/* ===== How It Works ===== */
.how-it-works {
  padding: 100px 0;
  background: var(--color-cream);
  text-align: center;
}

.how-it-works h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-dark);
  margin-bottom: 48px;
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  flex: 1;
  padding: 0 24px;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.step p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary-light), var(--color-primary));
  flex-shrink: 0;
  margin-top: -40px;
}

/* ===== Breeds Section ===== */
.breeds-section {
  padding: 100px 0;
  background: var(--color-cream);
  text-align: center;
}

.breeds-section h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.breeds-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
}

.breed-tag {
  padding: 10px 24px;
  background: var(--color-white);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-secondary-dark);
  border: 1px solid var(--color-secondary-light);
  transition: var(--transition);
}

.breed-tag:hover {
  background: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
  transform: translateY(-2px);
}

/* ===== Gallery ===== */
.gallery {
  padding: 100px 0;
  background: var(--color-white);
  text-align: center;
}

.gallery h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-dark);
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.gallery-item:hover { transform: scale(1.02); }

.gallery-placeholder {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.gallery-placeholder span { font-size: 3rem; }

.gallery-placeholder p {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
}

/* ===== CTA Banner ===== */
.cta-banner {
  padding: 80px 0;
  text-align: center;
}

.cta-florals {
  background: linear-gradient(135deg, #3a7bd5, #2a5fa8);
}

.cta-grooming {
  background: linear-gradient(135deg, #4caf82, #3a8f68);
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.cta-banner .btn-primary {
  background: var(--color-white);
  color: var(--color-primary-dark);
}

.cta-banner .btn-primary:hover {
  background: var(--color-cream);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ===== Testimonials ===== */
.testimonials {
  padding: 100px 0;
  background: var(--color-cream);
  text-align: center;
}

.testimonials h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-dark);
  margin-bottom: 48px;
}

.testimonials-slider {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  min-height: 220px;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  pointer-events: none;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.stars {
  color: var(--color-secondary);
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 4px;
}

.testimonial-text {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 24px;
}

.author-name {
  display: block;
  font-weight: 600;
  color: var(--color-dark);
}

.author-role {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  transition: var(--transition);
}

.dot.active {
  background: var(--color-primary);
  transform: scale(1.2);
}

/* ===== Contact ===== */
.contact {
  padding: 100px 0;
  background: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-info > p {
  color: var(--color-text-light);
  margin-bottom: 32px;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.92);
  padding: 18px 20px;
  border-radius: var(--radius);
  border-left: 3px solid var(--color-primary);
  transition: var(--transition);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.97);
  transform: translateX(4px);
}

.contact-icon { font-size: 1.6rem; }

.contact-item strong {
  display: block;
  color: var(--color-dark);
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.contact-item p {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.5;
}

.contact-item a {
  color: var(--color-primary);
  font-weight: 600;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.contact-form-wrapper {
  background: #1e3a5f;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-group { margin-bottom: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #ffffff;
  transition: var(--transition);
  background: rgba(255,255,255,0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.form-group select {
  color: rgba(255,255,255,0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4caf82;
  box-shadow: 0 0 0 3px rgba(76, 175, 130, 0.2);
}

.form-group textarea { resize: vertical; }

.contact-form .btn-primary {
  margin-top: 8px;
  font-size: 1rem;
  padding: 16px;
}

/* ===== Footer ===== */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-text {
  color: var(--color-white);
  display: inline;
  margin-left: 12px;
}

.footer-brand {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.footer-brand p { font-size: 0.9rem; margin-top: 12px; width: 100%; }

.footer-links h4,
.footer-social h4 {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  padding: 4px 0;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--color-primary-light); }

.social-icons { display: flex; gap: 16px; }

.social-icons a {
  font-size: 1.3rem;
  transition: var(--transition);
}

.social-icons a:hover { transform: scale(1.2); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
  }

  .nav-links.open { right: 0; }
  .nav-links a { color: var(--color-text) !important; font-size: 1rem; }

  .hero h1 { font-size: 2.2rem; }
  .hero-description { font-size: 1rem; }

  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-img-frame { width: 280px; height: 280px; }
  .story-values { grid-template-columns: repeat(3, 1fr); gap: 16px; }

  .paths-grid { grid-template-columns: 1fr; }
  .path-content { padding: 32px 24px; }

  .services-grid,
  .services-grid-2 { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }

  .steps-grid { flex-direction: column; gap: 24px; }
  .step-connector { width: 2px; height: 30px; margin-top: 0; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrapper { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .story-values { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr; }
}

/* ===== Toast Notifications ===== */
.toast-notification {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  max-width: 420px;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.9rem;
  line-height: 1.5;
}

.toast-notification.toast-visible {
  opacity: 1;
  transform: translateX(0);
}

.toast-success {
  border-left: 4px solid var(--color-secondary);
}

.toast-error {
  border-left: 4px solid #e74c3c;
}

.toast-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.toast-message {
  flex: 1;
  color: var(--color-text);
}

.toast-close {
  font-size: 1.3rem;
  color: var(--color-text-light);
  padding: 0 4px;
  transition: var(--transition);
  flex-shrink: 0;
  line-height: 1;
}

.toast-close:hover {
  color: var(--color-dark);
}

@media (max-width: 480px) {
  .toast-notification {
    top: auto;
    bottom: 24px;
    right: 16px;
    left: 16px;
    max-width: none;
    transform: translateY(100%);
  }

  .toast-notification.toast-visible {
    transform: translateY(0);
  }
}

/* ===== Content Protection ===== */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

/* Allow selection in form fields */
input, textarea, select {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

/* Prevent image saving on mobile */
img {
  -webkit-touch-callout: none;
  pointer-events: none;
}

/* ===== Coming Soon Overlay ===== */
.coming-soon-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3a7bd5 0%, #2a5fa8 30%, #4caf82 70%, #3a8f68 100%);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.coming-soon-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.coming-soon-content {
  text-align: center;
  padding: 40px;
  max-width: 560px;
}

.coming-soon-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  margin: 24px 0 12px;
  letter-spacing: -1px;
}

.coming-soon-subtitle {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}

.coming-soon-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 32px;
}

.coming-soon-close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 2.2rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  z-index: 2;
  line-height: 1;
}

.coming-soon-close:hover {
  color: var(--color-white);
  transform: scale(1.15);
}

.coming-soon-overlay .btn-primary {
  background: var(--color-white);
  color: var(--color-primary-dark);
  padding: 16px 36px;
  font-size: 1rem;
}

.coming-soon-overlay .btn-primary:hover {
  background: var(--color-cream);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

/* ===== Coming Soon Code Input ===== */
.cs-preview {
  margin-top: 32px;
}

.cs-preview-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}

.cs-code-input {
  display: flex;
  gap: 10px;
  justify-content: center;
  max-width: 360px;
  margin: 0 auto;
}

.cs-code-input input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
  font-size: 0.95rem;
  font-family: var(--font-body);
  text-align: center;
  letter-spacing: 2px;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}

.cs-code-input input::placeholder {
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
}

.cs-code-input input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.15);
}

.cs-code-input .btn {
  padding: 14px 24px;
  white-space: nowrap;
}

.cs-error {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #ffb3b3;
  font-weight: 500;
}

@keyframes csShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

@media (max-width: 480px) {
  .cs-code-input {
    flex-direction: column;
    gap: 12px;
  }
}

/* ===== Contact Links ===== */
.contact-item a {
  color: var(--color-primary);
  font-weight: 500;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

/* ===== Captcha Checkbox ===== */
.captcha-check {
  margin-bottom: 20px;
  padding: 14px 18px;
  background: var(--color-bg);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
}

.captcha-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--color-dark);
  -webkit-user-select: none;
  user-select: none;
}

.captcha-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.captcha-checkbox {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border: 2px solid #ccc;
  border-radius: 4px;
  position: relative;
  transition: all 0.2s ease;
}

.captcha-label input:checked + .captcha-checkbox {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.captcha-label input:checked + .captcha-checkbox::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
}

.captcha-label input:focus-visible + .captcha-checkbox {
  box-shadow: 0 0 0 3px rgba(58, 123, 213, 0.25);
}

.captcha-text {
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ===== Footer Text Group ===== */
.footer-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer-tagline {
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 5.5px;
  color: rgba(255,255,255,0.5);
  display: block;
  text-align: justify;
  text-align-last: justify;
  padding-left: 12px;
}

/* ===== Section Separator Borders ===== */
.family-story,
.services-preview,
.breeds-section,
.gallery,
.stats-bar,
.contact {
  border-top: 3px solid;
  border-image: linear-gradient(to right, #3a7bd5, #4caf82) 1;
}

/* ===== Services Section Background Image ===== */
.services-preview {
  position: relative;
  background: url('images/image_a557f66f.png') center/cover no-repeat fixed;
}

.services-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.82);
}

.services-preview .container {
  position: relative;
  z-index: 2;
}

/* ===== Family Story Section Background Image ===== */
.family-story {
  position: relative;
  background: url('images/image_d07c0257.png') center/cover no-repeat fixed;
}

.family-story::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.82);
}
.family-story .container {
  position: relative;
  z-index: 2;
}

/* ===== Contact Section Background Image ===== */
.contact {
  position: relative;
  background: url('images/image_1d775b26.png') center/cover no-repeat fixed;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.82);
}

.contact .container {
  position: relative;
  z-index: 2;
}

/* ===== Breeds Section Background Image ===== */
.gallery {
  position: relative;
  background: url('images/image_57e878c8.png') center/cover no-repeat fixed;
}

.gallery::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.82);
}

.gallery .container {
  position: relative;
  z-index: 2;
}

/* ===== Breeds Section Background Image ===== */
.breeds-section {
  position: relative;
  background: url('images/image_dada0e0f.png') center/cover no-repeat fixed;
}

.breeds-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.82);
}

.breeds-section .container {
  position: relative;
  z-index: 2;
}

/* ===== Coming Soon Toggle Code Button ===== */
.cs-toggle-code {
  margin-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cs-toggle-code:hover {
  color: rgba(255,255,255,0.8);
}

/* ===== Services Discount Tagline ===== */
.services-discount {
  margin-top: 16px;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--color-text-light);
}

/* ===== iOS/Mobile Fix for Background Images ===== */
@supports (-webkit-touch-callout: none) {
  .hero-slide,
  .services-preview,
  .family-story,
  .contact,
  .gallery,
  .breeds-section {
    background-attachment: scroll !important;
  }
}

@media (max-width: 1024px) {
  .hero-slide {
    background-attachment: scroll !important;
  }
  .services-preview {
    background-attachment: scroll !important;
  }
  .family-story {
    background-attachment: scroll !important;
  }
  .contact {
    background-attachment: scroll !important;
  }
  .gallery {
    background-attachment: scroll !important;
  }
  .breeds-section {
    background-attachment: scroll !important;
  }
}
