/* Google Fonts imported in HTML head for better performance */

/* CSS Variables - Premium Design System */
:root {
  /* Premium Spa Color Palette - Enhanced */
  --primary-accent: #FF5A75;        /* Refined Coral Rose - CTAs, buttons */
  --primary-gradient: linear-gradient(135deg, #FF5A75 0%, #FF8A9B 100%);
  --background-light: #FFFBFC;      /* Pearl White - section backgrounds */
  --background-gradient: linear-gradient(180deg, #FFFFFF 0%, #FFFBFC 100%);
  --accent-blue: #4BA8BC;           /* Deeper Turquoise - top bar, icons */
  --accent-gradient: linear-gradient(135deg, #4BA8BC 0%, #5FC4D4 100%);
  --text-dark: #1A1A1A;             /* Deep Charcoal - main text/headings */
  --text-muted: #4A4A4A;            /* Refined Gray - better contrast */
  --divider-light: #F0F0F0;         /* Silk Shadow - borders, lines */
  --footer-dark: #242424;           /* Midnight Graphite - footer/nav */
  
  /* Legacy colors for transition */
  --soft-pink: #FFF5F7;
  --cream-white: #fffdfd;
  --rich-coral: #FF4F6D;
  --dark-coral: #e64561;
  --charcoal: #222222;
  --gray: #666666;
  --light-gray: #fef8f8;
  --white: #ffffff;
  --dark-bg: #2B2B2B;
  --lavender: #e6e6fa;
  
  /* Premium Shadows - Enhanced */
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.03);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.06);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 20px rgba(0,0,0,0.08);
  --shadow-premium: 0 10px 30px rgba(255, 90, 117, 0.15);
  
  /* Spacing */
  --section-padding: clamp(60px, 10vh, 80px);
  --container-width: 1120px;
  --edge-padding: 24px;
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  
  /* Borders */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-pill: 999px;
}

/* Hero Photo Collage Styling */
.hero-collage {
  position: relative;
  width: 450px;
  height: 500px;
  margin: 0 auto;
}

.hero-collage .photo {
  position: absolute;
  border-radius: 20px;
  border: 4px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  object-fit: cover;
  cursor: pointer;
}

.hero-collage .photo:hover {
  transform: scale(1.05) !important;
  border: 4px solid rgba(255, 90, 117, 0.8);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  z-index: 10 !important;
}

.hero-collage .photo-1 {
  width: 220px;
  height: 280px;
  top: 0;
  left: -10px;
  z-index: 3;
  transform: rotate(-5deg);
}

.hero-collage .photo-2 {
  width: 200px;
  height: 260px;
  top: 40px;
  right: -15px;
  z-index: 2;
  transform: rotate(5deg);
}

.hero-collage .photo-3 {
  width: 180px;
  height: 220px;
  bottom: 30px;
  left: 80px;
  transform: rotate(-2deg);
  z-index: 1;
}

.hero-collage .hero-logo {
  position: absolute;
  width: 120px;
  height: 120px;
  bottom: 60px;
  right: 60px;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.hero-collage .hero-logo:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 0 4px white, 0 0 20px rgba(255, 92, 117, 0.3);
  z-index: 4;
  background: white;
  padding: 10px;
  object-fit: contain;
}

/* Mascot Square Video Styling (CTA Section) */
.mascot-square {
  width: 300px;
  height: 250px;
  margin: 0 auto 30px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: #fff;
  position: relative;
}

.mascot-video {
  width: 340px;
  height: 250px;
  object-fit: cover;
  object-position: center;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

/* Smooth Page Transitions */
* {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Premium Link Hover Effects */
a {
  position: relative;
  transition: color 0.3s ease;
}

a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: width 0.3s ease;
}

a:hover::after {
  width: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.1rem;
  background: white;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography Scale - Premium Enhancement */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-feature-settings: 'kern' 1;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

/* Hero headline with serif font */
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  letter-spacing: -1px;
}

h2 {
  font-size: 2.2rem;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  font-weight: 600;
}

p {
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

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

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--edge-padding);
}

/* Premium Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

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

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

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

[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

[data-aos].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Sticky Navigation - Premium Enhancement */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--accent-gradient);
  padding: 18px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  gap: 2rem;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.navbar.scrolled {
  padding: 12px 32px;
  box-shadow: var(--shadow-md);
}

.nav-logo {
  height: 50px;
  transition: height 0.3s ease;
}

.navbar.scrolled .nav-logo {
  height: 45px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 1rem;
  color: white;
  position: relative;
  letter-spacing: 0;
  opacity: 0.9;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
  opacity: 1;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-accent);
  transition: width 0.3s ease;
}

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

/* Buttons - Premium Enhancement */
.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

.btn.primary {
  background: var(--primary-gradient);
  color: white;
  box-shadow: 0 6px 20px rgba(255, 90, 117, 0.25);
}

.btn.primary:hover {
  box-shadow: 0 10px 30px rgba(255, 90, 117, 0.35);
  filter: brightness(1.1);
}

.btn.primary:active {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 4px 15px rgba(255, 90, 117, 0.3);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-accent);
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  position: relative;
}

.btn.secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  padding: 2px;
  background: var(--primary-gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.btn.secondary:hover {
  background: var(--primary-gradient);
  color: white;
  box-shadow: 0 8px 25px rgba(255, 90, 117, 0.3);
}

.btn.secondary:hover::before {
  opacity: 0;
}

.btn.large {
  padding: 18px 40px;
  font-size: 1.2rem;
}

.btn.full-width {
  width: 100%;
  text-align: center;
}

.call-now {
  background: var(--primary-accent);
  color: white;
  box-shadow: 0 4px 14px rgba(255, 79, 109, 0.3);
  font-weight: 600;
}

.call-now:hover {
  background: var(--dark-coral);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 79, 109, 0.4);
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: min(18vh, 140px) var(--edge-padding);
  background: white;
  min-height: 600px;
}

.hero-blob {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 100%;
  height: 120%;
  z-index: 0;
  opacity: 0.5;
}

.hero-blob svg {
  width: 100%;
  height: 100%;
}

.hero::before {
  content: '🐾';
  position: absolute;
  bottom: 10%;
  left: 5%;
  font-size: 12rem;
  opacity: 0.03;
  transform: rotate(-15deg);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 3.6rem);
  font-weight: 800;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.1;
  position: relative;
}

.hero p {
  font-size: 1.2rem;
  color: #555;
  margin: 20px 0 32px;
  line-height: 1.7;
}

.hero-subline {
  font-size: 1rem;
  color: #666;
  margin-top: 20px;
  font-weight: 500;
}

.hero-address {
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-top: 10px;
  font-weight: 600;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero .btn {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.hero .btn.primary {
  padding: 18px 36px;
  font-size: 1.15rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(255, 92, 117, 0.25);
}

.hero .btn.primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(255, 92, 117, 0.35);
}

.hero .btn.secondary {
  background: white;
  color: var(--rich-coral);
  border: 2px solid var(--rich-coral);
}

.hero-image {
  flex: 0 0 480px;
  position: relative;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at center, rgba(255, 92, 117, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

/* Removed old hero image styling to avoid conflicts with video */

/* Removed paw decoration - replaced with scrapbook collage */

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

/* Service Strip */
.service-strip {
  background: var(--background-light);
  padding: var(--section-padding) var(--edge-padding);
  position: relative;
  overflow: hidden;
}

.service-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 92, 117, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.service-strip .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--charcoal);
}

.service-strip .section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.service-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.service-card {
  flex: 0 1 360px;
  height: 480px;
  border-radius: 1.25rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--divider-light);
  transition: all 0.4s ease;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
  transform: scale(1.05);
}

.card-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
  padding: 40px 30px 30px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 180px;
  z-index: 1;
  transition: padding 0.3s ease;
}

.service-card:hover .card-overlay {
  padding-bottom: 35px;
}

.service-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-card p {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Section Subtitles */
.section-subtitle {
  font-size: 1.1rem;
  color: var(--rich-coral);
  font-weight: 600;
  margin-bottom: 10px;
  opacity: 0.9;
}

/* Why Choose Us */
#why-choose-us {
  padding: calc(var(--section-padding) * 1.5) var(--edge-padding);
  background: radial-gradient(circle at 40% 30%, #fff8fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

#why-choose-us.padded {
  padding-top: calc(var(--section-padding) * 2);
  padding-bottom: calc(var(--section-padding) * 2);
}

#why-choose-us::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 92, 117, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.why-text h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: left;
  color: var(--charcoal);
}

.why-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
  color: var(--gray);
}

.why-text p strong {
  color: var(--charcoal);
  font-weight: 700;
}


.pill-highlight {
  background: #FFE5EB;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  display: inline-block;
  color: #ff4d6d;
  font-weight: 600;
}

.why-text .tagline {
  margin-top: 28px;
  font-size: 1.15rem;
  color: var(--rich-coral);
}

.why-text p em {
  font-style: italic;
  color: var(--gray);
}

.why-image {
  position: relative;
}

.why-image .image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}

.why-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}

.floating-blob {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at 30% 70%, rgba(255, 92, 117, 0.15) 0%, rgba(230, 230, 250, 0.1) 100%);
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  top: -10%;
  left: -10%;
  z-index: 1;
  animation: blob-float 8s ease-in-out infinite;
}

@keyframes blob-float {
  0%, 100% { 
    transform: rotate(0deg) scale(1);
  }
  50% { 
    transform: rotate(180deg) scale(1.05);
  }
}

.paw-watermark {
  position: absolute;
  bottom: -40px;
  right: -40px;
  font-size: 8rem;
  opacity: 0.05;
  transform: rotate(-15deg);
  z-index: 0;
}

.offset-image {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  z-index: 3;
}

.offset-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border: 5px solid white;
}

/* Section Dividers */
.section-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
  line-height: 0;
}

.section-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100%;
}

.section-divider.wave-up {
  margin-top: -1px;
}

.section-divider.wave-down {
  transform: rotate(180deg);
  margin-bottom: -1px;
}

.section-divider.curve {
  height: 120px;
}

.section-divider.curve svg {
  height: 120px;
}

/* Service to Why Divider */
.service-to-why {
  background: linear-gradient(135deg, var(--soft-pink) 0%, var(--cream-white) 100%);
}

/* Why to Pricing Divider */
.why-to-pricing {
  background: linear-gradient(135deg, #fffaf5 0%, #fff1f3 100%);
}

/* Pricing to Reviews Divider */
.pricing-to-reviews {
  background: white;
}

/* Reviews to CTA Divider */
.reviews-to-cta {
  background: var(--cream-white);
}

/* Paw Trail Divider */
.paw-trail-divider {
  position: relative;
  height: 120px;
  overflow: hidden;
  background: white;
}

.paw-trail-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100%;
}

/* About Section */
#about.about-section {
  background: var(--background-light);
  padding: var(--section-padding) var(--edge-padding);
  overflow: hidden;
}

.about-container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

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

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.blob-bg {
  position: absolute;
  width: 120%;
  height: 120%;
  background: linear-gradient(135deg, #d8f3dc 0%, #e6e6fa 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: -10%;
  left: -10%;
  z-index: 1;
  animation: blob 8s ease-in-out infinite;
}

@keyframes blob {
  0%, 100% { 
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(0deg);
  }
  50% { 
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    transform: rotate(180deg);
  }
}

.about-content h2 {
  margin-bottom: 30px;
}

.about-content p {
  line-height: 1.8;
  margin-bottom: 20px;
}

.tagline {
  font-weight: 600;
  color: var(--rich-coral);
  font-size: 1.3rem !important;
  margin-top: 30px;
}

/* Pricing Section */
.pricing-section {
  padding: var(--section-padding) var(--edge-padding);
  background: white;
  position: relative;
}

.pricing-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--charcoal);
}

.pricing-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, #fff8fa 0%, #ffffff 100%);
  padding: 60px 40px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.pricing-cards {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 1.25rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--divider-light);
  text-align: center;
  position: relative;
  flex: 1;
  min-width: 320px;
  max-width: 400px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.card-highlight {
  border: 2px solid #ff8fa2;
  background: #fff7f9;
  padding-top: 2.5rem;
}


.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: bold;
  box-shadow: 0 6px 20px rgba(255, 90, 117, 0.3);
  overflow: hidden;
  z-index: 3;
}

.badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -200%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 3s infinite;
}

.card-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  margin: -50px auto 0;
  background-color: white;
  border: 4px solid white;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin: 1.5rem 0 0.5rem;
}

.card-desc {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  color: #444;
  transition: background-color 0.2s ease;
}

.price-list li:hover {
  background-color: #fef5f7;
}

.price-list li:last-child {
  border-bottom: none;
}

.price-list li span {
  font-weight: 700;
  color: #FF5F7E;
}

.btn-solid {
  background: #FF5F7E;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-solid:hover {
  background: #e64561;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 95, 126, 0.3);
}

.btn-outline {
  border: 2px solid #FF5F7E;
  background: white;
  color: #FF5F7E;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  background: #FF5F7E;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 95, 126, 0.2);
}

/* A La Carte Section */
.ala-carte-section {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: visible;
}


.ala-carte-image {
  flex: 0 0 200px;
}

.ala-carte-image img {
  border-radius: var(--radius-md);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  border: 6px solid white;
  transform: rotate(-3deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ala-carte-image img:hover {
  transform: rotate(0deg) scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.ala-carte-content {
  flex: 1;
  text-align: center;
}

.ala-carte-content h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.ala-carte-price {
  color: var(--rich-coral);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.ala-carte-group {
  margin-bottom: 32px;
}

.ala-carte-group:last-of-type {
  margin-bottom: 20px;
}

.ala-carte-label {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
  margin: -16px 0 24px;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 30px;
}

.pill {
  background: white;
  border: 2px solid var(--soft-pink);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.pill:hover {
  background: var(--rich-coral);
  color: white;
  border-color: var(--rich-coral);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.note {
  font-style: italic;
  color: var(--gray);
  font-size: 0.9rem;
  margin: 0;
}

/* Paw Trail Divider */
.paw-trail-divider {
  position: relative;
  height: 120px;
  overflow: hidden;
  background: white;
}

.paw-trail {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  opacity: 0.1;
  letter-spacing: 20px;
}

/* Reviews Section */
.reviews-section {
  background: var(--background-light);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(circle at 20% 80%, rgba(255, 79, 109, 0.03) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(85, 206, 219, 0.03) 0%, transparent 50%);
}

.reviews-header {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.reviews-bg-images {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.08;
}

.reviews-bg-images .bg-left {
  position: absolute;
  left: -100px;
  top: 50%;
  transform: translateY(-50%) rotate(-15deg);
  width: 300px;
  filter: blur(2px);
}

.reviews-bg-images .bg-right {
  position: absolute;
  right: -100px;
  bottom: 0;
  transform: rotate(15deg);
  width: 300px;
  filter: blur(2px);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Testimonial Cards */
.testimonial-card {
  background: linear-gradient(145deg, #FFFFFF 0%, #FFFBFC 100%);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  padding: 2.2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 4px solid transparent;
  background-clip: padding-box;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary-gradient);
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card:nth-child(5) { animation-delay: 0.5s; }
.testimonial-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 4rem;
  opacity: 0.08;
  font-family: Georgia, serif;
  color: var(--primary-accent);
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.testimonial-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 90, 117, 0.03) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.testimonial-card:hover::after {
  opacity: 1;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.carousel-btn {
  background: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  color: var(--rich-coral);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  pointer-events: all;
}

.carousel-btn:hover {
  background: var(--rich-coral);
  color: white;
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 95, 126, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.carousel-dot.active {
  background: var(--rich-coral);
  width: 36px;
  border-radius: 6px;
}

.review-card {
  background: white;
  border-radius: 1.25rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--divider-light);
  padding: 30px;
  margin: 10px;
  max-width: 500px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 8rem;
  opacity: 0.05;
  font-family: Georgia, serif;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.stars {
  color: #ffc107;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444;
  font-style: italic;
  margin-bottom: auto;
  flex-grow: 1;
}

.reviewer {
  margin-top: 20px;
}

.reviewer strong {
  display: block;
  font-weight: 600;
  color: #222;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.reviewer span {
  font-size: 0.9rem;
  color: #999;
}

/* Grooming School Section */
.grooming-school-section {
  background: white;
  padding: var(--section-padding) 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.grooming-school-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.grooming-school-section p {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gray);
}

.grooming-school-section strong {
  color: var(--rich-coral);
  font-weight: 700;
}

.dgsa-btn {
  background: var(--rich-coral);
  color: white;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255, 92, 117, 0.2);
}

.dgsa-btn:hover {
  background: var(--dark-coral);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 92, 117, 0.3);
}

/* Visual enhancements for grooming school section */
.grooming-school-section::before {
  content: '🐾';
  position: absolute;
  top: 20%;
  right: 10%;
  font-size: 8rem;
  opacity: 0.03;
  transform: rotate(15deg);
  animation: floatSubtle 8s ease-in-out infinite;
}

.grooming-school-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 79, 109, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

@keyframes floatSubtle {
  0%, 100% { transform: rotate(15deg) translateY(0); }
  50% { transform: rotate(15deg) translateY(-20px); }
}

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

.dgsa-btn {
  animation: pulseButton 4s ease-in-out infinite;
}

/* CTA Strip */
.cta-strip {
  background: var(--primary-accent);
  padding: var(--section-padding) var(--edge-padding);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.paw-decoration {
  font-size: 5rem;
  opacity: 0.3;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

.cta-strip h2 {
  color: white;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 20px;
}

.cta-strip p {
  color: rgba(255,255,255,0.95);
  font-size: 1.25rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-strip strong {
  color: white;
  font-weight: 700;
}

.paw-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.08;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 35px,
    rgba(255,255,255,0.1) 35px,
    rgba(255,255,255,0.1) 70px
  );
}

.floating-paws {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.floating-paws .paw {
  position: absolute;
  font-size: 2rem;
  opacity: 0;
  animation: driftUp 8s ease-in-out infinite;
}

.paw-1 {
  left: 20%;
  bottom: 0;
  animation-delay: 0s;
}

.paw-2 {
  left: 50%;
  bottom: 0;
  animation-delay: 2.5s;
}

.paw-3 {
  left: 80%;
  bottom: 0;
  animation-delay: 5s;
}

@keyframes driftUp {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(0deg);
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    transform: translateY(-300px) rotate(45deg);
  }
}

.btn.floating {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  }
}

/* Footer */
.footer-top {
  background: var(--soft-pink);
  padding: 60px var(--edge-padding) 40px;
}

.footer-content {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  height: 90px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 1.1rem;
  color: var(--rich-coral);
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  justify-content: flex-start;
}

.footer-social a {
  font-size: 1.6rem;
  transition: all 0.3s ease;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 79, 109, 0.1);
  border-radius: 50%;
}

.footer-social a:hover {
  transform: scale(1.15);
  background: var(--primary-accent);
  color: white !important;
  box-shadow: 0 4px 12px rgba(255, 79, 109, 0.3);
}

.footer-social a:hover i {
  color: white !important;
}

.footer-section h4 {
  margin-bottom: 20px;
  color: var(--charcoal);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 12px;
}

.footer-section p {
  color: #EEEEEE;
  opacity: 0.85;
}

.footer-section a {
  color: var(--gray);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: var(--rich-coral);
  transform: translateX(5px);
}

.paw-icon {
  font-size: 0.8rem;
  opacity: 0.6;
}

.footer-bottom {
  background: var(--dark-bg);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }
  
  /* Center all section headers on mobile */
  .section-title,
  .section-subtitle,
  h2,
  h3 {
    text-align: center !important;
  }
  
  /* Reduce bandana dog image size by 15% on mobile */
  .about-image .framed {
    max-width: 85%;
    margin: 0 auto;
    display: block;
  }
  
  /* Fix horizontal scroll on mobile */
  html,
  body {
    overflow-x: hidden !important;
    width: 100%;
  }
  
  /* Reduce padding in Why Tails A Waggin section */
  #why-choose-us.about-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  
  /* Add padding to About content on mobile */
  .about-content,
  .about-text {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .navbar {
    padding: 16px 24px; /* Increased vertical padding */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px; /* Ensure minimum height */
  }
  
  .nav-logo {
    height: 50px !important; /* Slightly smaller for better proportion */
    margin: 12px 0; /* Add vertical margin for spacing */
    display: block;
  }
  
  .hamburger {
    display: block !important; /* Force display */
    order: 2;
    margin-left: auto;
    z-index: 1002; /* Ensure it's above other elements */
  }
  
  .navbar .btn {
    display: none !important;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--accent-blue);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 20px 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.25s ease-in-out;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
  }
  
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  
  .nav-links a {
    display: block;
    padding: 16px 24px;
    font-size: 1.1rem;
    width: 100%;
  }
  
  .hero-inner {
    flex-direction: column;
    text-align: center;
    padding-top: 0;
    gap: 0; /* Remove gap for tighter control */
  }
  
  /* Mobile visual order fix - restructure layout with images first */
  .hero {
    padding-top: 20px;
    padding-bottom: 0;
  }
  
  .hero-inner {
    display: flex;
    flex-direction: column;
  }
  
  .hero-content {
    order: 2;
    padding-top: 0;
    margin-top: -40px !important;
  }
  
  .hero-image {
    order: 1;
    display: block !important;
    margin-bottom: 0;
    animation: none;
    position: relative;
  }
  
  .hero h1 {
    margin-top: 0 !important;
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
    position: relative;
    z-index: 10;
  }
  
  .hero-content p:first-of-type {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .grooming-counter {
    margin: 1rem 0;
  }
  
  .cta-buttons {
    margin: 1.5rem 0;
  }
  
  .hero-subline {
    margin-top: 1rem;
  }
  
  .hero-address {
    font-size: 0.9rem;
    margin-top: 8px;
  }
  
  .hero-image .hero-collage {
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    overflow: visible;
  }
  
  /* Control hero collage images on mobile */
  .hero-collage img {
    position: static !important;
    transform: none !important;
    rotate: 0deg !important;
  }
  
  .hero-collage .photo {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-radius: 16px;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .hero-image .hero-logo {
    width: 300px;
    height: 300px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero .subheading {
    font-size: 1.1rem;
  }
  
  .service-grid {
    gap: 24px;
  }
  
  .service-card {
    flex: 1 1 100%;
    max-width: 400px;
    height: 400px;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .why-text {
    text-align: center;
    padding-bottom: 20px;
  }
  
  .why-text h2 {
    text-align: center;
    font-size: 2rem;
  }
  
  .why-text p {
    text-align: center;
  }
  
  .pill-highlight {
    padding: 0.2rem 0.5rem;
    font-size: 0.9rem;
  }
  
  .offset-image {
    display: none;
  }
  
  .why-image {
    order: -1;
  }
  
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .about-image {
    order: -1;
  }
  
  .pricing-wrapper {
    padding: 40px 20px;
  }
  
  .card {
    min-width: 280px;
  }
  
  .ala-carte-section {
    flex-direction: column;
    text-align: center;
  }
  
  .ala-carte-image {
    flex: none;
    margin: 0 auto;
  }
  
  .ala-carte-image img {
    transform: rotate(-1deg);
    max-width: 250px;
  }
  
  .review-carousel {
    flex-direction: column;
  }
  
  .review-carousel .review-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .review-carousel .review-card.next {
    display: none;
  }
  
  .carousel-controls {
    display: none;
  }
  
  .cta-strip h2 {
    font-size: 2rem;
  }
  
  .cta-strip p {
    font-size: 1.1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-top: 24px;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .footer-brand {
    align-items: center;
  }
  
  .footer-social {
    justify-content: center;
    margin-top: 16px;
  }
  
  .footer-logo {
    height: 70px;
  }
  
  .grooming-school-section h2 {
    font-size: 1.75rem;
  }
  
  .grooming-school-section p {
    font-size: 1rem;
    padding: 0 20px;
  }
  
  .dgsa-btn {
    font-size: 1rem;
    padding: 0.875rem 1.75rem;
  }
}/* About Section - Why Choose Us */
#why-choose-us.about-section {
  padding: 4rem 2rem;
  background: white;
  position: relative;
  overflow: hidden;
}

.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  max-width: 1140px;
  margin: 0 auto;
}

.about-text {
  flex: 1 1 55%;
  line-height: 1.7;
  font-size: 1.05rem;
}

.about-text h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--charcoal);
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  color: var(--gray);
}

.about-text p strong {
  color: var(--charcoal);
  font-weight: 700;
}

.about-text p u {
  text-decoration: underline;
  text-decoration-color: #FFB6C1;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}

.highlight {
  color: #f54b6e;
  font-weight: 600;
}

.cta-highlight {
  background: #ffeef2;
  padding: 1.5rem 2rem;
  border-radius: 32px;
  text-align: center;
  margin-top: 2rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.cta-highlight p {
  font-size: 1.2rem;
  margin: 0;
  color: var(--gray);
}

.cta-highlight em {
  font-style: italic;
  color: var(--gray);
}

.cta-bold {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.3rem;
  color: var(--charcoal);
  font-weight: 600;
}

.cta-bold strong {
  color: var(--rich-coral);
  font-weight: 700;
}

.about-images {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 40px 20px;
}

.about-images .angled-img-1,
.about-images .angled-img-2 {
  position: relative;
  z-index: 2;
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
  border: 6px solid white;
  cursor: pointer;
}

.angled-img-1 {
  transform: rotate(-4deg);
  z-index: 1;
}

.angled-img-2 {
  transform: rotate(5deg);
  margin-top: -80px;
  margin-left: 40px;
  z-index: 2;
}

.about-images .angled-img-1:hover,
.about-images .angled-img-2:hover {
  transform: scale(1.05) rotate(0deg);
  z-index: 3;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.paw-bg-float {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12rem;
  opacity: 0.04;
  z-index: 0;
  animation: floatPaw 6s ease-in-out infinite;
}

@keyframes floatPaw {
  0%, 100% { transform: translate(-50%, -50%) rotate(-10deg); }
  50% { transform: translate(-50%, -60%) rotate(10deg); }
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
  }
  
  .about-text {
    flex: 1 1 100%;
    text-align: center;
  }
  
  .about-text h2 {
    text-align: center;
    font-size: 2rem;
  }
  
  .about-text p {
    text-align: center;
  }
  
  .cta-highlight {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .about-images {
    flex: 1 1 100%;
    order: -1;
    margin-bottom: -1.125rem;
    position: relative;
    z-index: 1;
    padding: 20px 0;
  }
  
  .about-images .secondary-image {
    max-width: 180px;
  }
  
  /* Fix quote block spacing to prevent overlap */
  .cta-highlight {
    padding-bottom: 3rem;
    position: relative;
    z-index: 2;
  }
  
  /* Control angled images on mobile */
  .angled-img-1, .angled-img-2 {
    position: relative !important;
    z-index: 1;
    max-width: 100%;
    height: auto;
  }
  
  .angled-img-1 {
    transform: rotate(-3deg);
    margin-bottom: 20px;
  }
  
  .angled-img-2 {
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    transform: rotate(3deg);
    margin-top: -30px;
    margin-left: auto;
    margin-right: 0;
  }
  
  .paw-bg-float {
    display: none; /* Hide floating elements that may cause overflow */
  }
}/* Unified Curve Transitions System */

/* Remove gaps between sections */
section {
  margin: 0;
  position: relative;
}

/* Standardize section padding */
.hero {
  padding-bottom: calc(var(--section-padding) + 80px);
}

.service-strip {
  padding-top: var(--section-padding);
  padding-bottom: calc(var(--section-padding) + 80px);
  margin-top: -80px;
  position: relative;
}

.service-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 80' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 L0,40 C480,0 960,80 1440,40 L1440,0 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
}

#why-choose-us {
  padding-top: var(--section-padding);
  padding-bottom: calc(var(--section-padding) + 80px);
  margin-top: -80px;
}

#why-choose-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 80' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 L0,40 C480,0 960,80 1440,40 L1440,0 Z' fill='%23FFF5F7'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
}

#about.about-section {
  padding-top: var(--section-padding);
  padding-bottom: calc(var(--section-padding) + 80px);
  margin-top: -80px;
}

#about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 80' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 L0,40 C480,0 960,80 1440,40 L1440,0 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
}

.pricing-section {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  margin-top: 0;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 80' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 L0,40 C480,0 960,80 1440,40 L1440,0 Z' fill='%23FFF5F7'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
}

.reviews-section {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  margin-top: 0;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 80' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 L0,40 C480,0 960,80 1440,40 L1440,0 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
}

.grooming-school-section {
  padding-top: var(--section-padding);
  padding-bottom: calc(var(--section-padding) + 80px);
  margin-top: -80px;
}

.grooming-school-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 80' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 L0,40 C480,0 960,80 1440,40 L1440,0 Z' fill='%23FFF5F7'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
}

.cta-strip {
  padding-top: var(--section-padding);
  padding-bottom: calc(var(--section-padding) + 80px);
  margin-top: -80px;
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 80' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 L0,40 C480,0 960,80 1440,40 L1440,0 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
}

.footer-top {
  margin-top: 0;
  padding-top: 60px;
  position: relative;
}

.footer-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 80' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 L0,40 C480,0 960,80 1440,40 L1440,0 Z' fill='%23FF4F6D'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
}

/* Update testimonial card stars */
.testimonial-card .stars {
  color: #FFC107;
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

/* Add pagination dots */
.pagination-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 3rem;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 79, 109, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.dot.active {
  background: var(--primary-accent);
  width: 30px;
  border-radius: 5px;
}

.dot:hover:not(.active) {
  background: rgba(255, 79, 109, 0.4);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  /* Global section spacing safeguards */
  section {
    padding-top: 24px;
    padding-bottom: 32px;
    position: relative;
    overflow: hidden;
  }
  
  /* Ensure consistent margins between sections */
  section + section {
    margin-top: 0;
  }
  
  section::before {
    height: 60px;
  }
  
  /* Remove extra padding calculations for cleaner spacing */
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* Hero trust metric */
.hero-metric {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: -0.5rem;
  margin-bottom: 2rem;
}

.counter {
  font-weight: 700;
  color: var(--primary-accent);
  font-size: 1.1rem;
}

/* Sticky Mobile Footer */
.sticky-mobile-footer {
  display: none;
}

@media screen and (max-width: 768px) {
  .sticky-mobile-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 12px 24px;
    z-index: 1000;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.05);
    border-top: 1px solid var(--divider-light);
  }

  .sticky-mobile-footer .btn {
    flex: 1;
    max-width: 200px;
    padding: 14px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .sticky-mobile-footer .btn.secondary {
    background: white;
    color: var(--primary-accent);
    border: 2px solid var(--primary-accent);
  }

  .sticky-mobile-footer .btn.secondary:hover,
  .sticky-mobile-footer .btn.secondary:active {
    background: var(--background-light);
  }

  .sticky-mobile-footer .btn.primary {
    background: var(--primary-accent);
    color: white;
    border: 2px solid var(--primary-accent);
  }

  .sticky-mobile-footer .btn.primary:hover,
  .sticky-mobile-footer .btn.primary:active {
    background: var(--dark-coral);
    border-color: var(--dark-coral);
  }

  .sticky-mobile-footer .icon {
    font-size: 1.2rem;
  }

  /* Add padding to bottom of page content to account for sticky footer */
  body {
    padding-bottom: 80px;
  }
}

/* Button Micro-Animation */
@keyframes pulse-btn {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.btn.primary:hover {
  animation: pulse-btn 0.7s ease-in-out;
}

/* Review Cards Rotation (Desktop Only) */
@media (min-width: 768px) {
  .testimonial-card:nth-child(odd) {
    transform: rotate(-1.2deg);
  }

  .testimonial-card:nth-child(even) {
    transform: rotate(1.2deg);
  }

  .testimonial-card:hover {
    transform: rotate(0) translateY(-5px);
  }
}

/* Enhanced Footer Link Animations */
.footer-section a {
  position: relative;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-section a:hover {
  transform: translateX(5px);
  color: var(--primary-accent);
}

/* Hero Logo Glow Effect */
/* Removed old hero logo styling to avoid conflicts */

/* Grooming counter styles */
.grooming-counter {
  margin-bottom: 2rem;
}

.hero-subline {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  opacity: 0.8;
}

.hero-subline em {
  font-style: italic;
  color: var(--primary-accent);
  font-weight: 500;
}

/* Counter animations */
@keyframes tick {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes glow {
  0% { 
    text-shadow: 0 0 5px rgba(255, 79, 109, 0.3);
  }
  50% { 
    text-shadow: 0 0 15px rgba(255, 79, 109, 0.6), 0 0 25px rgba(255, 79, 109, 0.4);
  }
  100% { 
    text-shadow: 0 0 5px rgba(255, 79, 109, 0.3);
  }
}

@keyframes livePulse {
  0% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0.3; transform: scale(1); }
}

.counter.tick {
  animation: tick 0.2s ease-in-out;
}

.counter.complete {
  animation: glow 3s ease-in-out infinite;
  color: var(--primary-accent);
}

.live-indicator {
  display: inline-block;
  font-size: 1rem;
  animation: livePulse 1.5s ease-in-out infinite;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* Enhanced nav hover states */
.nav-links a {
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: white;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Removed duplicate hero collage styles */

/* Remove old hero logo styles */
/* Removed display: none rule to allow video to show */

/* Mobile Responsive Collage */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    gap: 20px;
  }
  
  .hero-image {
    order: 1;
    margin-bottom: 20px;
  }
  
  .hero-content {
    order: 2;
    margin-top: -120px !important;
  }
  
  .hero-collage {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 6px !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    position: relative !important;
    overflow: visible !important;
    padding: 0 0 120px 0 !important;
  }

  .hero-collage .photo {
    position: static !important;
    display: block !important;
    border-radius: 12px !important;
    border: 3px solid rgba(255, 255, 255, 0.9) !important;
    transform: none !important;
    rotate: 0deg !important;
    width: 95px !important;
    height: 95px !important;
    flex-shrink: 0 !important;
    object-fit: cover !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: 0 !important;
  }

  .hero-collage .photo:hover {
    border: 2px solid rgba(255, 90, 117, 0.8);
    transform: scale(1.02);
  }

  .hero-collage .photo-1,
  .hero-collage .photo-2,
  .hero-collage .photo-3 {
    /* All photos same size in horizontal line */
  }

  .hero-collage .hero-logo {
    position: absolute !important;
    bottom: 15px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    z-index: 10 !important;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 25px;
    padding-bottom: 0;
  }
  
  .hero-content {
    padding-top: 0;
    margin-top: -100px !important;
  }
  
  .hero-collage {
    gap: 5px;
  }

  .hero-collage .photo {
    border: 2px solid rgba(255, 255, 255, 0.9);
  }

  .hero-collage .photo:hover {
    border: 2px solid rgba(255, 90, 117, 0.8);
  }

  .hero-collage .photo {
    width: 85px !important;
    height: 85px !important;
  }

  .hero-collage .hero-logo {
    width: 65px !important;
    height: 65px !important;
    bottom: 10px !important;
  }
}

/* Nav bar text shadow for better readability */
.nav-links a,
.navbar .btn {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

/* Nav bar buttons container */
.navbar .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  font-size: 1rem;
  line-height: 1;
  border-radius: 999px;
  white-space: nowrap;
  margin-left: 0.75rem;
}

.navbar .btn:first-of-type {
  margin-left: 0;
}

/* Nav bar button consistency */
.navbar .btn.secondary {
  background: #FF4F6D;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #FF4F6D;
}

.navbar .btn.secondary:hover {
  background: #e64560;
  border-color: #e64560;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.navbar .btn.call-now {
  background: #FF4F6D;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #FF4F6D;
}

.navbar .btn.call-now:hover {
  background: #e64560;
  border-color: #e64560;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* CTA Strip Button Fix */
.cta-strip .btn {
  background: white;
  color: var(--primary-accent);
  border: 2px solid var(--primary-accent);
  margin: 0 auto;
  display: inline-block;
}

.cta-strip .btn:hover {
  background: var(--primary-accent);
  color: white;
  border-color: var(--primary-accent);
}

.cta-strip .cta-buttons {
  text-align: center;
  margin-top: 2rem;
}

/* Footer Contrast Fix */
.footer-section p,
.footer-section a,
.footer-section h4,
.footer-tagline {
  color: #333;
}

.footer-section p {
  opacity: 1;
}

.footer-section a:hover {
  color: var(--primary-accent);
}

.footer-social a {
  color: #333;
}

/* Call Button Fix for Let's Get Waggin' section */
.cta-strip .btn.primary.large.floating {
  background: white;
  color: var(--primary-accent);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta-strip .btn.primary.large.floating:hover {
  background: var(--accent-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border-color: var(--accent-blue);
}

/* Mobile styles for About section scrapbook layout */
@media screen and (max-width: 768px) {
  .about-images {
    padding: 20px 10px;
  }
  
  .about-images .angled-img-1,
  .about-images .angled-img-2 {
    width: 200px;
    height: 200px;
    border-width: 4px;
  }
  
  .angled-img-1 {
    transform: rotate(-2deg);
  }
  
  .angled-img-2 {
    transform: rotate(3deg);
    margin-top: -40px;
    margin-left: 20px;
  }
  
  .paw-bg-float {
    font-size: 8rem;
  }
}

/* About Tails A Waggin' image styling */
.about-image .framed {
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border: 5px solid white;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform: rotate(-1.5deg);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image .framed:hover {
  transform: rotate(0deg) scale(1.03);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  z-index: 3;
  cursor: pointer;
}

/* Location tagline in About section */
.location-tagline {
  font-style: italic;
  color: var(--text-muted);
  margin-top: 1.5rem;
  font-size: 1.05rem;
}

.location-tagline strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* Waggin' Along Paw Trail Animation */
.paw-print {
  position: fixed;
  font-size: 2rem;
  color: rgba(255, 79, 109, 0.3);
  pointer-events: none;
  z-index: 1;
  animation: pawAppear 0.3s ease-out;
  transition: opacity 1s ease-out;
}

@keyframes pawAppear {
  0% {
    transform: scale(0) rotate(0deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.2) rotate(10deg);
  }
  100% {
    transform: scale(1) rotate(var(--rotation, 0deg));
    opacity: 1;
  }
}

.paw-print.fade-out {
  opacity: 0;
}

/* Disable on mobile for performance */
@media (max-width: 768px) {
  .paw-print {
    display: none;
  }
}

/* Hamburger Menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  position: relative;
  z-index: 1001;
  flex-shrink: 0; /* Prevent shrinking */
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: white;
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -8px);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-accent);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(255, 79, 109, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

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

.back-to-top:hover {
  background: var(--dark-coral);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 79, 109, 0.4);
}

.back-to-top:active {
  transform: translateY(-1px);
}

/* Hide on mobile to avoid conflict with sticky footer */
@media (max-width: 768px) {
  .back-to-top {
    bottom: 90px; /* Above sticky footer */
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

/* Blog Section */
.blog-section {
  background: var(--background-light);
  padding: var(--section-padding) 0 calc(var(--section-padding) * 1.5);
}

/* Blog Carousel */
.blog-carousel-container {
  position: relative;
  margin: 50px 0;
  overflow: hidden;
}

.blog-carousel {
  overflow: hidden;
  margin: 0 -15px;
}

.blog-grid {
  display: flex;
  transition: transform 0.5s ease;
  gap: 1.5rem;
  padding: 0 15px;
}

.blog-carousel .blog-card {
  flex: 0 0 calc(33.333% - 20px);
  min-width: calc(33.333% - 20px);
}

/* Blog Carousel Dots */
.blog-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.blog-carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--divider-light);
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-carousel-dots .dot.active {
  background: var(--primary-accent);
  width: 30px;
  border-radius: 5px;
}

.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

.blog-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 25px;
}

.blog-content h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-dark);
  line-height: 1.3;
}

.blog-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.read-more-link {
  color: var(--primary-accent);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 12px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.read-more-link:hover {
  text-decoration: underline;
  transform: translateX(5px);
}

.blog-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.blog-cta .btn.secondary {
  background-color: white;
  border: 2px solid #FF4F6D;
  border-radius: 9999px;
  color: #FF4F6D;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.blog-cta .btn.secondary:hover {
  background-color: #FF4F6D;
  color: white;
}

/* Blog Carousel Responsive */
@media (max-width: 1024px) {
  .blog-carousel .blog-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .blog-carousel .blog-card {
    flex: 0 0 calc(80% - 20px);
    scroll-snap-align: center;
  }
  
  .blog-carousel-container {
    margin: 30px 0;
  }
  
  .blog-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  
  .blog-grid {
    padding: 0 10%;
  }
  
  .blog-carousel::-webkit-scrollbar {
    display: none;
  }
  
  .blog-carousel {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .blog-content {
    padding: 20px;
  }
  
  .blog-content h3 {
    font-size: 1.1rem;
  }
}

/* Blog Post Page Styles */
.blog-post-container {
  padding-top: 100px;
  min-height: calc(100vh - 300px);
  background: var(--background-light);
}

.blog-breadcrumb {
  padding: 20px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.blog-breadcrumb a {
  color: var(--primary-accent);
  text-decoration: none;
}

.blog-breadcrumb a:hover {
  text-decoration: underline;
}

.blog-post {
  background: white;
  border-radius: var(--radius-lg);
  padding: 60px;
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
  position: relative;
}

.blog-post-header {
  margin-bottom: 40px;
  position: relative;
}

.blog-post h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 30px;
}

.paw-decoration-bg {
  position: absolute;
  top: -30px;
  right: -20px;
  font-size: 100px;
  opacity: 0.05;
  transform: rotate(-15deg);
  z-index: 0;
}

.blog-post h2 {
  font-size: 1.6rem;
  color: var(--text-dark);
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--background-light);
}

.blog-post p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.paw-divider {
  text-align: center;
  font-size: 1.5rem;
  margin: 40px 0;
  opacity: 0.3;
  letter-spacing: 15px;
}

.blog-callout {
  background: var(--background-light);
  border-left: 4px solid var(--primary-accent);
  padding: 25px;
  margin: 30px 0;
  border-radius: var(--radius-md);
}

.blog-callout strong {
  color: var(--primary-accent);
  font-size: 1.2rem;
  display: block;
  margin-bottom: 10px;
}

.blog-callout p {
  margin: 0;
  color: var(--text-dark);
}

.blog-quote {
  background: linear-gradient(135deg, var(--background-light), white);
  border-left: 4px solid var(--accent-blue);
  padding: 25px;
  margin: 30px 0;
  font-style: italic;
  border-radius: var(--radius-md);
  position: relative;
}

.blog-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 15px;
  font-size: 60px;
  color: var(--accent-blue);
  opacity: 0.2;
  font-family: serif;
}

.blog-cta-section {
  background: linear-gradient(135deg, var(--primary-accent), var(--dark-coral));
  color: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 40px 0;
  animation: fadeInUp 0.6s ease;
}


.blog-navigation {
  margin: 40px 0;
}

@media (max-width: 768px) {
  .blog-post {
    padding: 30px 20px;
  }
  
  .blog-post h1 {
    font-size: 1.8rem;
  }
  
  .paw-decoration-bg {
    font-size: 60px;
    top: -20px;
    right: -10px;
  }
  
  .blog-cta-section {
    padding: 30px 20px;
  }
}
/* Blog CTA Section - Global Styling */

}



/* Section Transitions - Uniform Wave System */
.section-divider {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.section-divider.top {
  top: 0;
  transform: translateY(-1px);
}

.section-divider.bottom {
  bottom: 0;
  transform: translateY(1px);
}

.section-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.section-divider.top svg {
  transform: rotateY(180deg);
}

/* Wave fills matching next section backgrounds */
.wave-fill-white { fill: #ffffff; }
.wave-fill-light { fill: var(--background-light); }
.wave-fill-dark { fill: var(--footer-dark); }
.wave-fill-gradient { fill: url(#gradient-fill); }

/* Section spacing consistency */
section {
  position: relative;
  padding: 4rem 0;
  overflow: visible;
}

/* Sections with dividers need extra padding */
section.has-divider-top {
  padding-top: calc(4rem + 60px);
}

section.has-divider-bottom {
  padding-bottom: calc(4rem + 60px);
}

/* Remove old transition styles */
.service-strip::before,
.about-section::before,
.pricing-section::before,
.reviews-section::before,
.blog-section::before,
.grooming-school-section::before,
.cta-strip::before {
  display: none !important;
}

/* Z-index management */
.navbar {
  z-index: 1000;
}

.section-divider {
  z-index: 10;
}

section {
  position: relative;
  z-index: 5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-divider svg {
    height: 40px;
  }
  
  section.has-divider-top {
    padding-top: calc(3rem + 40px);
  }
  
  section.has-divider-bottom {
    padding-bottom: calc(3rem + 40px);
  }
}

/* Spa Packages Section */
.spa-packages-section {
  padding: calc(var(--section-padding) + 40px) var(--edge-padding) calc(var(--section-padding) + 40px);
  background: linear-gradient(to bottom, #fdf7f9, #f4f1fc);
  position: relative;
  overflow: visible;
  margin-top: 40px;
  margin-bottom: 40px;
}

#spa-packages {
  background: linear-gradient(to bottom, #fdf7f9, #f4f1fc) !important;
}

/* Spa Watermark Background */
.spa-packages-section::before {
  content: '✨';
  position: absolute;
  top: 10%;
  right: 5%;
  font-size: 8rem;
  opacity: 0.05;
  color: #e6b3cc;
  pointer-events: none;
  transform: rotate(-15deg);
  z-index: 0;
}

.spa-packages-section::after {
  content: '💧';
  position: absolute;
  bottom: 15%;
  left: 3%;
  font-size: 6rem;
  opacity: 0.05;
  color: #d8b3e6;
  pointer-events: none;
  transform: rotate(10deg);
  z-index: 0;
}

.spa-packages-section .container {
  position: relative;
  z-index: 1;
}

.spa-section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: var(--charcoal);
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.spa-section-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: #8B7E9C;
  margin-bottom: 60px;
  font-weight: 300;
}

/* Spa Package Cards Container */
.spa-packages-wrapper {
  max-width: 1200px;
  margin: 0 auto 80px;
}

.spa-package-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Diamond layout - third card spans both columns */
.spa-card:nth-child(3) {
  grid-column: 1 / -1;
  max-width: 450px;
  margin: 0 auto;
}

/* Individual Spa Card */
.spa-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(230, 230, 250, 0.3);
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

/* Pastel top accent for each card */
.spa-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffb3cc 0%, #e6b3ff 100%);
}

.spa-card:nth-child(1)::before {
  background: linear-gradient(90deg, #b3d9ff 0%, #ccb3ff 100%);
}

.spa-card:nth-child(2)::before {
  background: linear-gradient(90deg, #ffccb3 0%, #ffb3e6 100%);
}

.spa-card:nth-child(3)::before {
  background: linear-gradient(90deg, #b3ffcc 0%, #b3e6ff 100%);
}


.spa-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.spa-card .spa-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  text-align: center;
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: rgba(255, 192, 203, 0.1);
  border-radius: 50%;
  margin: 0 auto 20px;
}

.spa-card-title {
  font-size: 1.75rem;
  color: var(--charcoal);
  margin-bottom: 10px;
  text-align: center;
}

.spa-tagline {
  color: #FF8FA2;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 20px;
  font-style: italic;
  text-transform: lowercase;
  letter-spacing: 1px;
}

.spa-desc {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: center;
}

.spa-includes {
  background: linear-gradient(135deg, #fef5f9 0%, #f5f0fc 100%);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 0;
  border: 1px solid rgba(230, 200, 250, 0.2);
  flex-grow: 1;
}

.spa-includes h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8B7E9C;
  margin-bottom: 12px;
}

.spa-includes ul {
  list-style: none;
  padding: 0;
}

.spa-includes li {
  padding: 5px 0;
  color: var(--gray);
  position: relative;
  padding-left: 20px;
}

.spa-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8B7E9C;
}

.spa-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--charcoal);
  text-align: center;
  margin-top: 25px;
  margin-bottom: 0;
}


/* Mix & Match Section */
.mix-match-section {
  background: white;
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-width: 1000px;
  margin: 60px auto 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(230, 200, 250, 0.15);
  background: linear-gradient(135deg, #ffffff 0%, #faf8fc 100%);
}

.mix-match-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(230, 230, 250, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.mix-match-title {
  font-size: 1.8rem;
  color: var(--charcoal);
  margin-bottom: 10px;
  font-weight: 600;
}

.mix-match-subtitle {
  font-size: 1.4rem;
  color: var(--primary-accent);
  margin-bottom: 15px;
}

.mix-match-desc {
  color: var(--gray);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.spa-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 40px;
  padding: 20px;
  background: rgba(250, 248, 252, 0.5);
  border-radius: 20px;
}

.spa-option {
  background: linear-gradient(135deg, #fef5f9 0%, #f8f5fc 100%);
  padding: 16px 20px;
  border-radius: 25px;
  font-size: 0.95rem;
  color: var(--charcoal);
  border: 1px solid rgba(230, 200, 250, 0.25);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
}

.spa-option .spa-icon {
  font-size: 1.2rem;
}

.spa-option:hover {
  transform: translateY(-2px);
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-color: rgba(230, 200, 250, 0.4);
}

.spa-note {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 30px;
  font-style: italic;
}


/* Responsive */
@media (max-width: 768px) {
  #spa-packages.spa-packages-section {
    padding: 60px var(--edge-padding) !important;
    margin-top: 30px !important;
    margin-bottom: 30px !important;
    background: linear-gradient(to bottom, #fdf7f9, #f4f1fc) !important;
  }
  
  .spa-packages-section::before,
  .spa-packages-section::after {
    font-size: 5rem;
    opacity: 0.03;
  }
  
  .spa-packages-wrapper {
    margin-bottom: 50px;
  }
  
  .spa-package-cards {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
  }
  
  .spa-card:nth-child(3) {
    grid-column: 1;
    max-width: 100%;
  }
  
  .spa-card {
    padding: 35px 25px;
    overflow: hidden;
    border-radius: 20px;
  }
  
  /* Ensure gradient borders show on mobile */
  .spa-card::before {
    display: block !important;
    border-radius: 20px 20px 0 0;
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    z-index: 1 !important;
  }
  
  .spa-card:nth-child(1)::before {
    background: linear-gradient(90deg, #b3d9ff 0%, #ccb3ff 100%) !important;
  }
  
  .spa-card:nth-child(2)::before {
    background: linear-gradient(90deg, #ffccb3 0%, #ffb3e6 100%) !important;
  }
  
  .spa-card:nth-child(3)::before {
    background: linear-gradient(90deg, #b3ffcc 0%, #b3e6ff 100%) !important;
  }
  
  .pricing-cards .card {
    overflow: visible;
  }
  
  .mix-match-section {
    padding: 35px 20px;
    margin-top: 40px;
    background: white !important;
    border-radius: 30px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    border: 2px solid rgba(230, 200, 250, 0.15) !important;
  }
  
  .spa-options-grid {
    background: rgba(250, 248, 252, 0.5) !important;
    border-radius: 20px !important;
    padding: 20px !important;
  }
  
  .spa-options-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .spa-section-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  
  .spa-section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }
  
  .spa-card-title {
    font-size: 1.5rem;
  }
  
  .spa-price {
    font-size: 1.9rem;
  }
  
  .spa-option {
    font-size: 0.9rem;
    padding: 14px 16px;
  }
  
  .mix-match-title {
    font-size: 1.5rem;
  }
  
  .mix-match-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .spa-options-grid {
    grid-template-columns: 1fr;
  }
  
  .spa-package-cards {
    padding: 0 10px;
  }
  
  .spa-card {
    min-height: auto;
    padding: 30px 20px;
    overflow: hidden;
    background: white !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06) !important;
  }
  
  #spa-packages.spa-packages-section {
    padding: 40px 15px !important;
    background: linear-gradient(to bottom, #fdf7f9, #f4f1fc) !important;
  }
}

/* Fix for very small screens */
@media (max-width: 360px) {
  .spa-package-cards {
    grid-template-columns: 1fr;
    padding: 0;
  }
  
  .spa-card {
    padding: 25px 18px;
    overflow: hidden;
  }
  
  .spa-section-title {
    font-size: 1.9rem;
  }
  
  .spa-option {
    font-size: 0.85rem;
    padding: 12px 14px;
  }
}

/* Animated Mascot Rectangle */
.mascot-square {
  width: 300px;
  height: 250px;
  margin: 0 auto 30px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: #fff;
  position: relative;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.mascot-video {
  width: 110%;
  height: 130%;
  object-fit: cover;
  object-position: center center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: fadeInScale 0.8s ease-out forwards;
  -webkit-animation: fadeInScale 0.8s ease-out forwards;
  animation-delay: 0.3s;
  -webkit-animation-delay: 0.3s;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@-webkit-keyframes fadeInScale {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(0.9);
    transform: translate(-50%, -50%) scale(0.9);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Remove old paw decoration since we have mascot video */
.cta-content .paw-decoration {
  display: none;
}

/* Adjust CTA content spacing */
.cta-content h2 {
  margin-top: 0;
}

/* Mobile optimization for mascot rectangle */
@media (max-width: 768px) {
  .mascot-square {
    width: 220px !important;
    height: 180px !important;
    margin-bottom: 25px !important;
    -webkit-mask-image: -webkit-radial-gradient(white, black) !important;
    -webkit-backface-visibility: hidden !important;
    -webkit-transform: translateZ(0) !important;
    transform: translateZ(0) !important;
  }
}

@media (max-width: 480px) {
  .mascot-square {
    width: 200px !important;
    height: 160px !important;
    margin-bottom: 20px !important;
  }
  
  .mascot-video {
    width: 105% !important;
    height: 120% !important;
    -webkit-transform: translate(-50%, -50%) !important;
    transform: translate(-50%, -50%) !important;
  }
}

/* Chrome Mobile Specific Fixes for Spa Section */
@media screen and (max-width: 768px) {
  /* Force spa section visibility and styling - Chrome Mobile Fix */
  .spa-packages-section,
  #spa-packages,
  section#spa-packages {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: linear-gradient(to bottom, #fdf7f9, #f4f1fc) !important;
    padding: 60px 24px !important;
    margin: 30px 0 !important;
    overflow: visible !important;
    position: relative !important;
    z-index: 1 !important;
    -webkit-transform: translateZ(0) !important;
    transform: translateZ(0) !important;
    will-change: auto !important;
  }
  
  /* Force spa cards container visibility */
  .spa-packages-wrapper,
  .spa-package-cards {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .spa-package-cards {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 25px !important;
    margin: 0 auto 40px !important;
    padding: 0 !important;
  }
  
  /* Individual spa cards - Chrome Mobile Fix */
  .spa-card {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: white !important;
    border-radius: 20px !important;
    padding: 35px 25px !important;
    margin: 0 0 25px 0 !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    grid-column: 1 !important;
    -webkit-appearance: none !important;
    -webkit-transform: translateZ(0) !important;
    transform: translateZ(0) !important;
    backface-visibility: hidden !important;
    perspective: 1000px !important;
  }
  
  /* Force gradient borders on mobile */
  .spa-card::before {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    z-index: 10 !important;
    border-radius: 20px 20px 0 0 !important;
    -webkit-transform: translateZ(0) !important;
    transform: translateZ(0) !important;
    will-change: transform !important;
  }
  
  .spa-card:nth-child(1)::before {
    background: linear-gradient(90deg, #b3d9ff 0%, #ccb3ff 100%) !important;
  }
  
  .spa-card:nth-child(2)::before {
    background: linear-gradient(90deg, #ffccb3 0%, #ffb3e6 100%) !important;
  }
  
  .spa-card:nth-child(3)::before {
    background: linear-gradient(90deg, #b3ffcc 0%, #b3e6ff 100%) !important;
  }
  
  /* Force spa options visibility */
  .spa-options-container,
  .spa-options-grid,
  .spa-option {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .spa-options-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }
}
