/* =============================================
   MY HAPPY PETSPA — style.css
   Mobile-First | Premium Design | Conversion-Focused
   ============================================= */

/* =============================================
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================= */
:root {
  /* Brand Colors — warm peach-to-coral + deep teal + soft lilac */
  --clr-primary: #2EC4B6; /* BOTONES PRINCIPALES */
  --clr-primary-dark: #1F9D91;
  --clr-primary-light: #6FE3D6;
  --clr-secondary: #AC9DF2;      /* Teal – trust, freshness, professional */
  --clr-secondary-light: #DC97E9;
  --clr-accent: #FFD166;         /* Golden yellow – joy, happiness */
  --clr-deep: #2D3748;           /* Deep navy for headings */
  --clr-body: #4A5568;           /* Softer body text */
  --clr-muted: #2C4A5E;          /* Muted text */

  /* Backgrounds */
  --clr-bg: #F7FCFB;             /* Warm off-white */
  --clr-bg-2: #E8FBF6;           /* Peach tint sections */
  --clr-bg-3: #F5F0FF;           /* Teal tint sections */
  --clr-white: #F2F8F7;
  --clr-card: #FAF0FF;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #FFFAF8 0%, #F2F8F7 50%, #43e0d4 100%);
  --gradient-primary: linear-gradient(135deg, var(--clr-primary) 0%, #B2EBBC 100%);
  --gradient-teal: linear-gradient(135deg, var(--clr-secondary) 0%, #43e0d4 100%);
  --gradient-cta: linear-gradient(135deg, #2EC4B6 0%,#1F9D91 100%);
  --gradient-text: linear-gradient(135deg, #AC9DF2 0%, #DC97E9 60%, #2EC4B6 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(46, 196, 182, 0.12);
  --shadow-md: 0 8px 32px rgba(46, 196, 182, 0.18);
  --shadow-lg: 0 20px 60px rgba(46, 196, 182, 0.22);
  --shadow-card: 0 4px 24px rgba(172, 157, 242, 0.10);
  --shadow-card-hover: 0 12px 40px rgba(46, 196, 182, 0.16);

  /* Typography */
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Nunito', sans-serif;
   --font-logo: 'Snowflakes', cursive; 

  /* Spacing */
  --section-pad: 100px;
  --section-pad-mobile: 64px;
  --container-max: 1180px;
  --gap: 1.5rem;

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 200ms;
  --t-mid: 350ms;
  --t-slow: 500ms;
}

/* =============================================
   2. RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--clr-body);
  background-color: var(--clr-bg);
  overflow-x: hidden;
  width: 100%;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul, ol { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* Focus styles */
:focus-visible {
  outline: 3px solid var(--clr-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================
   3. UTILITY CLASSES
   ============================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section {
  padding-block: var(--section-pad-mobile);
}

@media (min-width: 768px) {
  .container { padding-inline: 2rem; }
  .section { padding-block: var(--section-pad); }
}

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-accent { color: var(--clr-primary); }

.br-desktop { display: none; }
@media (min-width: 768px) { .br-desktop { display: block; } }

/* =============================================
   4. SECTION HEADER (shared)
   ============================================= */
.section-header {
  text-align: center;
  max-width: 660px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-primary);
  background: rgba(255, 123, 92, 0.1);
  padding: 0.35em 1em;
  border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--clr-deep);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--clr-muted);
  line-height: 1.7;
}

/* =============================================
   5. BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 0.7rem 1.6rem;
  transition: all var(--t-mid) var(--ease);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  border: 2.5px solid transparent;
}

.btn-lg { font-size: 1rem; padding: 0.9rem 2rem; }
.btn-sm { font-size: 0.85rem; padding: 0.55rem 1.2rem; }

.btn-primary {
  background:#2EC4B6; 
  color: white;
  box-shadow: 0 4px 20px rgb(46,196, 182,0.45);
}
.btn-primary:hover {
  transform: translateY(-3px);
  
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  background: transparent;
}
.btn-outline:hover {
 background: rgba(46, 196, 182, 0.08);
 transform: translateY(-2px);
 box-shadow: 0 4px 16px rgba(46, 196, 182, 0.2);
}

.btn-white {
  background: white;
  color: var(--clr-primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

.btn-outline-white {
  border-color: rgba(255,255,255,0.7);
  color: white;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

/* =============================================
   6. BADGES / TAGS
   ============================================= */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(255, 123, 92, 0.12);
  color: var(--clr-primary-dark);
  padding: 0.4em 1em;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255, 123, 92, 0.2);
}

/* =============================================
   6b. INTRO LOGO ANIMATION
   ============================================= */
body.intro-active {
  overflow: hidden;
  height: 100vh;
  height: 100svh;
}

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-bg);
  background: radial-gradient(circle at 50% 45%, var(--clr-bg-2) 0%, var(--clr-bg) 70%);
  opacity: 1;
  transition: opacity 550ms var(--ease);
}

.intro-loader.intro-hide {
  opacity: 0;
  pointer-events: none;
}

.intro-logo {
  width: clamp(260px, 55vw, 600px);
  max-height: 46vh;
  width: auto;
  height: auto;
  display: block;
  will-change: transform;
  transform-origin: top left;
}

/* Si el usuario prefiere menos movimiento, o si el JS no llega a cargar,
   el loader nunca debe bloquear la página de forma permanente */
@media (prefers-reduced-motion: reduce) {
  .intro-loader {
    display: none;
  }
}

/* =============================================
   7. FLOATING CALL BUTTON
   ============================================= */
.float-call {
  display: none;
  position: fixed;
  bottom: 5.5rem;
  left: 1.25rem;
  z-index: 900;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-primary);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 24px rgba(255, 123, 92, 0.5);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--t-mid) var(--ease-bounce);
  animation: float-pulse 3s ease-in-out infinite;
}

.float-call:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 10px 32px rgba(255, 123, 92, 0.6);
}

@keyframes float-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(255, 123, 92, 0.5); }
  50% { box-shadow: 0 8px 32px rgba(255, 123, 92, 0.7); }
}

/* Oculto en móvil (a petición del cliente); visible desde tablet en adelante */
@media (min-width: 768px) {
  .float-call { display: flex; bottom: 2.5rem; left: 2rem; }
}

/* =============================================
   8. BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-deep);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all var(--t-mid) var(--ease);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--clr-primary);
  transform: translateY(-3px);
}

/* =============================================
   9. HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 250, 248, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1.5px solid transparent;
  transition: all var(--t-mid) var(--ease);
  
}

.header.scrolled {
  box-shadow: 0 4px 24px rgba(26, 26, 46, 0.1);
  background: rgba(255, 250, 248, 0.97);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 88px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.logo-img{
  width: 82px;
  height: 82px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

@keyframes logo-bob {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

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

.logo-name {
  font-family: var(--font-logo);
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.logo-name em {
  font-style: normal;
  color: #FFFFFF;
  transition: color 0.4s ease;
}

.header.scrolled .logo-name,
.header.scrolled .logo-name em {
  text-shadow: none;
}
/* Cuando el header hace scroll (clase .scrolled) */
.header.scrolled .logo-name {
  color: #2D3748; /* Azul oscuro para "My Happy" */
}

.header.scrolled .logo-name em {
  color: #84BFAE; /* Verde menta para "PetSpa" */
}

/* Desktop Nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

@media (min-width: 900px) {
  .nav-desktop { display: flex; }
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-body);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  transition: all var(--t-fast) var(--ease);
}

.nav-link:hover {
  color: var(--clr-primary);
  background: rgba(255, 123, 92, 0.08);
}

.nav-link.nav-cta {
  color: var(--clr-primary);
}

/* Header Book Now button */
.btn-header {
  font-size: 0.85rem;
  padding: 0.6rem 1.3rem;
  margin-left: auto;
}

@media (min-width: 900px) {
  .btn-header { margin-left: 1rem; }
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  border-radius: var(--radius-sm);
  margin-left: 0.5rem;
  transition: background var(--t-fast);
}

.hamburger:hover { background: rgba(255, 123, 92, 0.1); }

.hamburger span {
  display: block;
  height: 2.5px;
  background: var(--clr-deep);
  border-radius: 2px;
  transition: all var(--t-mid) var(--ease);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (min-width: 900px) { .hamburger { display: none; } }

/* Logo móvil: solo el ícono, mucho más grande, sin el texto "My Happy PetSpa" */
@media (max-width: 899px) {
  .header-inner {
    height: 86px;
  }
  .logo-text {
    display: none;
  }
  .logo-img {
    width: 84px;
    height: 84px;
  }

  /* FIX: en mobile .nav-desktop está oculto, así que nada empujaba
     el botón "Book Now" y la hamburguesa hacia la derecha. Sin este
     margin quedan pegados al logo en el lado izquierdo. */
  .header-inner > .btn-lg {
    margin-left: auto;
  }
}

/* Evita que el botón "Book Now" del header (siempre visible) apriete
   el logo y el hamburguesa en pantallas muy angostas (320–375px) */
@media (max-width: 420px) {
  .header-inner {
    gap: 0.5rem;
  }
  .header-inner > .btn-lg {
    padding: 0.55rem 1rem;
    font-size: 0.8rem;
  }
}

/* Mobile Nav Drawer */
.nav-mobile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  padding: 1rem 1.25rem 1.5rem;
  background: var(--clr-white);
  border-top: 1.5px solid rgba(255, 123, 92, 0.1);
  max-height: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: max-height var(--t-slow) var(--ease), padding var(--t-slow) var(--ease), visibility 0s linear var(--t-slow);
}

/* FIX cross-browser: algunos navegadores móviles (Safari/iOS) no
   respetan max-height:0 al 100% en contenedores flex con padding,
   dejando una franja visible con parte del contenido del drawer
   aunque esté "cerrado". height:0 + visibility:hidden lo blinda. */
.nav-mobile.open {
  max-height: 340px;
  height: auto;
  visibility: visible;
  transition: max-height var(--t-slow) var(--ease), padding var(--t-slow) var(--ease), visibility 0s linear;
}

.nav-mobile .nav-link {
  width: 100%;
  padding: 0.65rem 0.75rem;
  font-size: 1rem;
}

.nav-mobile .btn {
  margin-top: 0.5rem;
  width: 100%;
  justify-content: center;
}

@media (min-width: 900px) {
  .nav-mobile { display: none !important; }
}

/* =============================================
   10. HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
 background-image: url('img/img-hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 90px;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
}

/* En móvil el recorte centrado corta al perrito; lo desplazamos
   para mantenerlo visible dentro del encuadre */
@media (max-width: 899px) {
  .hero {
    background-position: 78% center;
    padding-top: 98px; /* header mobile ahora mide 86px + aire */
  }
}


@keyframes paw-drift {
  0%, 100% { transform: translateY(0) rotate(-10deg); opacity: 0.12; }
  50% { transform: translateY(-20px) rotate(10deg); opacity: 0.18; }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding-block: 3rem 5rem;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    padding-block: 2rem 6rem;
    gap: 4rem;
  }
}

/* Hero Content */
.hero-content { max-width: 580px; }

.hero-eyebrow { margin-bottom: 1.25rem; }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--clr-deep);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--clr-body);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

/* Trust badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clr-body);
  background: white;
  padding: 0.4em 0.8em;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.trust-icon { font-size: 1rem; }

/* Hero Image */
.hero-image-wrap { position: relative; 
 display: flex;
  justify-content: center;
  align-items: flex-end;  /* Cambiar de center a flex-end para bajar la imagen */
  padding: 20px 0 0 0;   /* Reducir padding superior */
  min-height: 500px;
}

.hero-img-frame {
  position: relative;
 display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  min-height: 500px;
  overflow: hidden; 
}

/* Image placeholder */
.img-placeholder {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fde8de 0%, #ffd4c2 100%);
  border: 3px dashed rgba(255, 123, 92, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-width: 520px;
  margin: auto;
}

.ba-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.placeholder-inner {
  text-align: center;
  color: var(--clr-primary);
}

.placeholder-emoji { font-size: 3rem; margin-bottom: 0.5rem; }
.placeholder-inner p { font-family: var(--font-display); font-size: 0.9rem; font-weight: 600; }
.placeholder-inner small { font-size: 0.75rem; opacity: 0.7; }

/* =============================================
   WAVE DIVIDER
   ============================================= */

.wave-divider {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
   width: 100%;
  height: 80px;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0px;
  left: 0;
 
}

  
/* =============================================
   11. WHY CHOOSE US 
============================================= */
.why-us {
  background: var(--clr-white);
  padding-block: var(--section-pad-mobile);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .why-us { padding-block: var(--section-pad); }
}

/* Grid moderno */
.why-grid-modern {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .why-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .why-grid-modern {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tarjeta moderna */
.why-card-modern {
  background: var(--clr-bg);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  position: relative;
  border: 1.5px solid rgba(217, 26, 114, 0.08);
  transition: all var(--t-mid) var(--ease);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  overflow: hidden;
}

.why-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #D91A72, #AC9DF2, #2EC4B6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-mid) var(--ease);
}

/* Icono */
.why-card-modern-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: #D91A72;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all var(--t-mid) var(--ease-bounce);
}
.why-card-modern-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);  
}

.why-card-modern:hover .why-card-modern-icon {
  transform: rotate(-8deg) scale(1.08);
}

/* Contenido */
.why-card-modern-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--clr-deep);
  margin-bottom: 0.35rem;
}

.why-card-modern-content p {
  font-size: 0.9rem;
  color: var(--clr-muted);
  line-height: 1.6;
}

/* Número decorativo */
.why-card-modern-number {
  position: absolute;
  bottom: 0.75rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(217, 26, 114, 0.06);
  line-height: 1;
  pointer-events: none;
  transition: all var(--t-mid) var(--ease);
}

.why-card-modern:hover .why-card-modern-number {
  color: rgba(217, 26, 114, 0.12);
  transform: scale(1.05);
}

/* Ajustes para móvil */
@media (max-width: 480px) {
  .why-card-modern {
    padding: 1.5rem 1.25rem;
  }
  
  .why-card-modern-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    font-size: 1.5rem;
  }
  
  .why-card-modern-content h3 {
    font-size: 1rem;
  }
  
  .why-card-modern-content p {
    font-size: 0.82rem;
  }
  
  .why-card-modern-number {
    font-size: 2rem;
  }
}

/* =============================================
   PRICE ESTIMATOR
============================================= */
.price-estimator {
  background-color: #F5F9FF;
  background-image: radial-gradient(circle, rgba(46, 196, 182, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}

@media (min-width: 768px) {
  .price-estimator { padding-block: var(--section-pad); }
}

.estimator-wrapper {
  max-width: 780px;
  margin: 0 auto;
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid rgba(46, 196, 182, 0.1);
}

.estimator-step {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1.5px solid rgba(46, 196, 182, 0.1);
}

.estimator-step:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.estimator-step-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: white;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

.estimator-step-header h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-deep);
}

.estimator-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

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

.estimator-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.3rem;
  padding: 0.85rem 0.9rem;
  border: 2px solid #e8e8e8;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--t-mid) var(--ease);
  background: var(--clr-bg);
  flex: 1;
  min-width: 120px;
}

.estimator-option:hover {
  border-color: rgba(46, 196, 182, 0.3);
  background: rgba(46, 196, 182, 0.05);
}

.estimator-option input[type="radio"] {
  display: none;
}

.estimator-option .option-icon {
  font-size: 1.4rem;
}

.estimator-option .option-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--clr-deep);
}

.estimator-option .option-sub {
  font-size: 0.7rem;
  color: var(--clr-muted);
  display: block;
  font-weight: 400;
}

/* Estado seleccionado */
.estimator-option:has(input:checked) {
  border-color: var(--clr-primary);
  background: rgba(46, 196, 182, 0.08);
  box-shadow: 0 0 0 4px rgba(46, 196, 182, 0.1);
}

/* Servicio seleccionado */
.selected-service-display {
  padding: 1rem 1.25rem;
  background: rgba(46, 196, 182, 0.06);
  border-radius: var(--radius-md);
  border: 2px dashed rgba(46, 196, 182, 0.2);
}

.service-placeholder {
  color: var(--clr-muted);
  font-style: italic;
}

.selected-service-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--clr-deep);
  font-size: 1.05rem;
}

/* Resultado */
.estimator-result {
  margin-top: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(46, 196, 182, 0.06), rgba(217, 26, 114, 0.04));
  border-radius: var(--radius-lg);
  border: 2px solid rgba(46, 196, 182, 0.15);
  text-align: center;
}

.price-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-muted);
  margin-bottom: 0.3rem;
}

.price-amount {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--clr-deep);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-note {
  display: block;
  font-size: 0.78rem;
  color: var(--clr-muted);
  margin-top: 0.25rem;
}

.estimator-cta {
  margin-top: 1.5rem;
}

.estimator-cta .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 480px) {
  .estimator-cta .btn {
    white-space: normal;
    font-size: 0.85rem;
    padding: 0.85rem 1rem;
    line-height: 1.3;
    text-align: center;
  }
}

.estimator-disclaimer {
  font-size: 0.75rem;
  color: var(--clr-muted);
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* Service Card Price CTA */
.service-price-cta {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--clr-primary);
  margin-top: 0.5rem;
  transition: color var(--t-fast);
  cursor: pointer;
}

.service-price-cta:hover {
  color: var(--clr-primary-dark);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .estimator-wrapper {
    padding: 1.5rem;
  }
  
  .estimator-options-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .estimator-option {
    padding: 0.6rem 1rem;
    min-width: 80px;
  }
  
  .price-amount {
    font-size: 2.2rem;
  }
}

@media (max-width: 400px) {
  .estimator-options-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .estimator-options-coat {
    flex-direction: column;
  }

  .estimator-options-coat .estimator-option {
    width: 100%;
  }
}
/* =============================================
   12. SERVICES
   ============================================= */
.services {
  background: var(--clr-bg-2);
 
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .services-grid { 
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 900px) {
  .services-grid { 
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* Tarjeta rediseñada - estilo horizontal */
.service-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all var(--t-mid) var(--ease);
  border: 1.5px solid rgba(217, 26, 114, 0.08);
  position: relative;
  min-height: 120px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(217, 26, 114, 0.2);
}

/* Icono a la izquierda */
.service-icon-wrap {
  width: 82px;
  height: 82px;
  min-width: 82px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-mid) var(--ease-bounce);
  flex-shrink: 0;
  margin-top: 1.25rem;
  padding: 8px;
}

.service-card:hover .service-icon-wrap {
  transform: rotate(-8deg) scale(1.08);
}

.service-icon-img {
  width: 98px;
  height: 98px;
  object-fit: contain;
}

/* Contenido del servicio */
.service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.service-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--clr-deep);
  margin-bottom: 0.1rem;
  line-height: 1.3;
}

.service-content p {
  font-size: 0.88rem;
  color: var(--clr-muted);
  line-height: 1.6;
  margin: 0;
}

/* Tag "Most Popular" - ajustado */
.service-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  background: #D91A72;
  color: white;
  padding: 0.15em 0.7em;
  border-radius: var(--radius-pill);
  align-self: flex-start;
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Botón Book Now debajo de las tarjetas */
.services-cta {
  text-align: center;
  margin-top: 3rem;
}

.services-cta .btn {
  min-width: 220px;
  font-size: 1.1rem;
  padding: 0.9rem 2.5rem;
}

/* =============================================
   RESPONSIVE - ajustes para móviles
============================================= */
@media (max-width: 480px) {
  .service-card {
    padding: 1.25rem 1rem;
    gap: 0.75rem;
    flex-wrap: wrap;
  }
  
  .service-icon-wrap {
    width: 56px;
    height: 56px;
    min-width: 56px;
  }
  
  .service-icon-img {
    width: 30px;
    height: 30px;
  }
  
  .service-content h3 {
    font-size: 0.95rem;
  }
  
  .service-content p {
    font-size: 0.8rem;
  }
  
  .services-cta .btn {
    min-width: 100%;
    font-size: 1rem;
  }
}
/* =============================================
   12b. GROOMING PACKAGES (3 tarjetas)
   ============================================= */
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    /* stretch (default) iguala la altura de las 3 tarjetas; la del
       medio se ve "más grande" solo por el transform:scale de abajo */
  }
}

.package-card {
  position: relative;
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 2.25rem;
  border: 1.5px solid rgba(217, 26, 114, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all var(--t-mid) var(--ease);
  box-shadow: var(--shadow-card);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(217, 26, 114, 0.2);
}

.package-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--clr-deep);
  margin-bottom: 0.25rem;
}

.package-tagline {
  font-size: 0.88rem;
  color: var(--clr-muted);
  line-height: 1.5;
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--clr-body);
  line-height: 1.4;
}

.package-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.package-price-cta {
  margin-top: auto;
  align-self: flex-start;
  font-size: 0.85rem;
}

.package-desc {
  font-size: 0.85rem;
  color: var(--clr-muted);
  line-height: 1.6;
}

/* ===== Tarjeta central destacada (Full Grooming) ===== */
.package-card--featured {
  border: 2px solid var(--clr-primary);
  box-shadow: var(--shadow-lg);
  background: var(--clr-card);
}

@media (min-width: 900px) {
  .package-card--featured {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
    transform: scale(1.06);
    z-index: 2;
  }

  .package-card--featured:hover {
    transform: scale(1.06) translateY(-4px);
  }
}

.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-cta);
  color: white;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.4em 1.1em;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

.package-card--featured .package-check {
  background: #D91A72;
}

/* =============================================
   13. BEFORE & AFTER GALLERY
   ============================================= */
.gallery {
  background: var(--clr-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-card {
  background: var(--clr-bg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--t-mid) var(--ease);
  border: 1.5px solid rgba(255, 123, 92, 0.08);
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 123, 92, 0.2);
}

.before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
}

.ba-col { position: relative; overflow: hidden; }

.ba-col img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.ba-label {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  background: rgba(26, 26, 46, 0.75);
  color: white;
  padding: 0.2em 0.65em;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}

.ba-label--after {
  background: var(--gradient-primary);
}

.ba-divider {
  width: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  font-size: 1rem;
  z-index: 3;
  flex-shrink: 0;
}

.gallery-card-info {
  padding: 1.1rem 1.25rem;
}

.pet-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--clr-deep);
  margin-bottom: 0.4rem;
}

.pet-detail {
  font-size: 0.8rem;
  color: var(--clr-muted);
  line-height: 1.6;
}

.pet-detail strong { color: var(--clr-body); }

/* =============================================
   14. TESTIMONIALS
   ============================================= */
.testimonials {
  background: var(--clr-bg-3);
  position: relative;
  overflow: hidden;
}

.testimonials-bg-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(46, 196, 182, 0.12) 0%, transparent 70%);
  top: -100px;
  right: -200px;
  pointer-events: none;
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform var(--t-slow) var(--ease);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0.5rem 0.25rem;
}

@media (min-width: 700px) {
  .testimonial-slide {
    min-width: 50%;
    padding: 0.5rem 0.75rem;
  }
}

@media (min-width: 1000px) {
  .testimonial-slide {
    min-width: 33.333%;
  }
}

.t-card {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  height: 100%;
  border: 1.5px solid rgba(46, 196, 182, 0.15);
  transition: all var(--t-mid) var(--ease);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.t-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(46, 196, 182, 0.14);
}

.t-stars {
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.t-text {
  font-size: 0.92rem;
  color: var(--clr-body);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  quotes: "\201C" "\201D";
}

.t-text::before { content: open-quote; color: var(--clr-primary); font-size: 1.5rem; line-height: 0; vertical-align: -0.4rem; }

.t-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.t-author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--clr-deep);
}

.t-author span {
  font-size: 0.78rem;
  color: var(--clr-muted);
}

/* Controls */
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.t-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-white);
  color: var(--clr-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  transition: all var(--t-mid) var(--ease-bounce);
  border: 1.5px solid rgba(255, 123, 92, 0.15);
}

.t-btn:hover {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.1);
  border-color: transparent;
}

.t-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 123, 92, 0.25);
  border: none;
  cursor: pointer;
  transition: all var(--t-mid) var(--ease-bounce);
  padding: 0;
}

.t-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--clr-primary);
}


/* =============================================
   15. SERVICE AREAS CON MAPA
   ============================================= */
.areas {
  background: var(--clr-bg-2);
}

/* Layout principal: Mapa + Info */
.areas-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: stretch;
}

/* ===== MAPA (ancho completo, sin pines) ===== */
.areas-map-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--clr-white);
  min-height: 300px;
  width: 100%;
}

.areas-map-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.areas-map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: block;
}

@media (min-width: 700px) {
  .areas-map-wrapper,
  .areas-map-container,
  .areas-map-container iframe {
    min-height: 400px;
  }
}

@media (min-width: 1000px) {
  .areas-map-wrapper,
  .areas-map-container,
  .areas-map-container iframe {
    min-height: 480px;
  }
}

/* ===== CTA BOX CENTRADO DEBAJO DEL MAPA ===== */
.areas-cta-box {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  border: 1.5px solid rgba(191, 27, 180, 0.1);
  text-align: center;
  transition: all var(--t-mid) var(--ease);
  max-width: 560px;
  margin-inline: auto;
  width: 100%;
}

.areas-cta-box:hover {
  border-color: rgba(191, 27, 180, 0.25);
  box-shadow: var(--shadow-card-hover);
}

.areas-cta-text {
  font-size: 0.95rem;
  color: var(--clr-body);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.areas-cta-box .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 480px) {
  .areas-cta-box {
    padding: 1.5rem;
  }

  .areas-cta-text {
    font-size: 0.85rem;
  }
}
/* =============================================
   16. FAQ
   ============================================= */
.faq { background: var(--clr-white); }

.faq-container { max-width: 820px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.faq-item {
  background: var(--clr-bg);
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(255, 123, 92, 0.08);
  overflow: hidden;
  transition: border-color var(--t-mid) var(--ease);
}

.faq-item[open] {
  border-color: rgba(255, 123, 92, 0.25);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--clr-deep);
  user-select: none;
  transition: color var(--t-fast);
}

.faq-question:hover { color: var(--clr-primary); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--clr-primary);
  transition: transform var(--t-mid) var(--ease-bounce);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.92rem;
  color: var(--clr-muted);
  line-height: 1.75;
}

.faq-answer ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-block: 0.5rem;
}

.faq-answer li { margin-bottom: 0.25rem; }

.faq-answer p + p { margin-top: 0.65rem; }

/* FAQ contact box */
.faq-contact-inner {
  background: var(--gradient-hero);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  border: 1.5px solid rgba(255, 123, 92, 0.15);
}

.faq-contact-emoji {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.faq-contact-inner div { flex: 1; min-width: 200px; }

.faq-contact-inner h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--clr-deep);
  margin-bottom: 0.35rem;
}

.faq-contact-inner p {
  font-size: 0.88rem;
  color: var(--clr-muted);
}

/* =============================================
   17. FINAL CTA SECTION
   ============================================= */
.section-cta {
  background: var(--gradient-cta);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.3;
}

.cta-blob-1 {
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.3);
  top: -100px; left: -100px;
}

.cta-blob-2 {
  width: 300px; height: 300px;
  background: rgba(255, 209, 102, 0.4);
  bottom: -80px; right: -80px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-inline: auto;
}

.cta-paws {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.25em;
  opacity: 0.8;
}

.section-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.text-gradient-light {
  background: linear-gradient(135deg, #ffe8de 0%, #ffd166 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.cta-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.cta-badges span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.15);
  padding: 0.35em 0.9em;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* =============================================
   18. CONTACT SECTION
   ============================================= */
.contact { background: var(--clr-bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--clr-white);
  border: 1.5px solid rgba(255, 123, 92, 0.1);
  transition: all var(--t-mid) var(--ease);
  text-decoration: none;
  color: inherit;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.contact-card--phone:hover { border-color: rgba(46, 196, 182, 0.4); }
.contact-card--email:hover { border-color: rgba(255, 123, 92, 0.35); }
.contact-card--facebook:hover { border-color: #1877F2; }
.contact-card--instagram:hover { border-color: #E1306C; }

.contact-card-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--clr-bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card--facebook .contact-card-icon { color: #1877F2; background: #e8f0fe; }
.contact-card--instagram .contact-card-icon { color: #E1306C; background: #fce8f3; }

.contact-card-info { flex: 1; }

.contact-label {
  display: block;
  font-size: 0.72rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 0.2rem;
}

.contact-card-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--clr-deep);
  overflow-wrap: break-word;
}

.contact-hint {
  font-size: 0.75rem;
  color: var(--clr-primary);
  font-weight: 600;
}

.contact-card-arrow {
  font-size: 1.1rem;
  color: var(--clr-primary);
  opacity: 0.5;
  transition: opacity var(--t-fast), transform var(--t-fast);
  flex-shrink: 0;
}

.contact-card:hover .contact-card-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* =============================================
   BOOKING FORM
============================================= */
.booking-form {
  background: var(--clr-white);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1.5px solid rgba(217, 26, 114, 0.08);
  max-width: 820px;
  margin: 0 auto;
}

.booking-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-deep);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: 2px solid #e8e8e8;
  border-radius: var(--radius-md);
  transition: all var(--t-mid) var(--ease);
  background: var(--clr-bg);
  color: var(--clr-body);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #D91A72;
  box-shadow: 0 0 0 4px rgba(217, 26, 114, 0.1);
  background: white;
}

.form-group input.error,
.form-group select.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1);
}

.form-error {
  font-size: 0.78rem;
  color: #e74c3c;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-checkbox {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 0.15rem;
  accent-color: #D91A72;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--clr-muted);
  cursor: pointer;
}

.booking-form .btn {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.form-status {
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 600;
  display: none;
}

.form-status.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 2px solid #c3e6cb;
}

.form-status.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 2px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 768px) {
  .booking-form {
    padding: 1.5rem;
  }
  
  .booking-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .booking-form {
    padding: 1rem;
  }
}
/* =============================================
   19. FOOTER
   ============================================= */
.footer {
  background: var(--clr-deep);
  color: rgba(255,255,255,0.75);
  padding-top: 4rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

@media (min-width: 700px) {
  .footer-inner { grid-template-columns: 2fr 1fr 1.5fr; }
}

/* Footer Logo */
.footer .logo-name { color: white; }

.footer .logo {
  gap: 1.1rem;
  margin-bottom: 0.25rem;
}

.footer .logo-img {
  width: 150px;
  height: 150px;
}

@media (max-width: 480px) {
  .footer .logo-img {
    width: 130px;
    height: 130px;
  }
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.5rem;
  line-height: 1.5;
}

.footer-areas {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.35rem;
}

/* Footer Links */
.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}

.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--t-fast);
}

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

/* Footer Contact */
.footer-contact-item {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.5rem;
  transition: color var(--t-fast);
}

.footer-contact-item:hover { color: var(--clr-primary-light); }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: all var(--t-mid) var(--ease-bounce);
}

.footer-social a:hover {
  background: var(--clr-primary);
  color: white;
  transform: scale(1.12);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: 1.25rem;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

@media (min-width: 600px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-credit {
  color: var(--clr-primary-light);
  font-weight: 700;
  transition: color var(--t-fast);
}

.footer-credit:hover { color: white; }

/* =============================================
   20. SCROLL ANIMATIONS
   ============================================= */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

[data-animate="fade-left"] {
  transform: translateX(40px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays via data-delay */
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="480"] { transition-delay: 0.48s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="80"]  { transition-delay: 0.08s; }
[data-delay="160"] { transition-delay: 0.16s; }
[data-delay="240"] { transition-delay: 0.24s; }
[data-delay="320"] { transition-delay: 0.32s; }
[data-delay="400"] { transition-delay: 0.4s; }

/* =============================================
   21. RESPONSIVE FINE-TUNING
   ============================================= */
@media (max-width: 599px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .card-rating, .card-stat { display: none; }
  .hero-float-card { display: none; }
  .area-card--wide { flex-direction: column; text-align: center; }
  .faq-contact-inner { flex-direction: column; text-align: center; }
}

@media (min-width: 900px) {
  .section-header { margin-bottom: 4rem; }
  .why-grid, .services-grid { gap: 1.5rem; }
}
/* =============================================
   22. PAW HOVER ANIMATION FOR BUTTON
   ============================================= */
.btn-paw-hover {
  position: relative;
  overflow: hidden;
  transition: all var(--t-mid) var(--ease-bounce);
}

.btn-paw-hover:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(46, 196, 182, 0.5);
}

.btn-paw-hover::before,
.btn-paw-hover::after {
  content: "🐾";
  position: absolute;
  font-size: 1.2rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s var(--ease-bounce);
  z-index: 1;
 
}

.btn-paw-hover::before {
  top: 50%;
  left: -10px;
  transform: translate(-50%, -50%) rotate(-20deg);
}

.btn-paw-hover::after {
  top: 50%;
  right: -10px;
  transform: translate(50%, -50%) rotate(20deg);
}

.btn-paw-hover:hover::before {
  left: 15px;
  opacity: 0.6;
  animation: pawFloat 0.6s ease-out;
}

.btn-paw-hover:hover::after {
  right: 15px;
  opacity: 0.6;
  animation: pawFloat 0.6s ease-out 0.1s;
}

@keyframes pawFloat {
  0% {
    transform: translate(-50%, -50%) scale(0.5) rotate(-20deg);
    opacity: 0;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2) rotate(-20deg);
    opacity: 0;
  }
}

.btn-paw-hover:hover::after {
  animation: pawFloatRight 0.6s ease-out 0.1s;
}

@keyframes pawFloatRight {
  0% {
    transform: translate(50%, -50%) scale(0.5) rotate(20deg);
    opacity: 0;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    transform: translate(50%, -50%) scale(1.2) rotate(20deg);
    opacity: 0;
  }
}

/* Imagen del hero optimizada */
.hero-main-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* Ajuste responsive para móviles */
@media (max-width: 768px) {
  .btn-paw-hover::before,
  .btn-paw-hover::after {
    display: none; /* Oculta huellas en móviles para mejor rendimiento */
  }
}
/* =============================================
   @FONT-FACE para Snowflakes (archivo local)
   ============================================= */
@font-face {
  font-family: 'Snowflakes';
  src: url('fonts/Snowflakes.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}