/* ==========================================================================
   HAPPY TAILS FRENCHIES - MODERN LUXURY BREEDER DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Color Palette */
  --coral: #F0635A;
  --coral-hover: #e04f46;
  --coral-light: rgba(240, 99, 90, 0.12);
  
  --teal: #00A896;
  --teal-hover: #028e7f;
  --teal-light: rgba(0, 168, 150, 0.12);
  
  --gold: #EEB14B;
  --gold-hover: #d99c36;
  --gold-light: rgba(238, 177, 75, 0.15);

  --blue-accent: #4A90E2;
  --green-whatsapp: #25D366;
  --green-whatsapp-hover: #20b858;

  --dark: #23272A;
  --text-main: #33383F;
  --text-muted: #6B7480;
  --text-light: #9AA2AC;
  
  --bg-page: #F8FAFD;
  --bg-section-alt: #F2F5FA;
  --bg-card: #FFFFFF;
  --footer-bg: #383B40;
  --footer-bottom-bg: #2B2D31;

  --border-color: #E8EDF5;
  --border-light: #F0F4F8;

  /* Shadows */
  --shadow-xs: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 15px 35px rgba(240, 99, 90, 0.18);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Layout */
  --max-width: 1240px;
  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-page);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.25;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  display: inline-block;
  position: relative;
  margin-bottom: 14px;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 5px;
  border-radius: 4px;
  margin: 12px auto 0;
}

.section-title.accent-coral::after { background: var(--coral); }
.section-title.accent-teal::after { background: var(--teal); }
.section-title.accent-gold::after { background: var(--gold); }

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* Decorative Background Watermarks */
.has-bg-paw {
  position: relative;
  overflow: hidden;
}

.has-bg-paw::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 280px;
  height: 280px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300a896' fill-opacity='0.04'%3E%3Cpath d='M12 10.5c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3zm6.5 2c1.38 0 2.5-1.12 2.5-2.5S19.88 7.5 18.5 7.5 16 8.62 16 10s1.12 2.5 2.5 2.5zm-13 0C6.88 12.5 8 11.38 8 10S6.88 7.5 5.5 7.5 3 8.62 3 10s1.12 2.5 2.5 2.5zm6.5 2.5c-3.07 0-6.18 1.48-6.9 4.3-.23.89.44 1.7 1.36 1.7h11.08c.92 0 1.59-.81 1.36-1.7-.72-2.82-3.83-4.3-6.9-4.3z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

.has-bg-paw.paw-left::before {
  left: -40px;
  right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-coral {
  background-color: var(--coral);
  color: #ffffff;
}
.btn-coral:hover {
  background-color: var(--coral-hover);
  box-shadow: 0 8px 20px rgba(240, 99, 90, 0.35);
}

.btn-teal {
  background-color: var(--teal);
  color: #ffffff;
}
.btn-teal:hover {
  background-color: var(--teal-hover);
  box-shadow: 0 8px 20px rgba(0, 168, 150, 0.35);
}

.btn-gold {
  background-color: var(--gold);
  color: #ffffff;
}
.btn-gold:hover {
  background-color: var(--gold-hover);
  box-shadow: 0 8px 20px rgba(238, 177, 75, 0.35);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--border-color);
  color: var(--text-main);
}
.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  height: 70px;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--dark);
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--coral), #ff7b73);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(240, 99, 90, 0.3);
}

.logo-brand .brand-house,
.logo-brand .brand-frenchies {
  color: var(--teal);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  color: var(--text-main);
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--coral);
  transition: width 0.25s ease;
  border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
  color: var(--coral);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hamburger-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--dark);
  background: none;
  cursor: pointer;
  padding: 8px;
}

/* Mobile Drawer Menu */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  z-index: 1050;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.mobile-drawer-close {
  font-size: 1.6rem;
  color: var(--text-muted);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-nav-link.active, .mobile-nav-link:hover {
  color: var(--coral);
}

.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 70px 0 60px;
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(0, 168, 150, 0.06), transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(240, 99, 90, 0.05), transparent 40%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: var(--teal-light);
  color: var(--teal);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.hero-headline {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
}

.hero-headline .rotator-wrapper {
  color: var(--teal);
  display: inline-block;
  min-width: 220px;
  position: relative;
}

.rotator-text {
  display: inline-block;
  font-weight: 900;
  animation: fadeInDown 0.5s ease forwards;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 34px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
}

.organic-blob-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border: 8px solid #ffffff;
  transition: all 0.5s ease;
  aspect-ratio: 4/3;
}

.organic-blob-frame:hover {
  border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
  transform: scale(1.02);
}

.organic-blob-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-floating-badge {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: #ffffff;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: 5px solid var(--coral);
  animation: floatSlow 4s ease-in-out infinite;
}

.floating-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--coral-light);
  color: var(--coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.floating-badge-text strong {
  display: block;
  color: var(--dark);
  font-size: 1rem;
}

.floating-badge-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   BENEFIT / HIGHLIGHT CARDS (3-COLUMN)
   ========================================================================== */
.benefits-section {
  padding: 50px 0 80px;
}

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

.benefit-card {
  background: var(--bg-card);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

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

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.benefit-card.card-coral::before { background: var(--coral); }
.benefit-card.card-teal::before { background: var(--teal); }
.benefit-card.card-gold::before { background: var(--gold); }

.benefit-icon-wrapper {
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.benefit-card.card-coral .benefit-icon-wrapper { background: var(--coral-light); color: var(--coral); }
.benefit-card.card-teal .benefit-icon-wrapper { background: var(--teal-light); color: var(--teal); }
.benefit-card.card-gold .benefit-icon-wrapper { background: var(--gold-light); color: var(--gold); }

.benefit-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   ABOUT US TEASER & SECTION
   ========================================================================== */
.about-teaser-section {
  padding: 90px 0;
  background-color: var(--bg-section-alt);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-media-wrapper {
  position: relative;
}

.about-image-blob {
  border-radius: 58% 42% 48% 52% / 48% 54% 46% 52%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #ffffff;
  position: relative;
}

.about-image-blob img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-play-overlay:hover {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--coral);
  color: #fff;
}

.about-content h2 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.about-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stat-item strong {
  font-size: 2rem;
  font-family: var(--font-heading);
  color: var(--dark);
  display: block;
}

.stat-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-cta-group {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

/* ==========================================================================
   OUR PUPPIES SECTION & GALLERY (BUBBLE & GRID VIEWS)
   ========================================================================== */
.puppies-showcase-section {
  padding: 90px 0;
  position: relative;
}

/* Filter Controls */
.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.filter-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-tag {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  background-color: var(--bg-card);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-tag:hover, .filter-tag.active {
  background-color: var(--coral);
  color: #ffffff;
  border-color: var(--coral);
  box-shadow: 0 4px 12px rgba(240, 99, 90, 0.25);
}

.view-toggle-btns {
  display: flex;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  padding: 4px;
}

.view-btn {
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.view-btn.active {
  background-color: var(--teal);
  color: #ffffff;
}

/* Bubble Layout Mode */
.puppies-bubble-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  margin-bottom: 40px;
}

.puppy-bubble-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.puppy-bubble-item:hover {
  transform: translateY(-8px) scale(1.04);
}

.puppy-bubble-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 6px solid #ffffff;
  box-shadow: var(--shadow-md);
  background-color: #fff;
  transition: box-shadow 0.3s ease;
}

.puppy-bubble-item:hover .puppy-bubble-circle {
  box-shadow: var(--shadow-hover);
}

.puppy-bubble-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.puppy-bubble-item:hover .puppy-bubble-circle img {
  transform: scale(1.08);
}

/* Angled Ribbon Tag */
.status-ribbon {
  position: absolute;
  top: 24px;
  right: -32px;
  transform: rotate(45deg);
  width: 130px;
  padding: 4px 0;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.status-ribbon.reserved {
  background-color: var(--teal);
}

.status-ribbon.available {
  background-color: var(--coral);
}

.status-ribbon.upcoming {
  background-color: var(--gold);
}

.puppy-bubble-info {
  margin-top: 14px;
  text-align: center;
}

.puppy-bubble-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.puppy-bubble-color {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Card Grid Layout Mode */
.puppies-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.puppy-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

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

.puppy-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.puppy-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.puppy-card:hover .puppy-card-thumb img {
  transform: scale(1.06);
}

.puppy-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.puppy-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.puppy-card-name {
  font-size: 1.35rem;
  font-weight: 700;
}

.puppy-badge {
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.puppy-badge.available {
  background: var(--coral-light);
  color: var(--coral);
}
.puppy-badge.reserved {
  background: var(--teal-light);
  color: var(--teal);
}

.puppy-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.puppy-card-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.trait-pill {
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 6px;
  background-color: var(--bg-section-alt);
  color: var(--text-muted);
}

.puppy-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.puppy-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
}

/* ==========================================================================
   "WHY US?" 6-FEATURE GRID
   ========================================================================== */
.why-us-section {
  padding: 90px 0;
  background-color: var(--bg-section-alt);
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.why-item-card {
  background: #ffffff;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.why-item-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.why-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.icon-coral { background: var(--coral-light); color: var(--coral); }
.icon-teal { background: var(--teal-light); color: var(--teal); }
.icon-gold { background: var(--gold-light); color: var(--gold); }
.icon-blue { background: rgba(74, 144, 226, 0.15); color: var(--blue-accent); }

.why-item-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.why-item-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   SOCIAL MEDIA & VIDEO SHOWCASE ("Check Us Out Here!")
   ========================================================================== */
.showcase-media-section {
  padding: 90px 0;
}

.media-showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: stretch;
}

.video-container-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.video-play-btn-large {
  position: absolute;
  width: 80px;
  height: 80px;
  background: var(--coral);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 0 0 12px rgba(240, 99, 90, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulsePlay 2s infinite;
}

.video-play-btn-large:hover {
  transform: scale(1.1);
  background: var(--coral-hover);
}

.social-feed-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.social-channels-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.social-links-row {
  display: flex;
  gap: 12px;
}

.social-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #ffffff;
  transition: transform 0.25s ease;
}

.social-icon-btn:hover {
  transform: translateY(-3px) scale(1.08);
}

.btn-fb { background: #1877F2; }
.btn-ig { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF); }
.btn-yt { background: #FF0000; }
.btn-tk { background: #000000; }

.reels-grid-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
  flex-grow: 1;
}

.reel-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 9/16;
  background: #111;
}

.reel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.reel-item:hover img {
  transform: scale(1.05);
}

.reel-overlay-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   BLOG / ARTICLES PREVIEW
   ========================================================================== */
.articles-section {
  padding: 90px 0;
  background: var(--bg-section-alt);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.article-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.article-thumb {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.article-card:hover .article-thumb img {
  transform: scale(1.08);
}

.article-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.article-date {
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.article-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.article-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.article-read-more {
  margin-top: auto;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-read-more:hover {
  gap: 10px;
}

/* ==========================================================================
   UPCOMING LITTERS & NEWSLETTER BANNER
   ========================================================================== */
.litter-signup-section {
  padding: 80px 0;
}

.litter-signup-box {
  background: linear-gradient(135deg, #24292E 0%, #1A1D20 100%);
  border-radius: var(--radius-xl);
  padding: 60px 50px;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.litter-signup-box::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 168, 150, 0.25), transparent 70%);
  pointer-events: none;
}

.litter-info h2 {
  color: #ffffff;
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.litter-info p {
  color: #B5BCC6;
  font-size: 1.05rem;
  margin-bottom: 24px;
  max-width: 520px;
}

.signup-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.signup-input {
  flex: 1;
  min-width: 260px;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.95rem;
}

.signup-input::placeholder {
  color: #9AA2AC;
}

.signup-input:focus {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--teal);
}

.litter-media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-md);
}

.litter-media-frame img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--footer-bg);
  color: #E2E8F0;
  padding: 80px 0 0;
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-brand {
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 0.9rem;
  color: #A0AEC0;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background-color: var(--coral);
  border-radius: 2px;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-list a {
  color: #A0AEC0;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.footer-nav-list a:hover {
  color: var(--coral);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #A0AEC0;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.footer-contact-icon {
  color: var(--teal);
  font-size: 1.1rem;
  margin-top: 2px;
}

.footer-bottom {
  background-color: var(--footer-bottom-bg);
  padding: 24px 0;
  font-size: 0.85rem;
  color: #718096;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--green-whatsapp);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  z-index: 990;
  transition: all 0.3s ease;
  animation: pulseGlow 2.5s infinite;
}

.floating-whatsapp:hover {
  background-color: var(--green-whatsapp-hover);
  transform: scale(1.1) rotate(10deg);
}

/* Sticky Bottom Mobile Navigation Bar */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65px;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.06);
  z-index: 980;
  justify-content: space-around;
  align-items: center;
}

.mobile-bottom-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  gap: 4px;
}

.mobile-bottom-link.active, .mobile-bottom-link:hover {
  color: var(--coral);
}

.mobile-bottom-link svg, .mobile-bottom-link i {
  font-size: 1.25rem;
}

/* ==========================================================================
   MODALS (PUPPY VIEWER, VIDEO, INQUIRY)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: #ffffff;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 840px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.modal-overlay.open .modal-container {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #F1F5F9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--dark);
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: var(--coral);
  color: #fff;
}

.puppy-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.puppy-modal-media {
  background-color: var(--bg-section-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.puppy-modal-media img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.puppy-modal-details {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.modal-puppy-header {
  margin-bottom: 20px;
}

.modal-puppy-name {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
}

.modal-puppy-color {
  color: var(--coral);
  font-weight: 700;
  font-size: 1.1rem;
}

.modal-specs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
  background: var(--bg-page);
  padding: 16px;
  border-radius: var(--radius-md);
}

.modal-spec-item strong {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.modal-spec-item span {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
}

.modal-health-guarantee-box {
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: #065F55;
}

.modal-actions {
  margin-top: auto;
  display: flex;
  gap: 12px;
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--dark);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  z-index: 3000;
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-notification.show {
  transform: translateX(-50%) translateY(0);
}

.toast-notification.success {
  border-left: 5px solid var(--teal);
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

@keyframes pulsePlay {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(240, 99, 90, 0.5);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(240, 99, 90, 0);
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-headline {
    font-size: 2.8rem;
  }
  .benefits-grid, .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
  .media-showcase-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }
  
  .main-nav, .nav-actions .btn {
    display: none;
  }

  .hamburger-btn {
    display: block;
  }

  .mobile-bottom-nav {
    display: flex;
  }

  body {
    padding-bottom: 65px; /* Space for bottom navigation */
  }

  .floating-whatsapp {
    bottom: 80px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 1.7rem;
  }

  .hero-grid, .about-grid, .litter-signup-box {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-headline {
    font-size: 2.2rem;
  }

  .benefits-grid, .why-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .puppy-modal-grid {
    grid-template-columns: 1fr;
  }

  .modal-container {
    max-height: 95vh;
  }
}

/* ==========================================================================
   REVIEWS & TESTIMONIALS SECTION
   ========================================================================== */
.reviews-section {
  padding: 90px 0;
  position: relative;
  background: var(--bg-section-alt);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.review-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(240, 99, 90, 0.3);
}

.review-stars {
  color: #FFA41C;
  font-size: 1.15rem;
  margin-bottom: 14px;
  display: flex;
  gap: 4px;
}

.review-quote {
  font-size: 0.98rem;
  color: var(--text-main);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
  flex-grow: 1;
  position: relative;
}

.review-author-box {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

.review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--teal);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.review-author-info strong {
  display: block;
  font-size: 1.05rem;
  color: var(--dark);
  font-family: var(--font-heading);
}

.review-author-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.verified-adopter-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  margin-top: 3px;
}

/* Decade Experience Banner */
.decade-banner {
  background: linear-gradient(135deg, #24272C 0%, #1B1E22 100%);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 50px 0;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.decade-banner-text h3 {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.decade-banner-text p {
  color: #B5BCC6;
  font-size: 0.95rem;
  max-width: 650px;
}

@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .decade-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
}
