@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Poppins:wght@600;700;800;900&display=swap');

:root {
  /* Color Palette */
  --color-bg: #F8EFEA; /* Soft warm peach/cream */
  --color-primary-orange: #F97316; /* Playful orange-red */
  --color-plum: #802B6D; /* Rich plum/purple */
  --color-plum-light: #F4E8F1; /* Light plum for badges */
  --color-yellow: #FBBF24; /* Starburst yellow */
  --color-yellow-light: #FEF3C7; /* Soft yellow for badge background */
  --color-text-dark: #3F2C24; /* Soft dark brown instead of harsh black */
  --color-text-muted: #6B5E57; /* Muted brown for descriptions */
  --color-white: #FFFFFF;

  /* Typography */
  --font-headings: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(63, 44, 36, 0.05);
  --shadow-md: 0 8px 16px rgba(63, 44, 36, 0.08);
  --shadow-lg: 0 16px 32px rgba(63, 44, 36, 0.12);
  --shadow-clay: 0 8px 16px rgba(63, 44, 36, 0.1), inset 0 -4px 0 rgba(0, 0, 0, 0.15);
  --shadow-clay-orange: 0 8px 16px rgba(249, 115, 22, 0.2), inset 0 -4px 0 rgba(0, 0, 0, 0.2);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

/* Layout Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* Floating Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  position: relative;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-headings);
  font-size: 28px;
  font-weight: 900;
  color: var(--color-primary-orange);
  transition: transform var(--transition-bounce);
}

.logo:hover {
  transform: scale(1.05);
}

.logo-paw {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

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

.nav-links a {
  text-decoration: none;
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-text-dark);
  text-transform: uppercase;
  transition: color var(--transition-fast), transform var(--transition-fast);
  position: relative;
  padding: 4px 0;
  cursor: pointer;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary-orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal);
}

.nav-links a:hover {
  color: var(--color-primary-orange);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-phone {
  text-decoration: none;
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-plum);
  border: 2px solid var(--color-plum);
  padding: 10px 24px;
  border-radius: 50px;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.nav-phone:hover {
  background-color: var(--color-plum);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.nav-phone:active {
  transform: translateY(0);
}

/* Hero Section */
.hero {
  padding: 40px 0 120px 0;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

/* Hero Left Column (Content) */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 10;
}

.badge {
  display: inline-flex;
  align-items: center;
  background-color: #FBBF24; /* Solid yellow background */
  color: var(--color-white); /* White text */
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  border: none;
  animation: fadeInDown 0.6s ease-out;
}

.hero-title {
  font-family: var(--font-headings);
  font-size: 80px;
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  animation: fadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-title span {
  display: block;
}

.hero-title .text-orange {
  color: var(--color-primary-orange);
}

.hero-title .text-plum {
  color: var(--color-plum);
}

.hero-description {
  font-size: 18px;
  color: var(--color-text-muted);
  max-width: 460px;
  margin-bottom: 40px;
  font-weight: 500;
  animation: fadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.cta-group {
  display: flex;
  gap: 20px;
  align-items: center;
  animation: fadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

/* Buttons Styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 50px;
  transition: all var(--transition-bounce);
  cursor: pointer;
  height: 56px;
  white-space: nowrap;
}

.btn-book {
  background-color: var(--color-primary-orange);
  color: var(--color-white);
  padding: 0 8px 0 28px; /* Leave space for icon circle */
  box-shadow: var(--shadow-clay-orange);
  border: none;
  gap: 16px;
}

.btn-book-circle {
  width: 40px;
  height: 40px;
  background-color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-orange);
  transition: transform var(--transition-bounce);
}

.btn-book:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.3), inset 0 -4px 0 rgba(0, 0, 0, 0.2);
}

.btn-book:hover .btn-book-circle {
  transform: rotate(15deg) scale(1.1);
}

.btn-book:active {
  transform: translateY(-1px);
}

.btn-schedule {
  background-color: var(--color-white);
  color: var(--color-text-dark);
  padding: 0 28px;
  border: 2px solid var(--color-white);
  box-shadow: var(--shadow-md);
  gap: 12px;
}

.btn-schedule-icon {
  color: var(--color-plum);
  width: 20px;
  height: 20px;
}

.btn-schedule:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: rgba(63, 44, 36, 0.1);
}

.btn-schedule:active {
  transform: translateY(-1px);
}

/* Hero Right Column (Visual) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
  animation: fadeIn 1s ease-out;
}

/* Giant Outline Text Behind Dog */
.outline-bg-text {
  position: absolute;
  font-family: var(--font-headings);
  font-size: 150px;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 3px var(--color-white);
  text-stroke: 3px var(--color-white);
  opacity: 0.8;
  z-index: 1;
  pointer-events: none;
  text-align: center;
  user-select: none;
  white-space: nowrap;
}

.outline-bg-text span {
  display: block;
}

/* Pomeranian Dog Container */
.dog-image-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.dog-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  /* Smooth fade-out at the bottom */
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
  animation: dogEntrance 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.1) both;
}

/* Floating Stickers */

/* 1. Yellow Starburst (Woof!) */
.sticker-starburst {
  position: absolute;
  top: 55%;
  left: -40px;
  transform: translateY(-50%);
  z-index: 3;
  width: 160px;
  height: 160px;
  cursor: pointer;
  animation: bob 4s ease-in-out infinite alternate;
  transition: transform var(--transition-bounce);
}

.sticker-starburst svg {
  width: 100%;
  height: 100%;
  animation: spinSlow 35s linear infinite;
  display: block;
}

.sticker-starburst-text {
  font-family: var(--font-headings);
  font-size: 22px;
  font-weight: 900;
  color: #000000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  z-index: 5;
  white-space: nowrap;
  pointer-events: none;
  text-shadow:
    -3px -3px 0 #fff,
     3px -3px 0 #fff,
    -3px  3px 0 #fff,
     3px  3px 0 #fff,
    -3px  0px 0 #fff,
     3px  0px 0 #fff,
     0px -3px 0 #fff,
     0px  3px 0 #fff,
     0px 4px 12px rgba(63, 44, 36, 0.2);
}

.sticker-starburst:hover {
  transform: scale(1.15) translateY(-50%);
}

/* 2. Floating Bone */
.sticker-bone {
  position: absolute;
  top: 35%;
  right: 15px;
  z-index: 3;
  width: 80px;
  height: auto;
  cursor: pointer;
  filter: drop-shadow(0 4px 8px rgba(249, 115, 22, 0.2));
  animation: float 5s ease-in-out infinite alternate;
  transition: transform var(--transition-bounce);
}

.sticker-bone:hover {
  transform: scale(1.2) rotate(15deg);
  filter: drop-shadow(0 8px 16px rgba(249, 115, 22, 0.4));
}

/* 3. Rating Pill Card */
.rating-card {
  position: absolute;
  bottom: 60px;
  right: -30px;
  z-index: 3;
  background-color: var(--color-white);
  border-radius: 20px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(63, 44, 36, 0.05);
  animation: slideInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
  transition: transform var(--transition-bounce), box-shadow var(--transition-fast);
}

.rating-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 40px rgba(63, 44, 36, 0.15);
}

.avatar-group {
  display: flex;
  align-items: center;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  margin-left: -12px;
  object-fit: cover;
  background-color: var(--color-plum-light);
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-size: 12px;
  font-weight: 800;
  color: var(--color-plum);
}

.rating-info {
  display: flex;
  flex-direction: column;
}

.rating-score {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-headings);
  font-weight: 900;
  font-size: 18px;
  color: var(--color-text-dark);
}

.rating-star-icon {
  width: 18px;
  height: 18px;
  fill: #F59E0B; /* Amber star */
  color: #F59E0B;
}

.rating-reviews {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

/* Bottom Ticker Tape Banner */
.ticker-container {
  position: relative;
  margin-top: -80px;
  margin-bottom: 0;
  left: -5%;
  width: 110%;
  background: linear-gradient(90deg, #F97316 0%, #EA580C 100%);
  padding: 18px 0;
  overflow: hidden;
  transform: rotate(-1.5deg);
  z-index: 15;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.25);
}

.ticker-wrap {
  display: flex;
  width: 100%;
}

.ticker {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  animation: ticker-scroll 35s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  padding: 0 40px;
  font-family: var(--font-headings);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ticker-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-yellow);
  border-radius: 50%;
  margin-right: 40px;
}

/* Keyframes & Animations */
@keyframes ticker-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dogEntrance {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(-15px) rotate(8deg);
  }
}

@keyframes bob {
  0% {
    transform: translateY(-50%) translateY(0px);
  }
  100% {
    transform: translateY(-50%) translateY(-12px);
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Design */

@media (max-width: 1100px) {
  .hero-title {
    font-size: 64px;
  }
  .outline-bg-text {
    font-size: 120px;
  }
  .rating-card {
    right: 0px;
  }
}

@media (max-width: 991px) {
  .nav-links {
    display: none; /* In a full site we would use a mobile menu drawer */
  }

  .hero {
    padding: 20px 0 100px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-description {
    max-width: 100%;
  }

  .cta-group {
    justify-content: center;
  }

  .hero-visual {
    height: 420px;
  }

  .outline-bg-text {
    font-size: 110px;
  }

  .dog-image-container {
    max-width: 360px;
  }

  .sticker-starburst {
    width: 90px;
    height: 90px;
    left: 20px;
  }

  .sticker-starburst-text {
    font-size: 16px;
  }

  .sticker-bone {
    width: 70px;
    right: 30px;
  }

  .rating-card {
    bottom: 40px;
    right: 20px;
    padding: 10px 20px;
  }

  .services-intro {
    margin-top: -35px;
  }

  .services-content-wrapper {
    padding: 100px 0 60px 0;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 16px 0;
  }

  .logo {
    font-size: 24px;
  }

  .nav-phone {
    padding: 8px 18px;
    font-size: 12px;
  }

  .badge {
    font-size: 12px;
    padding: 4px 12px;
    margin-bottom: 16px;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn {
    width: 100%;
    height: 50px;
  }

  .btn-book {
    padding: 0 6px 0 16px;
    justify-content: space-between;
    font-size: 13px;
  }

  .btn-book-circle {
    width: 38px;
    height: 38px;
  }

  .hero-visual {
    height: 340px;
  }

  .outline-bg-text {
    font-size: 76px;
  }

  .dog-image-container {
    max-width: 280px;
  }

  .sticker-starburst {
    width: 75px;
    height: 75px;
    left: 10px;
  }

  .sticker-starburst-text {
    font-size: 14px;
  }

  .sticker-bone {
    width: 60px;
    right: 15px;
    top: 25%;
  }

  .rating-card {
    bottom: 20px;
    right: 10px;
    padding: 8px 14px;
    gap: 10px;
  }

  .avatar {
    width: 28px;
    height: 28px;
    margin-left: -8px;
  }

  .rating-score {
    font-size: 15px;
  }

  .rating-reviews {
    font-size: 9px;
  }

  .ticker-container {
    padding: 12px 0;
  }

  .ticker-item {
    font-size: 15px;
    padding: 0 20px;
  }

  .ticker-dot {
    margin-right: 20px;
  }

  .services-intro {
    margin-top: -25px;
  }

  .services-content-wrapper {
    padding: 80px 0 40px 0;
  }
}

/* ==========================================
   SERVICES SECTION (SECTION 2)
   ========================================== */

.services-intro {
  background-color: var(--color-white);
  padding: 0 0 80px 0;
  position: relative;
  overflow: hidden;
  margin-top: -40px;
  z-index: 10;
}



/* Services Content Area */
.services-content-wrapper {
  background-color: var(--color-white);
  padding: 120px 0 100px 0;
}

.services-main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.services-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 80px auto;
}

.services-title {
  font-family: var(--font-headings);
  font-size: 52px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--color-text-dark);
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.services-title span {
  color: var(--color-primary-orange);
}

.yellow-underline {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: auto;
  pointer-events: none;
}

.services-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-top: 24px;
}

/* Features Container with Illustrations */
.services-features-container {
  display: grid;
  grid-template-columns: 240px 1fr 240px;
  gap: 32px;
  align-items: center;
}

/* Left Illustration Container */
.illustration-left {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.illustration-left .ill-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(63, 44, 36, 0.08));
  animation: float-puppy 6s ease-in-out infinite alternate;
}

/* Flying Hair Particles */
.hair-particle {
  position: absolute;
  background-color: var(--color-text-dark);
  border-radius: 50px;
  width: 8px;
  height: 2px;
  opacity: 0.6;
}

.hp-1 { top: 30%; left: 10%; transform: rotate(15deg); animation: fly-hair 2s infinite ease-in-out; }
.hp-2 { top: 45%; right: 10%; transform: rotate(-25deg); animation: fly-hair 2.5s infinite ease-in-out 0.5s; }
.hp-3 { bottom: 30%; left: 30%; transform: rotate(40deg); animation: fly-hair 1.8s infinite ease-in-out 1s; }

@keyframes fly-hair {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0; }
  20% { opacity: 0.8; }
  100% { transform: translate(-20px, 15px) scale(0.6) rotate(45deg); opacity: 0; }
}

@keyframes float-puppy {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-8px) rotate(-2deg); }
}

/* Right Illustration Container */
.illustration-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.illustration-right .ill-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(63, 44, 36, 0.08));
  animation: float-spa 5s ease-in-out infinite alternate;
}

/* Spa Bubbles */
.spa-bubble {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(30, 136, 229, 0.15);
  border: 1px solid rgba(30, 136, 229, 0.3);
}

.sb-1 { width: 16px; height: 16px; top: 20%; right: 20%; animation: bob-bubble 3s infinite ease-in-out alternate; }
.sb-2 { width: 24px; height: 24px; top: 10%; left: 10%; animation: bob-bubble 4s infinite ease-in-out alternate 0.5s; }

@keyframes bob-bubble {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-10px) scale(1.1); }
}

@keyframes float-spa {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-8px) rotate(2deg); }
}

/* Features Grid List */
.features-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-item {
  background-color: var(--color-bg); /* Soft cream */
  border-radius: 24px;
  padding: 36px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-bounce);
  border: 2px solid transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-item:hover {
  transform: translateY(-8px);
  background-color: var(--color-white);
  border-color: var(--color-primary-orange);
  box-shadow: var(--shadow-lg);
}

.feature-icon-container {
  width: 72px;
  height: 72px;
  background-color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-orange);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-bounce), background-color var(--transition-fast), color var(--transition-fast);
}

.feature-item:hover .feature-icon-container {
  transform: scale(1.1);
}

.feature-icon-container svg,
.feature-icon-container img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transition: filter var(--transition-fast);
}

.feature-title {
  font-family: var(--font-headings);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 6px;
  line-height: 1.2;
}

.feature-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* Bottom Paws Banner */
.paws-banner {
  background-color: #EBF2FA; /* Super light blue-grey */
  height: 48px;
  width: 100%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23D4E3F7'><circle cx='8' cy='7' r='2.5'/><circle cx='12' cy='5' r='2.5'/><circle cx='16' cy='7' r='2.5'/><path d='M12 10.5c-3 0-5.5 2-5.5 5 0 2 2.5 3.5 5.5 3.5s5.5-1.5 5.5-3.5c0-3-2.5-5-5-5z'/></svg>");
  background-size: 48px 48px;
  background-repeat: repeat-x;
  background-position: center;
  border-top: 1px solid rgba(30, 136, 229, 0.08);
}

/* ==========================================
   SERVICES SECTION RESPONSIVE STYLES
   ========================================== */

@media (max-width: 991px) {
  .services-features-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .illustration-left {
    order: 1;
    max-width: 180px;
    margin: 0 auto;
  }

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

  .illustration-right {
    order: 3;
    max-width: 180px;
    margin: 0 auto;
  }

  .services-title {
    font-size: 40px;
  }

  .yellow-underline {
    width: 200px;
    bottom: -10px;
  }

  }

  @media (max-width: 480px) {
    .features-list {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }

    .feature-item {
      padding: 16px 10px;
      border-radius: 16px;
    }

    .feature-icon-container {
      width: 48px;
      height: 48px;
      margin-bottom: 12px;
    }

    .feature-icon-container svg,
    .feature-icon-container img {
      width: 24px;
      height: 24px;
    }

    .feature-title {
      font-size: 14px;
    }

    .feature-subtitle {
      font-size: 11px;
    }

    .services-title {
      font-size: 32px;
    }

    .yellow-underline {
      width: 160px;
    }
  }

/* ==========================================
   EXPERIENCE SECTION (SECTION 3)
   ========================================== */

/* Wave Transition between Section 2 (white) and Section 3 (cream) */
.wave-transition-experience {
  width: 100%;
  height: 80px;
  background-color: transparent;
  margin: 0;
  padding: 0;
  line-height: 0;
  position: relative;
  z-index: 10;
}

.wave-transition-experience svg {
  display: block;
  width: 100%;
  height: 100%;
}

.experience-section {
  background-color: #FDF9F6;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><path d='M40 45c-2 0-3.5 1.5-3.5 3.5s1.5 3.5 3.5 3.5 3.5-1.5 3.5-3.5-1.5-3.5-3.5-3.5zm-5.5-4c-1 0-1.8-.8-1.8-1.8s.8-1.8 1.8-1.8 1.8.8 1.8 1.8-.8 1.8-1.8 1.8zm11 0c-1 0-1.8-.8-1.8-1.8s.8-1.8 1.8-1.8 1.8.8 1.8 1.8-.8 1.8-1.8 1.8zm-7.5-3c-1 0-1.8-.8-1.8-1.8s.8-1.8 1.8-1.8 1.8.8 1.8 1.8-.8 1.8-1.8 1.8z' fill='%23F4E6DC' opacity='0.45'/></svg>");
  background-repeat: repeat;
  padding: 0 0 120px 0;
  position: relative;
  z-index: 12;
}

.experience-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 0 24px;
}

/* Header Row */
.experience-header {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}

.experience-title-wrap {
  position: relative;
  display: inline-block;
}

.experience-title {
  font-family: var(--font-headings);
  font-size: 48px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--color-text-dark);
  position: relative;
}

.experience-title .heart-icon {
  display: inline-block;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  color: #EF4444;
  margin-left: 8px;
}

.experience-title .heart-icon svg {
  width: 100%;
  height: 100%;
}

.title-underline {
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 240px;
  height: auto;
}

.experience-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Content Row: Image & Cards */
.experience-content {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 64px;
  align-items: center;
}

/* Arched Image Container */
.experience-image-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 480px;
  margin: 0 auto;
}

/* Yellow arched background border */
.experience-image-wrap::before {
  content: '';
  position: absolute;
  top: 16px;
  left: -16px;
  width: 100%;
  height: 100%;
  border: 6px solid var(--color-yellow);
  border-radius: 200px 200px 24px 24px;
  z-index: 1;
  pointer-events: none;
}

/* Plum blob background splash */
.blob-plum-splash {
  position: absolute;
  top: -24px;
  right: -32px;
  width: 160px;
  height: 160px;
  background-color: var(--color-plum);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  transform: rotate(-10deg);
  opacity: 0.9;
}

.storefront-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 200px 200px 24px 24px;
  overflow: hidden;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.storefront-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right Cards Grid */
.experience-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.exp-card {
  background-color: var(--color-white);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(63, 44, 36, 0.04);
  transition: all var(--transition-bounce);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
}

.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249, 115, 22, 0.15);
}

.exp-card-icon {
  width: 48px;
  height: 48px;
  background-color: #FFF7ED;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-orange);
  margin-bottom: 20px;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.exp-card:hover .exp-card-icon {
  background-color: var(--color-primary-orange);
  color: var(--color-white);
}

.exp-card-icon svg,
.exp-card-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  transition: filter var(--transition-fast);
}

.exp-card:hover .exp-card-icon img {
  filter: brightness(0) invert(1);
}

.exp-card-title {
  font-family: var(--font-headings);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 10px;
}

.exp-card-text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Responsive for Section 3 */
@media (max-width: 991px) {
  .experience-section {
    padding: 0 0 80px 0;
    margin-top: -45px;
  }
  
  .experience-header {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
    text-align: center;
  }
  
  .title-underline {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .experience-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .experience-image-wrap {
    max-width: 320px;
    height: 380px;
  }
}

@media (max-width: 768px) {
  .experience-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .exp-card {
    padding: 16px 12px;
    border-radius: 16px;
  }

  .exp-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    margin-bottom: 12px;
  }

  .exp-card-icon svg,
  .exp-card-icon img {
    width: 20px;
    height: 20px;
  }

  .exp-card-title {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .exp-card-text {
    font-size: 11px;
    line-height: 1.4;
  }
}


/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform var(--transition-bounce), box-shadow var(--transition-fast);
  cursor: pointer;
  border: 2px solid var(--color-white);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid #25D366;
  border-radius: 50%;
  opacity: 0;
  animation: whatsapp-pulse 2s infinite;
  pointer-events: none;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Responsive WhatsApp Button */
@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
  }
  
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .experience-section {
    margin-top: -65px;
  }

  .experience-title {
    font-size: 36px;
  }
  
  .title-underline {
    width: 180px;
  }
}

/* ==========================================
   PACKAGES SECTION (SECTION 4)
   ========================================== */

.packages-section {
  background-color: var(--color-white);
  padding: 100px 0 120px 0;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.packages-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Header */
.packages-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px auto;
}

.packages-title-wrap {
  position: relative;
  display: inline-block;
  padding: 0 20px;
}

.packages-title {
  font-family: var(--font-headings);
  font-size: 48px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--color-text-dark);
  margin-bottom: 20px;
}

.packages-title .heart-icon-pink {
  display: inline-block;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  color: #EC407A; /* Playful pink heart */
  margin-left: 6px;
  animation: heartbeat 1.5s infinite;
}

.packages-title .heart-icon-pink svg {
  width: 100%;
  height: 100%;
}

.sparkles-left {
  position: absolute;
  left: -48px;
  top: -15px;
  width: 44px;
  height: 44px;
  pointer-events: none;
}

.header-dots-right {
  position: absolute;
  right: -45px;
  top: 15px;
  width: 40px;
  height: 40px;
  pointer-events: none;
}

.header-dots-right .dots-svg {
  width: 100%;
  height: 100%;
}

.packages-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-top: 24px;
}

/* Packages Cards Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.package-card {
  background-color: var(--color-white);
  border: 2px solid #F3ECE6;
  border-radius: 32px;
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-bounce);
  cursor: pointer;
  position: relative;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249, 115, 22, 0.15);
}

/* Card Dog Image Circle Frame */
.card-dog-image-wrapper {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 28px;
  transition: transform var(--transition-bounce), box-shadow 0.3s ease;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(63, 44, 36, 0.05);
}

.package-card:hover .card-dog-image-wrapper {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 12px 24px rgba(63, 44, 36, 0.12);
}

.card-dog-img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 4px 8px rgba(63, 44, 36, 0.1));
  transition: transform 0.5s ease;
}


/* Circle Colors matching Card Themes */
.color-orange-bg { background-color: #FFE5D9; }
.color-blue-bg { background-color: #E0F2F1; }
.color-purple-bg { background-color: #E1D8FA; }

/* Floating Doodles */
.doodle {
  position: absolute;
  z-index: 3;
  font-size: 24px;
  pointer-events: none;
  animation: float-doodle 3s ease-in-out infinite alternate;
}

.doodle-pink-heart {
  top: 8px;
  right: 8px;
  transform: rotate(15deg);
}

.doodle-spark {
  bottom: 18px;
  left: 12px;
  font-size: 18px;
  animation-delay: 0.5s;
}

.doodle-spark-blue {
  top: 14px;
  left: 12px;
  font-size: 18px;
  animation-delay: 0.2s;
}

.doodle-dots {
  bottom: 18px;
  right: 12px;
  font-size: 18px;
  font-weight: bold;
  color: var(--color-primary-orange);
  letter-spacing: 2px;
  animation-delay: 0.8s;
}

.doodle-crown {
  top: 6px;
  left: 50%;
  transform: translateX(-50%) rotate(-5deg);
  font-size: 24px;
}

/* Card Content details */
.package-card-title {
  font-family: var(--font-headings);
  font-size: 24px;
  font-weight: 850;
  color: var(--color-text-dark);
  margin-bottom: 8px;
  text-align: center;
}

.package-price {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-bottom: 28px;
  text-align: center;
}

.package-price span {
  color: #2563EB; /* Trust Blue Price text */
  font-size: 24px;
  font-weight: 900;
  margin-left: 4px;
}

/* Features List checklist */
.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  width: 100%;
  flex-grow: 1; /* Align button to bottom */
}

.package-features li {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.feature-star {
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--color-primary-orange);
  font-size: 16px;
  font-weight: bold;
}

/* Book Button */
.btn-package-book {
  width: 100%;
  height: 48px;
  background-color: #FBBF24; /* Solid Yellow */
  color: #2E1E16;
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-bounce);
  box-shadow: 0 4px 6px rgba(251, 191, 36, 0.15);
  border: none;
  cursor: pointer;
}

.btn-package-book:hover {
  background-color: #F59E0B;
  transform: scale(1.02) translateY(-2px);
  box-shadow: 0 8px 16px rgba(251, 191, 36, 0.3);
}

.btn-package-book:active {
  transform: scale(1);
}

/* Animations */
@keyframes float-doodle {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* Responsive Styles for Section 4 */

@media (max-width: 991px) {
  .packages-section {
    padding: 80px 0 100px 0;
  }

  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .package-card:last-child {
    grid-column: span 2;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .packages-title {
    font-size: 38px;
  }

  .sparkles-left {
    left: -35px;
    width: 36px;
    height: 36px;
  }

  .header-dots-right {
    right: -35px;
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 768px) {
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .package-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .packages-section {
    padding: 60px 0 80px 0;
  }

  .packages-title {
    font-size: 32px;
  }

  .sparkles-left,
  .header-dots-right {
    display: none; /* Hide decorative background clutter on mobile */
  }

  .package-card {
    padding: 32px 20px;
  }

  .card-dog-image-wrapper {
    width: 150px;
    height: 150px;
  }
}

/* ==========================================
   GALLERY SECTION (SECTION 5)
   ========================================== */

.gallery-section {
  background-color: var(--color-white);
  padding: 100px 0 120px 0;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gallery-header {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 60px;
}

.gallery-title-wrap {
  position: relative;
  display: inline-block;
}

.gallery-title {
  font-family: var(--font-headings);
  font-size: 52px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--color-text-dark);
}

.underline-wrapper {
  position: relative;
  display: inline-block;
}

.gallery-title .text-blue {
  color: #2563EB;
}

.gallery-title-underline {
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 12px;
  pointer-events: none;
}

.gallery-desc-wrap {
  position: relative;
  padding-right: 60px;
}

.gallery-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Floating Hearts */
.gallery-hearts-wrap {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  pointer-events: none;
}

.heart-pink {
  position: absolute;
  color: #EC407A;
  font-size: 16px;
  opacity: 0.55;
  animation: float-heart 3s ease-in-out infinite alternate;
}

.heart-pink.hp-1 {
  top: -10px;
  right: 15px;
  font-size: 18px;
  transform: rotate(-15deg);
}

.heart-pink.hp-2 {
  top: 15px;
  right: -5px;
  font-size: 13px;
  transform: rotate(10deg);
  animation-delay: 0.4s;
}

.heart-pink.hp-3 {
  top: 35px;
  right: 12px;
  font-size: 15px;
  transform: rotate(5deg);
  animation-delay: 0.8s;
}

@keyframes float-heart {
  0% {
    transform: translateY(0) scale(1) rotate(-5deg);
    opacity: 0.45;
  }
  100% {
    transform: translateY(-8px) scale(1.1) rotate(5deg);
    opacity: 0.7;
  }
}

/* Gallery Scroll Wrapper & Track */
.gallery-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
  position: relative;
}

.gallery-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: gallery-scroll 30s linear infinite;
  padding: 10px 0 30px 0;
}

.gallery-track:hover {
  animation-play-state: paused;
}

@keyframes gallery-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(calc(-50% - 12px), 0, 0);
  }
}

.gallery-card {
  background-color: var(--color-white);
  border: 2px solid #F3ECE6;
  border-radius: 28px;
  padding: 12px;
  flex: 0 0 280px;
  transition: transform var(--transition-bounce), border-color var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-card:active {
  cursor: grabbing;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249, 115, 22, 0.35); /* Brand orange border on hover */
}

.gallery-img-wrapper {
  width: 100%;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

/* Responsive Rules for Gallery Section */
@media (max-width: 991px) {
  .gallery-section {
    padding: 80px 0 100px 0;
  }

  .gallery-header {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
    margin-bottom: 48px;
  }

  .gallery-title {
    font-size: 38px;
  }

  .gallery-desc-wrap {
    padding-right: 0;
    max-width: 600px;
    margin: 0 auto;
  }

  .gallery-hearts-wrap {
    display: none; /* Hide hearts on tablet/mobile to save horizontal space */
  }

  .gallery-card {
    flex: 0 0 250px;
  }

  .gallery-img-wrapper {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .gallery-section {
    padding: 60px 0 80px 0;
  }

  .gallery-title {
    font-size: 32px;
  }

  .gallery-card {
    flex: 0 0 220px;
  }

  .gallery-img-wrapper {
    height: 240px;
  }
}


/* ============================================
   Section 6: Google Reviews / Testimonials
   ============================================ */

.reviews-section {
  background-color: var(--color-bg);
  padding: 100px 0 120px 0;
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 20%, rgba(249, 115, 22, 0.04) 0%, transparent 50%),
                    radial-gradient(circle at 90% 80%, rgba(128, 43, 109, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* ---- Section Header ---- */
.reviews-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  margin-bottom: 64px;
}

.reviews-header-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reviews-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-yellow-light);
  color: var(--color-text-dark);
  font-family: var(--font-headings);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 16px 6px 10px;
  border-radius: 50px;
  width: fit-content;
}

.reviews-badge-paw {
  width: 18px;
  height: 18px;
  fill: var(--color-primary-orange);
  flex-shrink: 0;
}

.reviews-title {
  font-family: var(--font-headings);
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-text-dark);
  letter-spacing: -0.02em;
}

.reviews-title-highlight {
  color: var(--color-primary-orange);
  position: relative;
  display: inline-block;
}

.reviews-title-highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 8'%3E%3Cpath d='M0,4 Q25,0 50,4 T100,4 T150,4 T200,4' stroke='%23F97316' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") repeat-x center;
  background-size: 100px 8px;
  opacity: 0.6;
}

.reviews-subtitle {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 480px;
}

/* ---- Overall Google Rating Block ---- */
.reviews-overall {
  background: var(--color-white);
  border-radius: 24px;
  padding: 28px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(249, 115, 22, 0.12);
  min-width: 200px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.reviews-overall::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ea4335, #fbbc04, #34a853, #4285f4);
  border-radius: 24px 24px 0 0;
}

.reviews-overall-logo {
  margin-bottom: 4px;
}

.google-logo-big {
  width: 40px;
  height: 40px;
}

.reviews-overall-score {
  font-family: var(--font-headings);
  font-size: 56px;
  font-weight: 900;
  color: var(--color-text-dark);
  line-height: 1;
}

.reviews-overall-stars {
  display: flex;
  gap: 4px;
}

.rev-star {
  font-size: 22px;
  color: #d1c4b8;
}

.rev-star.filled {
  color: #FBBF24;
}

.reviews-overall-count {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.reviews-overall-count strong {
  color: var(--color-text-dark);
}

/* ---- Reviews Grid ---- */
.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* ---- Individual Review Card ---- */
.review-card {
  background: var(--color-white);
  border-radius: 24px;
  padding: 28px;
  border: 2px solid #F3ECE6;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  right: 20px;
  font-family: Georgia, serif;
  font-size: 100px;
  color: rgba(249, 115, 22, 0.07);
  line-height: 1;
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249, 115, 22, 0.15);
}


/* ---- Card Top Row ---- */
.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}

.reviewer-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reviewer-name {
  font-family: var(--font-headings);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-dark);
}

.reviewer-date {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-muted);
}

/* Google Badge Chip */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f8f9fa;
  border: 1px solid #e8eaed;
  border-radius: 50px;
  padding: 5px 10px 5px 6px;
  flex-shrink: 0;
}

.google-badge-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.google-badge-text {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: #5f6368;
  letter-spacing: 0.01em;
}

/* ---- Stars Row ---- */
.review-stars {
  display: flex;
  gap: 2px;
  margin-top: -4px;
}

/* ---- Review Text ---- */
.review-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
  flex: 1;
}

/* ---- CTA Button ---- */
.reviews-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.reviews-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-white);
  color: var(--color-text-dark);
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 50px;
  border: 2px solid rgba(249, 115, 22, 0.2);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  letter-spacing: 0.01em;
}

.reviews-cta-google-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.reviews-cta-arrow {
  width: 20px;
  height: 20px;
  color: var(--color-primary-orange);
  transition: transform var(--transition-bounce);
  flex-shrink: 0;
}

.reviews-cta-btn:hover {
  background: var(--color-primary-orange);
  color: var(--color-white);
  border-color: var(--color-primary-orange);
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.3);
  transform: translateY(-3px);
}

.reviews-cta-btn:hover .reviews-cta-arrow {
  color: var(--color-white);
  transform: translateX(4px);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .reviews-header {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .reviews-overall {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 28px;
    text-align: left;
    width: 100%;
    min-width: unset;
    box-sizing: border-box;
  }

  .reviews-overall-logo { margin-bottom: 0; }

  .reviews-overall-score {
    font-size: 44px;
  }

  .reviews-title {
    font-size: 40px;
  }

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

@media (max-width: 768px) {
  .reviews-section {
    padding: 80px 0 100px 0;
  }

  .reviews-title {
    font-size: 34px;
  }

  .reviews-overall {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
    padding: 16px 20px;
    text-align: center;
  }

  .reviews-overall-logo { margin-bottom: 0; }

  .reviews-overall-score {
    font-size: 38px;
  }

  .reviews-overall-count {
    width: 100%;
    text-align: center;
  }

  .reviews-track {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .reviews-section {
    padding: 60px 0 80px 0;
  }

  .reviews-title {
    font-size: 30px;
  }

  .reviews-overall {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 16px;
    text-align: center;
    border-radius: 20px;
  }

  .reviews-overall-score {
    font-size: 48px;
  }

  .reviews-overall-count {
    text-align: center;
    width: 100%;
  }

  .reviews-cta-btn {
    font-size: 14px;
    padding: 14px 22px;
    gap: 10px;
  }

  .review-card {
    padding: 22px;
  }
}

/* ---- Reviews Pagination Controls ---- */
.reviews-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.reviews-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(249, 115, 22, 0.25);
  background: var(--color-white);
  color: var(--color-primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.reviews-nav-btn svg {
  width: 20px;
  height: 20px;
}

.reviews-nav-btn:hover:not(:disabled) {
  background: var(--color-primary-orange);
  color: var(--color-white);
  border-color: var(--color-primary-orange);
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.3);
  transform: scale(1.08);
}

.reviews-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.reviews-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(249, 115, 22, 0.2);
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.reviews-dot.active {
  background: var(--color-primary-orange);
  width: 28px;
  border-radius: 5px;
}

.reviews-dot:hover:not(.active) {
  background: rgba(249, 115, 22, 0.45);
}

/* ---- Slide Animations ---- */
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideOutLeft {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-40px); }
}
@keyframes slideOutRight {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(40px); }
}

.slide-in-right  { animation: slideInRight  0.35s ease both; }
.slide-in-left   { animation: slideInLeft   0.35s ease both; }
.slide-out-left  { animation: slideOutLeft  0.25s ease both; }
.slide-out-right { animation: slideOutRight 0.25s ease both; }

.reviews-track-wrapper { overflow: hidden; }


/* ============================================
   Section 7: FAQ
   ============================================ */

.faq-section {
  background-color: var(--color-bg);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 5% 50%, rgba(249,115,22,0.05) 0%, transparent 45%),
    radial-gradient(circle at 95% 20%, rgba(128,43,109,0.04) 0%, transparent 45%);
  pointer-events: none;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  position: relative;
}

/* ---- Left Column ---- */
.faq-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}

.faq-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-yellow-light);
  color: var(--color-text-dark);
  font-family: var(--font-headings);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 16px 6px 10px;
  border-radius: 50px;
  width: fit-content;
}

.faq-badge-icon {
  width: 18px;
  height: 18px;
  color: var(--color-primary-orange);
  flex-shrink: 0;
}

.faq-title {
  font-family: var(--font-headings);
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-text-dark);
  letter-spacing: -0.02em;
}

.faq-title-highlight {
  color: var(--color-primary-orange);
  position: relative;
  display: inline-block;
}

.faq-title-highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 8'%3E%3Cpath d='M0,4 Q25,0 50,4 T100,4 T150,4 T200,4' stroke='%23F97316' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") repeat-x center;
  background-size: 100px 8px;
  opacity: 0.6;
}

.faq-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 380px;
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-primary-orange);
  color: var(--color-white);
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(249,115,22,0.3);
  transition: all var(--transition-bounce);
  width: fit-content;
  letter-spacing: 0.01em;
}

.faq-cta-btn:hover {
  background: #e8650a;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(249,115,22,0.4);
}

.faq-cta-arrow {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-bounce);
}

.faq-cta-btn:hover .faq-cta-arrow {
  transform: translateX(4px);
}

/* Dog illustration bubble */
.faq-dog-wrap {
  position: relative;
  margin-top: 24px;
  width: 220px;
}

.faq-dog-bubble {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E1D8FA, #d4c8f5);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(128,43,109,0.12);
}

.faq-dog-img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(63,44,36,0.1));
}

/* Floating doodles */
.faq-doodle {
  position: absolute;
  font-weight: 900;
  line-height: 1;
  animation: floatDoodle 3s ease-in-out infinite;
  user-select: none;
  pointer-events: none;
}

.faq-doodle-q1 {
  top: -10px;
  right: -5px;
  font-size: 48px;
  color: rgba(249,115,22,0.18);
  animation-delay: 0s;
}

.faq-doodle-q2 {
  bottom: -10px;
  left: 210px;
  font-size: 32px;
  color: rgba(128,43,109,0.15);
  animation-delay: 1s;
}

.faq-doodle-star {
  top: 60px;
  right: -20px;
  font-size: 20px;
  color: var(--color-primary-orange);
  opacity: 0.5;
  animation-delay: 0.5s;
}

.faq-doodle-heart {
  bottom: 20px;
  right: 20px;
  font-size: 18px;
  color: #e879c0;
  opacity: 0.6;
  animation-delay: 1.5s;
}

@keyframes floatDoodle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-8px) rotate(6deg); }
}

/* ---- Right Column: Accordion ---- */
.faq-right {
  display: flex;
  flex-direction: column;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-white);
  border: 2px solid #F3ECE6;
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(249,115,22,0.2);
  box-shadow: var(--shadow-sm);
}

.faq-item--open {
  border-color: var(--color-primary-orange);
  box-shadow: 0 4px 20px rgba(249,115,22,0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-dark);
  transition: background 0.25s ease, color 0.25s ease;
  border-radius: 14px;
}

.faq-item--open .faq-question {
  background: rgba(249,115,22,0.07);
  color: var(--color-primary-orange);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(249,115,22,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary-orange);
}

.faq-item--open .faq-icon {
  background: var(--color-primary-orange);
  transform: rotate(180deg);
}

.faq-item--open .faq-icon svg {
  color: var(--color-white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}

.faq-answer p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text-muted);
  padding: 4px 24px 24px;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .faq-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-left {
    position: static;
  }

  .faq-title {
    font-size: 42px;
  }

  .faq-dog-wrap {
    display: none;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 80px 0 100px;
  }

  .faq-title {
    font-size: 34px;
  }

  .faq-question {
    font-size: 15px;
    padding: 18px 20px;
  }

  .faq-answer p {
    padding: 4px 20px 20px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 60px 0 80px;
  }

  .faq-title {
    font-size: 30px;
  }

  .faq-question {
    font-size: 14px;
    padding: 16px 16px;
  }

  .faq-answer p {
    font-size: 14px;
    padding: 4px 16px 18px;
  }

  .faq-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   Section 8: Contact Us
   ============================================ */

.contact-section {
  background-color: var(--color-bg);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 8% 30%, rgba(249,115,22,0.05) 0%, transparent 45%),
    radial-gradient(circle at 92% 70%, rgba(128,43,109,0.04) 0%, transparent 45%);
  pointer-events: none;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
  position: relative;
}

/* ---- Left ---- */
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.contact-doodle {
  position: absolute;
  font-size: 32px;
  color: rgba(63,44,36,0.08);
  pointer-events: none;
  user-select: none;
  animation: floatDoodle 4s ease-in-out infinite;
}

.contact-doodle-scissors { top: -20px; left: -30px; animation-delay: 0s; }
.contact-doodle-comb     { bottom: 60px; left: -40px; font-size: 40px; animation-delay: 1.5s; }

.contact-title {
  font-family: var(--font-headings);
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-text-dark);
  letter-spacing: -0.02em;
}

.contact-title-heart {
  color: var(--color-primary-orange);
}

.contact-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

/* Contact Cards */
.contact-card {
  background: var(--color-white);
  border: 2px solid #F3ECE6;
  border-radius: 20px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all var(--transition-bounce);
}

.contact-card:hover {
  border-color: rgba(249,115,22,0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(249,115,22,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary-orange);
}

.contact-card-title {
  font-family: var(--font-headings);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text-dark);
}

.contact-card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  padding-left: 48px;
}

.contact-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-orange);
  color: var(--color-white);
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(249,115,22,0.28);
  transition: all var(--transition-bounce);
  width: fit-content;
  margin-left: 48px;
}

.contact-book-btn:hover {
  background: #e8650a;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(249,115,22,0.38);
}

.contact-card-link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary-orange);
  text-decoration: none;
  padding-left: 48px;
  transition: color 0.2s;
}

.contact-card-link:hover {
  color: #e8650a;
  text-decoration: underline;
}

/* ---- Right: Pets + Map ---- */
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-pets-strip {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  margin-bottom: -4px;
  position: relative;
  z-index: 2;
}

.contact-pet-img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(63,44,36,0.15));
  transition: transform 0.3s ease;
}

.contact-pet-img:hover {
  transform: translateY(-6px) scale(1.05);
}

.contact-pet-center {
  width: 150px;
  height: 150px;
  z-index: 3;
  position: relative;
}

.contact-map-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--color-white);
}

.contact-map {
  width: 100%;
  height: 280px;
  display: block;
  border: none;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-title {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 80px 0 100px;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-pet-img { width: 100px; height: 100px; }
  .contact-pet-center { width: 120px; height: 120px; }
  .contact-map { height: 240px; }
}

@media (max-width: 480px) {
  .contact-section { padding: 60px 0 80px; }
  .contact-title { font-size: 28px; }
  .contact-card { padding: 16px 18px; }
  .contact-book-btn { margin-left: 0; width: 100%; }
  .contact-card-desc { padding-left: 0; }
  .contact-card-link { padding-left: 0; }
}


/* ============================================
   Footer
   ============================================ */

.site-footer {
  background-color: #3B2415;
  position: relative;
  padding-top: 0;
  overflow: hidden;
}

/* Wave SVG top */
.footer-wave-top {
  display: block;
  line-height: 0;
  position: relative;
  top: -2px;
  background-color: var(--color-bg);
}

.footer-wave-top svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* Bubble decorations */
.footer-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(249,115,22,0.12);
  pointer-events: none;
  animation: floatDoodle 5s ease-in-out infinite;
}

.footer-bubble-1 { width: 60px; height: 60px; top: 30px; left: 5%; animation-delay: 0s; }
.footer-bubble-2 { width: 28px; height: 28px; top: 80px; left: 12%; animation-delay: 0.8s; }
.footer-bubble-3 { width: 18px; height: 18px; top: 50px; left: 19%; animation-delay: 1.6s; }
.footer-bubble-4 { width: 50px; height: 50px; top: 20px; right: 8%; animation-delay: 0.4s; }
.footer-bubble-5 { width: 22px; height: 22px; top: 70px; right: 16%; animation-delay: 1.2s; }

/* Footer inner content */
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

/* Logo */
.footer-logo-wrap {
  margin-top: -60px;
}

.footer-logo-ring {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  overflow: hidden;
  border: 4px solid #3B2415;
}

.footer-logo-img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

/* Brand + tagline */
.footer-brand {
  font-family: var(--font-headings);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 0.02em;
  margin: 0;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin: -8px 0 0;
}

/* Navigation */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
}

.footer-nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.footer-nav-link:hover {
  color: var(--color-primary-orange);
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  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);
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid rgba(255,255,255,0.12);
}

.footer-social-btn svg {
  width: 18px;
  height: 18px;
}

.footer-social-btn:hover {
  background: var(--color-primary-orange);
  color: var(--color-white);
  border-color: var(--color-primary-orange);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(249,115,22,0.35);
}

/* Divider */
.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

/* Copyright */
.footer-copy {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin: 0;
}

.footer-copy span {
  color: rgba(255,255,255,0.55);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .footer-wave-top svg { height: 60px; }
  .footer-logo-ring { width: 80px; height: 80px; }
  .footer-logo-wrap { margin-top: -48px; }
  .footer-inner { padding: 40px 20px 32px; gap: 16px; }
  .footer-brand { font-size: 18px; }
  .footer-nav { gap: 6px 20px; }
  .footer-nav-link { font-size: 13px; }
}

@media (max-width: 480px) {
  .footer-wave-top svg { height: 50px; }
  .footer-nav { flex-direction: column; align-items: center; gap: 8px; }
  .footer-copy { font-size: 12px; }
}
