/* ===== CSS VARIABLES ===== */
:root {
  --primary: #D4A574;
  --primary-dark: #B8864E;
  --secondary: #8B4513;
  --accent: #FF6B35;
  --accent-hover: #E55A2B;
  --dark: #2C1810;
  --light: #FFF8F0;
  --cream: #FFFDF5;
  --text: #3D2B1F;
  --text-light: #7A6B5D;
  --white: #FFFFFF;
  --shadow: 0 4px 20px rgba(44, 24, 16, 0.1);
  --shadow-lg: 0 8px 40px rgba(44, 24, 16, 0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --whatsapp: #25D366;
  --instagram: #E4405F;
  --facebook: #1877F2;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.2; font-weight: 700; }
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}
.section-title h2 {
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.section-title p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 1rem auto 0;
  border-radius: 2px;
}
.section { padding: 5rem 0; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes paw {
  0% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.1) rotate(-10deg); }
  75% { transform: scale(1.1) rotate(10deg); }
  100% { transform: scale(1) rotate(0deg); }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SKELETON LOADING ===== */
.skeleton {
  background: linear-gradient(90deg, #f0e6d8 25%, #e8dccc 50%, #f0e6d8 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

/* ===== HEADER / NAVBAR ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 253, 245, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
  transition: var(--transition);
}
header.scrolled { box-shadow: var(--shadow); }
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--dark);
}
.logo-icon {
  font-size: 2rem;
  animation: paw 2s ease-in-out infinite;
}
.logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
  position: relative;
  padding: 0.3rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 50px;
  font-weight: 700 !important;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--accent-hover); transform: translateY(-2px); }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.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); }

/* ===== FLOATING SOCIAL BAR ===== */
.social-float {
  position: fixed;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.social-float a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: var(--transition);
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  position: relative;
}
.social-float a:hover { transform: scale(1.15); }
.social-float a .tooltip {
  position: absolute;
  left: 55px;
  background: var(--dark);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.social-float a:hover .tooltip { opacity: 1; }
.social-float .wa { background: var(--whatsapp); }
.social-float .ig { background: var(--instagram); }
.social-float .fb { background: var(--facebook); }
.social-float .email { background: var(--accent); }

/* ===== HERO SLIDER ===== */
.hero { margin-top: 70px; position: relative; overflow: hidden; }
.hero-slider {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 500px;
  max-height: 800px;
}
.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: scale(1.05);
}
.slide.active {
  opacity: 1;
  transform: scale(1);
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44, 24, 16, 0.8) 0%, rgba(44, 24, 16, 0.3) 50%, transparent 100%);
}
.slide-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  max-width: 550px;
  color: var(--white);
  z-index: 2;
}
.slide-content .badge {
  display: inline-block;
  background: var(--accent);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.slide-content h1 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.slide-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.7;
}
.hero-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  border: 2px solid var(--accent);
}
.hero-btn:hover { background: transparent; color: var(--white); }
.hero-btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  border: 2px solid var(--white);
  margin-left: 1rem;
}
.hero-btn-outline:hover { background: var(--white); color: var(--dark); }

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}
.slider-dots {
  display: flex;
  gap: 10px;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.dot.active { background: var(--white); border-color: var(--accent); transform: scale(1.2); }
.slider-arrows {
  display: flex;
  gap: 8px;
}
.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.3);
}
.slider-arrow:hover { background: var(--accent); border-color: var(--accent); }

/* ===== BREEDS SECTION ===== */
.breeds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.breed-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.breed-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.breed-card .img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #f0e6d8;
}
.breed-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  /* lazy load placeholder */
}
.breed-card:hover .img-wrap img { transform: scale(1.1); }
.breed-card .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent);
  color: var(--white);
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}
.breed-card .fav {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: var(--transition);
  cursor: pointer;
}
.breed-card .fav:hover { background: var(--accent); color: var(--white); }
.breed-card .body { padding: 1.2rem; }
.breed-card .body h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.breed-card .body .breed-type {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.breed-card .body .price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.breed-card .body .price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-light);
}
.breed-card .body .meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.breed-card .body .meta i { margin-right: 4px; }
.breed-card .body .btn-enquire {
  width: 100%;
  padding: 0.7rem;
  border-radius: 50px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}
.breed-card .body .btn-enquire:hover { background: var(--primary-dark); }

/* ===== PET FOOD SECTION ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-card .img-wrap {
  height: 200px;
  overflow: hidden;
  background: #f0e6d8;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.product-card:hover .img-wrap img { transform: scale(1.08); }
.product-card .body { padding: 1.2rem; }
.product-card .body h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.product-card .body .weight { color: var(--text-light); font-size: 0.8rem; margin-bottom: 0.5rem; }
.product-card .body .price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 0.8rem;
}
.product-card .body .btn-add {
  width: 100%;
  padding: 0.7rem;
  border-radius: 50px;
  background: var(--secondary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}
.product-card .body .btn-add:hover { background: #6B3410; }
.product-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--accent);
  color: var(--white);
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}
.step {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.step .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.2rem;
  transition: var(--transition);
}
.step:hover .icon { background: var(--accent); transform: scale(1.1); }
.step .num {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}
.step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step p { color: var(--text-light); font-size: 0.9rem; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--cream); }
.testimonials-slider {
  overflow: hidden;
  position: relative;
}
.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-card {
  min-width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.testimonial-card .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--primary);
}
.testimonial-card .stars {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.testimonial-card blockquote {
  font-style: italic;
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.7;
}
.testimonial-card .name { font-weight: 700; color: var(--dark); }
.testimonial-card .location { color: var(--text-light); font-size: 0.85rem; }
.t-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.t-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.t-nav button:hover { background: var(--primary); color: var(--white); }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  background: #f0e6d8;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 24, 16, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===== PET CARE SECTION ===== */
.pet-care-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.care-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.care-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.care-card .img-wrap {
  height: 180px;
  overflow: hidden;
  background: #f0e6d8;
}
.care-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.care-card:hover .img-wrap img { transform: scale(1.1); }
.care-card .body { padding: 1.2rem; }
.care-card .body .tag {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.care-card .body h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.care-card .body p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1rem; }
.care-card .body .read-more {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ===== BRANCHES ===== */
.branches { background: var(--cream); }
.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.branch-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--primary);
}
.branch-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-left-color: var(--accent); }
.branch-card .icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}
.branch-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.branch-card p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 0.3rem; }
.branch-card .phone { color: var(--accent); font-weight: 600; }

/* ===== ENQUIRY / CONTACT ===== */
.contact-section { background: var(--dark); color: var(--white); }
.contact-section .section-title h2 { color: var(--white); }
.contact-section .section-title p { color: rgba(255,255,255,0.7); }
.contact-section .section-title::after { background: var(--accent); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.contact-info p { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }
.contact-info .detail { display: flex; gap: 1rem; margin-bottom: 1rem; align-items: flex-start; }
.contact-info .detail .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 165, 116, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-info .detail .text strong { display: block; font-size: 0.9rem; }
.contact-info .detail .text span { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.contact-socials {
  display: flex;
  gap: 10px;
  margin-top: 2rem;
}
.contact-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: var(--transition);
}
.contact-socials a:hover { transform: translateY(-3px); }
.contact-socials .wa { background: var(--whatsapp); }
.contact-socials .ig { background: var(--instagram); }
.contact-socials .fb { background: var(--facebook); }
.contact-socials .em { background: var(--accent); }

.enquiry-form { background: rgba(255,255,255,0.05); padding: 2rem; border-radius: var(--radius); backdrop-filter: blur(10px); }
.enquiry-form h3 { margin-bottom: 1.5rem; font-size: 1.2rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.3rem; color: rgba(255,255,255,0.8); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.12);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group select option { color: var(--dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
  width: 100%;
  padding: 1rem;
  border-radius: 50px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  border: 2px solid var(--accent);
}
.btn-submit:hover { background: transparent; color: var(--accent); }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  padding: 3rem 20px 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-col h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}
.footer-col p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 1rem; }
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--accent); padding-left: 5px; }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); transform: translateY(-3px); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-bottom .links { display: flex; gap: 1.5rem; }
.footer-bottom .links a { color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: var(--transition); }
.footer-bottom .links a:hover { color: var(--accent); }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-sm);
}
.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox .close:hover { color: var(--accent); }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--accent-hover); transform: translateY(-3px); }

/* ===== WHATSAPP CHAT BUBBLE ===== */
.chat-bubble {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-bubble a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  animation: pulse 2s ease-in-out infinite;
  transition: var(--transition);
}
.chat-bubble a:hover { transform: scale(1.1); }
.chat-bubble .label {
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .section { padding: 3rem 0; }
  .hero-slider { height: 60vh; min-height: 400px; }
  .slide-content { left: 5%; right: 5%; }
  .slide-content h1 { font-size: 2rem; }
  .slide-content p { font-size: 0.95rem; }
  .hero-btn, .hero-btn-outline { padding: 0.7rem 1.5rem; font-size: 0.9rem; }
  .hero-btn-outline { margin-left: 0; margin-top: 0.5rem; display: inline-block; }
  .slider-controls { bottom: 1.5rem; }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 253, 245, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.2rem;
    transform: translateY(-120%);
    transition: var(--transition);
    border-bottom: 1px solid rgba(212,165,116,0.2);
  }
  .nav-links.open { transform: translateY(0); }
  .hamburger { display: flex; }
  .social-float { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .chat-bubble .label { display: none; }
  .breeds-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .breeds-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .breed-card .body { padding: 0.8rem; }
  .breed-card .body h3 { font-size: 0.95rem; }
  .breed-card .body .price { font-size: 1rem; }
  .slide-content h1 { font-size: 1.6rem; }
  .section-title h2 { font-size: 1.5rem; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .step { padding: 1.5rem; }
}

/* ===== FILTER BUTTONS ===== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
  border: 2px solid #ddd;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* ===== LAZY LOAD PLACEHOLDER ===== */
img[loading="lazy"] {
  background: #f0e6d8;
  min-height: 100px;
}

/* ===== LOADING SPINNER FOR FORM ===== */
.spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn-submit.loading .spinner { display: block; }
.btn-submit.loading .btn-text { display: none; }
