/* =============================================
   DD VetCare & Surgery — Design System
   ============================================= */

:root {
  --font-color: #5a7080;
  --heading: #1a3a52;
  --link: #1a8fc4;
  --hero-font-color-text: #1e4d6b;
  --bg-5: #d6eef8;
  --bg-3: #9dd4ef;
  --bg-2: #e8f6fc;
  --bg-4: #4aadcf;
  --bg-hover: #c5e8f7;
  --yellow-bg: #f0f9ff;
  --blue-bg: #dff3fb;
  --bg: #f5fbff;
  --pink-accent: #ffe8d6;
  --mint-accent: #b8ece8;
  --whatsapp: #25d366;
  --benefits-bg: linear-gradient(135deg, #0f5f7a 0%, #1a8fc4 50%, #5bb8d9 100%);
  --white: #ffffff;
  --shadow: 0 8px 32px rgba(26, 79, 114, 0.1);
  --shadow-hover: 0 16px 44px rgba(26, 79, 114, 0.16);
  --shadow-soft: 0 4px 20px rgba(26, 143, 196, 0.12);
  --radius-pill: 50px;
  --radius-bubble: 28px;
  --container: 1225px;
  --nav-height: 100px;
  --section-pad: 60px;
  --font-body: 'Karla', sans-serif;
  --font-heading: 'Nunito', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--font-color);
  background: var(--white);
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(157, 212, 239, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(184, 236, 232, 0.15) 0%, transparent 50%);
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--link);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--heading);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Typography ---- */

.section-heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--heading);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.section-subtext {
  font-size: 1.05rem;
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.pill {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--link);
  background: var(--bg-2);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
  border: 2px solid rgba(26, 143, 196, 0.15);
}

.pill--light {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.5);
}

.brand-paw {
  display: inline-block;
  margin-right: 6px;
  font-size: 1.1em;
  animation: paw-wiggle 3s ease-in-out infinite;
}

@keyframes paw-wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-8deg); }
  75% { transform: rotate(8deg); }
}

/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 55px;
  padding: 8px 8px 8px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: var(--heading);
}

.btn--primary {
  background: var(--bg-3);
}

.btn--primary:hover {
  background: var(--bg-hover);
  color: var(--heading);
}

.btn--primary:hover .btn__arrow {
  background: var(--bg-4);
  transform: translateX(4px);
}

.btn__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 47px;
  min-width: 47px;
  border-radius: 50%;
  background: var(--bg-4);
  color: var(--white);
  transition: background 0.25s ease, transform 0.25s ease;
}

.btn--sm {
  min-height: 48px;
  padding: 6px 6px 6px 22px;
  font-size: 0.875rem;
}

.btn--sm .btn__arrow {
  width: 38px;
  height: 38px;
  min-width: 38px;
}

.btn--block {
  width: 100%;
  margin-top: auto;
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--bg-3);
  padding: 12px 24px;
  min-height: 48px;
  justify-content: center;
}

.btn--outline:hover {
  background: var(--bg-2);
  color: var(--heading);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  padding: 12px 24px;
  min-height: 48px;
  justify-content: center;
  gap: 8px;
}

.btn--whatsapp:hover {
  background: #1ebe57;
  color: var(--white);
}

/* ---- Navbar ---- */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(245, 251, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(157, 212, 239, 0.5);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.navbar__brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--heading);
  white-space: nowrap;
}

.navbar__brand:hover {
  color: var(--link);
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__links {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.navbar__links a {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--heading);
}

.navbar__links a:hover {
  color: var(--link);
}

.navbar__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--heading);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

.navbar__toggle.is-active .hamburger {
  background: transparent;
}

.navbar__toggle.is-active .hamburger::before {
  transform: translateY(7px) rotate(45deg);
}

.navbar__toggle.is-active .hamburger::after {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 58, 82, 0.45);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.is-visible {
  opacity: 1;
}

/* Mobile drawer */
@media (max-width: 991px) {
  .navbar__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--nav-height) + 24px) 32px 32px;
    background: var(--white);
    box-shadow: -8px 0 30px rgba(26, 58, 82, 0.12);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    gap: 2rem;
  }

  .navbar__nav.is-open {
    transform: translateX(0);
  }

  .navbar__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .navbar__links a {
    font-size: 1.05rem;
  }

  .nav-overlay {
    display: block;
    pointer-events: none;
  }

  .nav-overlay.is-visible {
    pointer-events: auto;
  }
}

@media (min-width: 992px) {
  .navbar__links {
    display: flex;
  }

  .navbar__toggle {
    display: none;
  }
}

/* ---- Hero ---- */

.hero {
  background: var(--bg-5);
  padding: 40px 0 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='%231a8fc4' fill-opacity='0.07'%3E%3Cellipse cx='20' cy='15' rx='5' ry='6'/%3E%3Cellipse cx='30' cy='12' rx='4' ry='5'/%3E%3Cellipse cx='40' cy='15' rx='5' ry='6'/%3E%3Cellipse cx='25' cy='22' rx='4' ry='5'/%3E%3Cellipse cx='35' cy='22' rx='4' ry='5'/%3E%3Cellipse cx='30' cy='28' rx='6' ry='7'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__paw {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.2;
  animation: float-paw 6s ease-in-out infinite;
}

.hero__paw--1 { top: 12%; left: 8%; animation-delay: 0s; }
.hero__paw--2 { top: 55%; right: 6%; font-size: 2rem; animation-delay: 2s; }
.hero__paw--3 { bottom: 25%; left: 15%; font-size: 1.25rem; animation-delay: 4s; }

@keyframes float-paw {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(10deg); }
}

.hero__grid {
  position: relative;
  z-index: 1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding-bottom: 40px;
}

.hero__image-wrap {
  order: 2;
  display: flex;
  justify-content: center;
}

.hero__image-frame {
  position: relative;
  display: inline-block;
}

.hero__image {
  border-radius: var(--radius-bubble);
  max-height: 420px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow), 0 0 0 6px var(--white), 0 0 0 10px var(--bg-3);
}

.hero__sticker {
  position: absolute;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: var(--white);
  box-shadow: var(--shadow);
  white-space: nowrap;
  animation: sticker-bounce 4s ease-in-out infinite;
}

.hero__sticker--dog {
  top: 12px;
  right: -8px;
  background: var(--mint-accent);
  color: var(--heading);
}

.hero__sticker--cat {
  bottom: 20px;
  left: -12px;
  background: var(--pink-accent);
  color: var(--heading);
  animation-delay: 1.5s;
}

@keyframes sticker-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero-chip {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.65);
  color: var(--heading);
  border: 2px solid rgba(26, 143, 196, 0.2);
}

.hero__image.is-floating {
  animation: float 5s ease-in-out infinite;
}

.hero__content {
  order: 1;
  text-align: center;
}

.hero__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
}

.hero__title-line {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.75rem, 10vw, 4.5rem);
  line-height: 1.05;
  color: var(--hero-font-color-text);
}

.hero__title-line--accent {
  font-size: clamp(3.25rem, 12vw, 5.5rem);
  color: var(--link);
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--hero-font-color-text);
  margin-bottom: 1rem;
}

.hero__body {
  max-width: 480px;
  margin: 0 auto 1.75rem;
  color: var(--font-color);
}

.hero__content .btn {
  margin: 0 auto;
}

/* Hero curve bar */
.hero__curve {
  background: var(--bg-3);
  padding: 20px 0;
  border-radius: 40px 40px 0 0;
  margin-top: 0;
}

.hero__curve-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__curve-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: url('https://images.pexels.com/photos/1805164/pexels-photo-1805164.jpeg?auto=compress&cs=tinysrgb&w=200') center/cover no-repeat;
  border: 3px solid var(--white);
  flex-shrink: 0;
}

.hero__curve-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--hero-font-color-text);
}

.hero__curve-link strong {
  color: var(--link);
}

.hero__curve-link:hover {
  color: var(--heading);
}

/* Hero animations */
.hero-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (min-width: 768px) {
  .hero {
    padding: 60px 0 0;
  }

  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding-bottom: 60px;
  }

  .hero__image-wrap {
    order: 1;
  }

  .hero__content {
    order: 2;
    text-align: left;
  }

  .hero__body {
    margin: 0 0 1rem;
  }

  .hero__chips {
    justify-content: flex-start;
  }

  .hero__content .btn {
    margin: 0;
  }

  .hero__image {
    max-height: 520px;
  }
}

@media (min-width: 992px) {
  .hero__title-line {
    font-size: clamp(3.5rem, 5vw, 4.8125rem);
  }

  .hero__title-line--accent {
    font-size: clamp(4.5rem, 7vw, 6rem);
  }
}

@media (min-width: 1280px) {
  .hero__title-line {
    font-size: 77px;
  }

  .hero__title-line--accent {
    font-size: 96px;
  }
}

/* ---- Sections ---- */

.section {
  padding: var(--section-pad) 0;
}

@media (min-width: 992px) {
  :root {
    --section-pad: 100px;
  }
}

@media (min-width: 1280px) {
  :root {
    --section-pad: 140px;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Intro ---- */

.intro {
  background: var(--white);
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.intro-card {
  background: var(--white);
  border: 2px solid rgba(157, 212, 239, 0.5);
  border-radius: var(--radius-bubble);
  padding: 2rem 1.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.intro-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--link);
}

.intro-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  line-height: 1;
}

.intro-card__icon--purple { background: var(--bg-2); }
.intro-card__icon--blue { background: var(--blue-bg); }
.intro-card__icon--pink { background: var(--pink-accent); }

.intro-icon-pop {
  transform: scale(0.6);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
}

.intro-icon-pop.is-popped {
  transform: scale(1);
  opacity: 1;
}

.intro-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--heading);
  margin-bottom: 0.75rem;
}

.intro-card__text {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.intro-card__link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .intro__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

/* ---- About ---- */

.about {
  background: var(--bg);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-top: 2rem;
}

.about-card {
  background: var(--white);
  border-radius: var(--radius-bubble);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid rgba(157, 212, 239, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: var(--shadow-hover);
}

.about-card__image {
  position: relative;
}

.about-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  color: var(--heading);
}

.about-card__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.about-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--heading);
  padding: 1.25rem 1.5rem 0.5rem;
}

.about-card__text {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-card__image img {
    height: 200px;
  }
}

@media (min-width: 992px) {
  .about-card__image img {
    height: 240px;
  }
}

/* ---- Benefits ---- */

.benefits {
  background: var(--benefits-bg);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: '🐾';
  position: absolute;
  font-size: 8rem;
  opacity: 0.06;
  top: -20px;
  right: 5%;
  pointer-events: none;
}

.benefits::after {
  content: '🐾';
  position: absolute;
  font-size: 5rem;
  opacity: 0.06;
  bottom: -10px;
  left: 8%;
  pointer-events: none;
}

.benefits__inner {
  text-align: center;
}

.benefits__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.benefits__subtext {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}

.benefits__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.benefits__tag {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--heading);
  background: rgba(255, 255, 255, 0.92);
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  transition: transform 0.25s ease, background 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.benefits__tag:hover {
  transform: translateY(-3px) scale(1.03);
  background: var(--white);
}

/* ---- Services ---- */

.services {
  background: var(--blue-bg);
}

.services__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.5rem;
}

.service-tag {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--heading);
  background: var(--white);
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
  border: 2px solid rgba(26, 143, 196, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: default;
}

.service-tag:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-hover);
  background: var(--bg-2);
}

/* ---- Pricing ---- */

.pricing {
  background: var(--yellow-bg);
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-bubble);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border: 2px solid rgba(157, 212, 239, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.pricing-card__emoji {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.pricing-card--featured {
  border-color: var(--link);
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-2) 100%);
  position: relative;
}

.pricing-card--featured::before {
  content: '⭐ Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: var(--link);
  color: var(--white);
  padding: 5px 18px;
  border-radius: var(--radius-pill);
}

.pricing-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--heading);
  margin-bottom: 0.25rem;
}

.pricing-card__meta {
  font-size: 0.85rem;
  color: var(--link);
  font-weight: 600;
  margin-bottom: 1rem;
}

.pricing-card__desc {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  flex: 1;
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--heading);
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

/* ---- FAQ ---- */

.faq {
  background: var(--white);
}

.faq__list {
  max-width: 780px;
  margin-top: 2rem;
}

.faq-item {
  border: 2px solid rgba(157, 212, 239, 0.4);
  border-radius: 20px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  background: var(--white);
}

.faq-item[open] {
  box-shadow: var(--shadow);
  border-color: var(--link);
}

.faq-item__question {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--heading);
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--link);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-item__question::after {
  transform: rotate(45deg);
}

.faq-item__answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
}

.faq-item__answer a {
  font-weight: 600;
}

/* ---- Testimonials ---- */

.testimonials {
  background: var(--bg-2);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-bubble);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border: 2px solid rgba(157, 212, 239, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 8px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: var(--bg-3);
  line-height: 1;
  opacity: 0.5;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.testimonial-card__avatar {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  background: var(--bg-2);
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-soft);
}

.testimonial-card__text {
  font-size: 1rem;
  color: var(--heading);
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.testimonial-card__author {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--heading);
}

.testimonial-card__author span {
  font-weight: 400;
  color: var(--font-color);
}

.testimonials__note {
  text-align: center;
  margin-top: 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
}

.testimonials__note a {
  color: var(--link);
}

@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---- Contact ---- */

.contact {
  background: var(--bg);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.contact__clinic {
  font-size: 1.05rem;
  color: var(--heading);
  margin-bottom: 1rem;
}

.contact__detail {
  margin-bottom: 0.5rem;
}

.contact__detail a {
  font-weight: 600;
}

.contact__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.5rem;
}

.contact__map {
  border-radius: var(--radius-bubble);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 280px;
  border: 4px solid var(--bg-3);
}

.contact__map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

@media (min-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }

  .contact__map iframe {
    height: 360px;
  }
}

/* ---- Footer ---- */

.footer {
  background: linear-gradient(180deg, #0f4d66 0%, #1a3a52 100%);
  color: rgba(255, 255, 255, 0.75);
  padding: 48px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer__brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer__tagline {
  font-size: 0.9rem;
}

.footer__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

/* ---- Sticky WhatsApp ---- */

.sticky-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5);
  animation: whatsapp-pulse 2.5s ease-in-out infinite;
  transition: transform 0.2s ease, background 0.2s ease;
  border: 3px solid rgba(255, 255, 255, 0.4);
}

.sticky-whatsapp:hover {
  background: #1ebe57;
  color: var(--white);
  transform: scale(1.04);
  animation: none;
}

@keyframes whatsapp-pulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.75), 0 0 0 8px rgba(37, 211, 102, 0.15);
  }
}

/* ---- Reduced motion ---- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-animate,
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__image.is-floating,
  .hero__paw,
  .hero__sticker,
  .brand-paw {
    animation: none;
  }

  .intro-icon-pop {
    transform: none;
    opacity: 1;
    transition: none;
  }

  .sticky-whatsapp {
    animation: none;
  }

  .btn,
  .about-card,
  .pricing-card,
  .testimonial-card,
  .service-tag,
  .intro-card {
    transition: none;
  }
}
