/* Base styles */
:root {
  --bg: #ffffff;
  --text: #222222;
  --muted: #6b7280;
  --brand: #ff8f70; /* coral */
  --brand-2: #9be7ff; /* light blue */
  --brand-3: #fff3c4; /* pale yellow */
  --container: 1200px;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  border-bottom: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding-top: 8px;
  padding-bottom: 8px;
}

/* Brand Logo */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.brand:hover { transform: scale(1.02); }
.brand-mark { 
  font-size: 28px; 
  display: inline-block;
  animation: pawBounce 2s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}
@keyframes pawBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-3px) rotate(-5deg); }
  75% { transform: translateY(-2px) rotate(5deg); }
}
.brand-text { 
  font-size: 24px; 
  letter-spacing: 0.3px;
  font-weight: 800;
  color: var(--text);
}
.site-header:not(.scrolled) .brand-text {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Nav Toggle (Mobile) */
.nav-toggle {
  display: none;
  font-size: 24px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.nav-toggle:hover { 
  background: rgba(255,255,255,0.2);
  transform: scale(1.05);
}
.site-header.scrolled .nav-toggle {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.1);
  color: var(--text);
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 8px;
  padding: 0;
  margin: 0;
  align-items: center;
}
.nav-menu li { position: relative; }
.nav-menu a:not(.btn) { 
  color: var(--text); 
  font-weight: 600;
  font-size: 16px;
  padding: 12px 18px;
  border-radius: 12px;
  display: inline-block;
  position: relative;
  transition: all 0.25s ease;
}
.nav-menu a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand) 0%, #ff6b4a 100%);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}
.nav-menu a:not(.btn):hover::after {
  width: calc(100% - 32px);
}
.nav-menu a:not(.btn):hover { 
  color: var(--text);
  background: rgba(0,0,0,0.03);
}

/* Transparent state (over hero) */
.site-header:not(.scrolled) .nav-menu a:not(.btn) { 
  color: rgba(255,255,255,0.9); 
  text-shadow: 0 1px 3px rgba(0,0,0,0.2); 
}
.site-header:not(.scrolled) .nav-menu a:not(.btn):hover { 
  color: #fff;
  background: rgba(255,255,255,0.12);
}
.site-header:not(.scrolled) .nav-menu a:not(.btn)::after {
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.8) 100%);
}

/* Contact Button in Nav */
.site-header .btn.btn-sm { 
  background: linear-gradient(135deg, var(--brand) 0%, #ff6b4a 100%);
  color: #fff; 
  border: none;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 4px 15px rgba(255,143,112,0.4);
  transition: all 0.25s ease;
}
.site-header .btn.btn-sm:hover { 
  background: linear-gradient(135deg, #ff7a5c 0%, #ff5c3a 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,143,112,0.5);
}
.site-header:not(.scrolled) .btn.btn-sm { 
  background: #fff; 
  color: var(--brand); 
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.site-header:not(.scrolled) .btn.btn-sm:hover { 
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-sm { padding: 8px 14px; font-size: 14px; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { transform: translateY(-1px); }
.btn-outline { border: 2px solid var(--text); color: var(--text); background: transparent; }
.btn-outline:hover { background: #111; color: #fff; }

/* Hero */
.hero {
  position: relative;
  background: url('../images/hero-background.png') center/cover no-repeat;
  overflow: hidden;
  min-height: 100vh;
  margin-bottom: -2px;
}
.hero::after { 
  content: ""; 
  position: absolute; 
  inset: 0; 
  pointer-events: none; 
  opacity: 0; 
  transition: opacity .2s ease; 
}
.hero-wave-top, .hero-wave-bottom { position: absolute; left: 0; right: 0; pointer-events: none; z-index: 2; }
.hero-wave-top { display: none; }
.hero-wave-bottom { bottom: 0; height: 160px; }
.hero-wave-bottom svg { display: block; width: 100%; height: 100%; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  justify-items: start;
  padding: 200px 24px 260px;
  min-height: 100vh;
  position: relative;
  z-index: 3;
}

/* Hero Card - Main Content Container */
.hero-card {
  max-width: 640px;
  width: min(100%, 640px);
  justify-self: start;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 
    0 25px 50px -12px rgba(0,0,0,0.15),
    0 0 0 1px rgba(255,255,255,0.5) inset;
  border-radius: 32px;
  padding: 40px 44px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  
  /* Entrance Animation */
  animation: heroCardEntry 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
}

/* Subtle shimmer effect on card */
.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  animation: shimmer 3s ease-in-out infinite;
  animation-delay: 1s;
}
@keyframes shimmer {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

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

/* Floating animation after entry */
.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 30px 60px -12px rgba(0,0,0,0.18),
    0 0 0 1px rgba(255,255,255,0.6) inset;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hero Typography with staggered animations */
.hero-title {
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.05;
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  
  animation: fadeSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.2s;
  opacity: 0;
  transform: translateY(20px);
}

.hero-subtitle { 
  color: var(--muted); 
  margin-bottom: 12px; 
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.5;
  
  animation: fadeSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.35s;
  opacity: 0;
  transform: translateY(20px);
}

.hero-subline { 
  color: var(--text); 
  font-weight: 600; 
  margin: 0 0 24px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  
  animation: fadeSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.5s;
  opacity: 0;
  transform: translateY(20px);
}

/* Decorative bullets */
.hero-subline::before {
  content: "✦";
  color: var(--brand);
  font-size: 12px;
}

.hero-ctas { 
  display: flex; 
  gap: 16px; 
  flex-wrap: wrap;
  
  animation: fadeSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.65s;
  opacity: 0;
  transform: translateY(20px);
}

/* Enhanced Hero Buttons */
.hero-ctas .btn-primary {
  padding: 16px 32px;
  font-size: 16px;
  background: linear-gradient(135deg, var(--brand) 0%, #ff6b4a 100%);
  box-shadow: 0 8px 24px rgba(255,143,112,0.4);
  position: relative;
  overflow: hidden;
}
.hero-ctas .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}
.hero-ctas .btn-primary:hover::before {
  left: 100%;
}
.hero-ctas .btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(255,143,112,0.5);
}

.hero-ctas .btn-outline {
  padding: 16px 32px;
  font-size: 16px;
  border-width: 2px;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}
.hero-ctas .btn-outline:hover {
  background: var(--text);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

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

.hero-media { display: none; }

/* Sections scaffolding (blank states to be filled later) */
.section { padding: 80px 0; }
.section:nth-child(even) { background: #fcfcfc; }

/* Check-in */
.checkin-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

/* Section Title & Lead - Animated */
.section-checkin .section-title { 
  margin: 0 0 12px; 
  font-size: clamp(28px, 3.5vw, 48px);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-checkin .section-lead { 
  color: var(--muted); 
  margin: 0 0 24px;
  font-size: 18px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.1s;
}

/* Animate in when visible */
.section-checkin.in-view .section-title,
.section-checkin.in-view .section-lead {
  opacity: 1;
  transform: translateY(0);
}

/* Benefit Pills - Staggered Animation */
.checkin-benefits { 
  list-style: none; 
  padding: 0; 
  margin: 0; 
  display: flex; 
  gap: 12px; 
  flex-wrap: wrap; 
}
.checkin-benefits li { 
  background: linear-gradient(135deg, var(--brand-3) 0%, #ffe8b8 100%);
  border-radius: 999px; 
  padding: 10px 18px; 
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.checkin-benefits li:nth-child(1) { transition-delay: 0.2s; }
.checkin-benefits li:nth-child(2) { transition-delay: 0.3s; }
.checkin-benefits li:nth-child(3) { transition-delay: 0.4s; }

.section-checkin.in-view .checkin-benefits li {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Hover effect on pills */
.checkin-benefits li:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.checkin-copy { position: static; padding-bottom: 0; }
.checkin-media { display: none !important; }

/* Section-level background image layer so content does not shift */
.section-checkin { 
  position: relative; 
  overflow: hidden;
}
.section-checkin::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(62vw, 880px);
  height: clamp(240px, 35vw, 440px);
  background: url('../images/booking-image.png') left bottom/contain no-repeat;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transform: translateX(-40px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.3s;
}
.section-checkin.in-view::before {
  opacity: 1;
  transform: translateX(0);
}
.section-checkin .container { position: relative; z-index: 1; }

/* Check-in Form - Enhanced & Animated */
.checkin-form {
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.04);
  opacity: 0;
  transform: translateY(40px) translateX(20px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.2s;
}
.section-checkin.in-view .checkin-form {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/* Form hover lift */
.checkin-form:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field-group { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { 
  font-weight: 600; 
  font-size: 14px; 
  color: #374151;
  display: flex;
  align-items: center;
  gap: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  border: 2px solid #e5e7eb;
  background: #fafafa;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  transition: all 0.25s ease;
}
.field input:hover, .field select:hover, .field textarea:hover {
  border-color: #d1d5db;
  background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus { 
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,143,112,0.15);
}

/* Submit Button in Form */
.checkin-form .btn-primary {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--brand) 0%, #ff6b4a 100%);
  box-shadow: 0 8px 24px rgba(255,143,112,0.35);
  position: relative;
  overflow: hidden;
}
.checkin-form .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}
.checkin-form .btn-primary:hover::before {
  left: 100%;
}
.checkin-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,143,112,0.45);
}

@media (max-width: 900px) {
  .checkin-inner { grid-template-columns: 1fr; }
  .field-group { grid-template-columns: 1fr; }
}

@media (max-width: 1100px) {
  .section-checkin::before { width: 100%; background-size: cover; background-position: center bottom; }
}

/* About Section */
.section-about {
  position: relative;
  background: linear-gradient(180deg, #fcfcfc 0%, #f8fbff 100%);
  overflow: hidden;
}

/* Decorative background elements */
.section-about::before {
  content: "🐾";
  position: absolute;
  top: 60px;
  left: 5%;
  font-size: 80px;
  opacity: 0.06;
  transform: rotate(-15deg);
  pointer-events: none;
}
.section-about::after {
  content: "🐾";
  position: absolute;
  bottom: 80px;
  right: 8%;
  font-size: 100px;
  opacity: 0.05;
  transform: rotate(20deg);
  pointer-events: none;
}

.about-inner {
  position: relative;
  z-index: 1;
}

/* Section Header - Animated */
.section-header { 
  text-align: center; 
  margin-bottom: 32px;
}
.section-about .section-header {
  margin-bottom: 40px;
}
.section-about .section-title {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-about .section-lead {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.1s;
}
.section-about.in-view .section-title,
.section-about.in-view .section-lead {
  opacity: 1;
  transform: translateY(0);
}

/* About Text Block */
.about-text {
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 17px;
  line-height: 1.8;
  color: #4a5568;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.2s;
}
.section-about.in-view .about-text {
  opacity: 1;
  transform: translateY(0);
}

/* Feature Cards Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Feature Cards - Enhanced */
.feature-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Animation initial state */
  opacity: 0;
  transform: translateY(40px);
}

/* Staggered animation delays */
.section-about .feature-card:nth-child(1) { transition-delay: 0.3s; }
.section-about .feature-card:nth-child(2) { transition-delay: 0.4s; }
.section-about .feature-card:nth-child(3) { transition-delay: 0.5s; }
.section-about .feature-card:nth-child(4) { transition-delay: 0.6s; }

.section-about.in-view .feature-card {
  opacity: 1;
  transform: translateY(0);
}

/* Card Icons */
.feature-card::before {
  content: "";
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: transform 0.3s ease;
}
.feature-card[data-accent="peach"]::before { 
  content: "🕐"; 
  background: linear-gradient(135deg, #ffe8df 0%, #ffd4c4 100%);
}
.feature-card[data-accent="mint"]::before { 
  content: "💊"; 
  background: linear-gradient(135deg, #dcffe8 0%, #b8f5ce 100%);
}
.feature-card[data-accent="lemon"]::before { 
  content: "🏠"; 
  background: linear-gradient(135deg, #fff6c9 0%, #ffe99a 100%);
}
.feature-card[data-accent="sky"]::before { 
  content: "📸"; 
  background: linear-gradient(135deg, #e8f7ff 0%, #c4ebff 100%);
}

/* Card hover effects */
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.feature-card:hover::before {
  transform: scale(1.1) rotate(-5deg);
}

/* Accent stripe on top */
.feature-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 24px 24px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feature-card:hover::after { opacity: 1; }
.feature-card[data-accent="peach"]::after { background: linear-gradient(90deg, #ff8f70 0%, #ffb39a 100%); }
.feature-card[data-accent="mint"]::after { background: linear-gradient(90deg, #4ade80 0%, #86efac 100%); }
.feature-card[data-accent="lemon"]::after { background: linear-gradient(90deg, #fbbf24 0%, #fcd34d 100%); }
.feature-card[data-accent="sky"]::after { background: linear-gradient(90deg, #38bdf8 0%, #7dd3fc 100%); }

/* Card backgrounds */
.feature-card[data-accent="peach"] { background: linear-gradient(180deg, #fff 40%, #fff8f5 100%); }
.feature-card[data-accent="mint"] { background: linear-gradient(180deg, #fff 40%, #f5fff8 100%); }
.feature-card[data-accent="lemon"] { background: linear-gradient(180deg, #fff 40%, #fffdf5 100%); }
.feature-card[data-accent="sky"] { background: linear-gradient(180deg, #fff 40%, #f5faff 100%); }

.feature-card h3 { 
  margin: 0 0 10px; 
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}
.feature-card p { 
  margin: 0; 
  color: var(--muted); 
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .section-about .feature-card:nth-child(3) { transition-delay: 0.3s; }
  .section-about .feature-card:nth-child(4) { transition-delay: 0.4s; }
}
@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 24px 20px; }
  .section-about .feature-card:nth-child(1),
  .section-about .feature-card:nth-child(2),
  .section-about .feature-card:nth-child(3),
  .section-about .feature-card:nth-child(4) { transition-delay: 0.3s; }
}

/* Media feature slices - Cat & Dog Sections */
.section-feature { 
  position: relative; 
  overflow: hidden;
}

/* Cat Section - Soft pink/peach theme, blending to blue at bottom */
.section-feature[data-section="cat-boarding"] {
  background: linear-gradient(
    180deg, 
    #fff9f7 0%, 
    #fff5f2 30%, 
    #ffefea 50%,
    #f5f0f8 70%,
    #f0f5ff 90%,
    #e8f4ff 100%
  );
}

/* Dog Section - Soft blue/sky theme, blending from peach at top */
.section-feature[data-section="dog-kennels"] { 
  background: linear-gradient(
    180deg, 
    #e8f4ff 0%,
    #f0f7ff 30%,
    #f5faff 60%,
    #f7fbff 100%
  );
}
.section-feature[data-section="dog-kennels"] .container { position: relative; z-index: 1; }

/* Feature Split Grid */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Cat Section - Push image to the left edge of screen */
.section-feature[data-section="cat-boarding"] .feature-split {
  grid-template-columns: 1fr 1fr;
  padding-left: 0;
}
.section-feature[data-section="cat-boarding"] .feature-media {
  position: relative;
  left: calc(-30vw + 80%);
  margin-left: calc(-30vw + 50%);
  width: calc(30vw);
  max-width: none;
  padding-left: 40px;
}

/* Dog Section - Push image to the right edge of screen */
.section-feature[data-section="dog-kennels"] .feature-split {
  grid-template-columns: 1fr 1fr;
  padding-right: 0;
}
.section-feature[data-section="dog-kennels"] .feature-media {
  position: relative;
  right: calc(-20vw + 60%);
  margin-right: calc(-50vw + 50%);
  width: calc(50vw);
  max-width: none;
  padding-right: 40px;
  display: flex;
  justify-content: flex-end;
}

/* Why Choose / Services Section */
.section-services {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative background */
.section-services::before {
  content: "💝";
  position: absolute;
  top: 10%;
  right: 8%;
  font-size: 120px;
  opacity: 0.04;
  transform: rotate(15deg);
  pointer-events: none;
}

.section-services .section-header {
  margin-bottom: 48px;
}
.section-services .section-title {
  font-size: clamp(28px, 4vw, 48px);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-services .section-lead {
  font-size: 18px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.1s;
}
.section-services.in-view .section-title,
.section-services.in-view .section-lead {
  opacity: 1;
  transform: translateY(0);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.service {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Animation */
  opacity: 0;
  transform: translateY(40px);
}

/* Staggered animations */
.section-services.in-view .service:nth-child(1) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.section-services.in-view .service:nth-child(2) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.section-services.in-view .service:nth-child(3) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.section-services.in-view .service:nth-child(4) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.section-services.in-view .service:nth-child(5) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

/* Service Icons */
.service::before {
  content: "";
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 16px;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.service:nth-child(1)::before { content: "🌙"; background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%); }
.service:nth-child(2)::before { content: "💊"; background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%); }
.service:nth-child(3)::before { content: "🏠"; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); }
.service:nth-child(4)::before { content: "📸"; background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%); }
.service:nth-child(5)::before { content: "❤️"; background: linear-gradient(135deg, #ffe4e6 0%, #fecdd3 100%); }

/* Hover effects */
.service:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.service:hover::before {
  transform: scale(1.1) rotate(-5deg);
}

/* Top accent line on hover */
.service::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, #ff6b4a 100%);
  border-radius: 24px 24px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service:hover::after { opacity: 1; }

.service h3 { 
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}
.service p { 
  margin: 0; 
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { 
  .services-grid { grid-template-columns: 1fr; }
  .service { padding: 24px 20px; }
}

/* Pricing Section */
.section-pricing {
  background: linear-gradient(180deg, #fff 0%, #faf5ff 50%, #f3e8ff 100%);
  position: relative;
  overflow: hidden;
}

.section-pricing .section-header {
  margin-bottom: 48px;
}
.section-pricing .section-title {
  font-size: clamp(28px, 4vw, 48px);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-pricing .section-lead {
  font-size: 18px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.1s;
}
.section-pricing.in-view .section-title,
.section-pricing.in-view .section-lead {
  opacity: 1;
  transform: translateY(0);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.plan {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 28px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Animation */
  opacity: 0;
  transform: translateY(40px);
}

/* Staggered animations */
.section-pricing.in-view .plan:nth-child(1) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.section-pricing.in-view .plan:nth-child(2) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.section-pricing.in-view .plan:nth-child(3) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.section-pricing.in-view .plan-featured { transform: translateY(-12px) scale(1.03); }

/* Plan Icons */
.plan::before {
  content: "";
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 20px;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plan:nth-child(1)::before { content: "🐕"; background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%); }
.plan:nth-child(2)::before { content: "🐱"; background: linear-gradient(135deg, #ffe4e6 0%, #fecdd3 100%); }
.plan:nth-child(3)::before { content: "💊"; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); }

.plan h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
}

.plan .price { 
  font-size: 56px; 
  font-weight: 800; 
  margin: 12px 0 20px;
  background: linear-gradient(135deg, var(--text) 0%, #4a5568 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.plan .currency { 
  font-size: 24px; 
  vertical-align: super; 
  margin-right: 2px;
  font-weight: 600;
}

.plan ul { 
  list-style: none; 
  padding: 0; 
  margin: 0 0 24px; 
  text-align: left;
}
.plan ul li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  color: var(--muted);
  font-size: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.plan ul li:last-child { border-bottom: none; }
.plan ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover effect */
.plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* Featured Plan */
.plan-featured { 
  background: linear-gradient(135deg, var(--brand) 0%, #ff6b4a 100%);
  color: #fff; 
  border: none;
  box-shadow: 0 20px 50px rgba(255,143,112,0.35);
}
.section-pricing.in-view .plan-featured {
  transform: translateY(-12px) scale(1.03);
}
.plan-featured:hover {
  transform: translateY(-16px) scale(1.05);
  box-shadow: 0 30px 60px rgba(255,143,112,0.4);
}
.plan-featured::before { 
  background: rgba(255,255,255,0.25); 
}
.plan-featured h3 { color: #fff; }
.plan-featured .price { 
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}
.plan-featured ul li { 
  color: rgba(255,255,255,0.9);
  border-bottom-color: rgba(255,255,255,0.15);
}
.plan-featured ul li::before {
  background: rgba(255,255,255,0.3);
}
.plan-featured .btn-primary { 
  background: #fff;
  color: var(--brand);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.plan-featured .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

/* Plan Buttons */
.plan .btn-outline {
  width: 100%;
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 15px;
  border-width: 2px;
  transition: all 0.3s ease;
}
.plan .btn-outline:hover {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
  transform: translateY(-2px);
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  color: #fff; 
  font-weight: 700; 
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px; 
  border-radius: 999px; 
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

@media (max-width: 980px) { 
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } 
  .plan-featured,
  .section-pricing.in-view .plan-featured { transform: none; }
  .plan-featured:hover { transform: translateY(-8px); }
}
@media (max-width: 560px) {
  .plan { padding: 28px 22px; }
  .plan .price { font-size: 48px; }
}

/* Testimonials (split layout) */
.testimonials-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }
.eyebrow { text-transform: uppercase; letter-spacing: 2px; font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.display-script { font-family: "Shadows Into Light", cursive; font-size: clamp(28px, 5vw, 48px); margin: 0 0 12px; }
.quote-mark { font-family: Georgia, serif; font-size: 72px; color: #ffcab9; margin: 4px 0 10px; line-height: 1; }
.testi-title { margin: 0 0 10px; font-size: clamp(18px, 2.8vw, 28px); }
.testi-body { color: var(--muted); margin-bottom: 16px; }
.reviewer { display: flex; flex-direction: column; gap: 4px; }
.name { font-weight: 700; }
.role { color: var(--muted); font-size: 12px; }

.testi-ratings { display: grid; place-items: center; }
.testi-image { width: 100%; height: auto; display: block; }

/* Latest cards */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 16px; padding: 16px; box-shadow: var(--shadow); }
.card-media { width: 100%; aspect-ratio: 4/3; border-radius: 12px; background: url('../images/card-placeholder.jpg') center/cover no-repeat, #eef6ff; margin-bottom: 12px; }
.card h3 { margin: 0 0 6px; }
.card p { margin: 0; color: var(--muted); }

@media (max-width: 980px) {
  .card-grid { grid-template-columns: 1fr; }
  .testimonials-split { grid-template-columns: 1fr; }
}
/* Feature Media Container */
.feature-left .feature-media { order: -1; }
.feature-right .feature-media { order: 2; }
.feature-media { 
  position: relative;
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-right .feature-media {
  transform: translateX(40px);
}
.section-feature.in-view .feature-media {
  opacity: 1;
  transform: translateX(0);
}

/* Feature Photo - Image Container */
.feature-photo {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 32px;
  background: transparent;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}
.feature-media:hover .feature-photo {
  transform: scale(1.02) rotate(1deg);
}

/* Cat section image - using transparent cat */
.section-feature[data-section="cat-boarding"] .feature-photo {
  background: url('../images/transparent-cat.png') center/contain no-repeat;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

/* Dog section image */
.section-feature[data-section="dog-kennels"] .feature-photo {
  background: url('../images/dog-image.png') center/contain no-repeat;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

/* Animated Blob */
.blob {
  position: absolute;
  width: 85%;
  aspect-ratio: 1/1;
  border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
  z-index: 1;
  animation: blobMorph 8s ease-in-out infinite;
  transition: all 0.4s ease;
}
@keyframes blobMorph {
  0%, 100% { 
    border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
    transform: translate(-10%, 10%) rotate(0deg);
  }
  25% { 
    border-radius: 50% 50% 40% 60% / 60% 50% 50% 40%;
    transform: translate(-8%, 12%) rotate(2deg);
  }
  50% { 
    border-radius: 60% 40% 50% 50% / 40% 60% 40% 60%;
    transform: translate(-12%, 8%) rotate(-1deg);
  }
  75% { 
    border-radius: 45% 55% 55% 45% / 55% 45% 55% 45%;
    transform: translate(-10%, 10%) rotate(1deg);
  }
}

.blob-peach { 
  background: linear-gradient(135deg, #ffd4c4 0%, #ffb8a3 50%, #ff9f82 100%);
  left: -5%; 
  bottom: -5%;
  box-shadow: 0 20px 60px rgba(255,143,112,0.3);
}
.blob-sky { 
  background: linear-gradient(135deg, #c4ebff 0%, #9bd8ff 50%, #6ec5ff 100%);
  right: -5%; 
  bottom: -5%;
  box-shadow: 0 20px 60px rgba(155,216,255,0.4);
}

/* Hover effect on blob */
.feature-media:hover .blob {
  transform: translate(-10%, 10%) scale(1.05);
}

/* Feature Copy - Text Content */
.feature-copy {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.2s;
}
.section-feature.in-view .feature-copy {
  opacity: 1;
  transform: translateY(0);
}

.section-feature .section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 16px;
  color: var(--text);
}
.section-feature .section-lead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Enhanced List Styling */
.list { 
  padding-left: 0;
  margin: 0 0 28px;
  list-style: none;
}
.list li { 
  margin: 12px 0;
  padding-left: 32px;
  position: relative;
  font-size: 16px;
  color: #4a5568;
  line-height: 1.5;
}
.list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--brand) 0%, #ff6b4a 100%);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Section-specific list checkmark colors */
.section-feature[data-section="cat-boarding"] .list li::before {
  background: linear-gradient(135deg, #ff8f70 0%, #ff6b4a 100%);
}
.section-feature[data-section="dog-kennels"] .list li::before {
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
}

/* Feature Button Styling */
.section-feature .btn-outline {
  padding: 14px 28px;
  font-size: 15px;
  border-width: 2px;
  border-radius: 14px;
  transition: all 0.3s ease;
}
.section-feature[data-section="cat-boarding"] .btn-outline {
  border-color: var(--brand);
  color: var(--brand);
}
.section-feature[data-section="cat-boarding"] .btn-outline:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,143,112,0.35);
}
.section-feature[data-section="dog-kennels"] .btn-outline {
  border-color: #0ea5e9;
  color: #0ea5e9;
}
.section-feature[data-section="dog-kennels"] .btn-outline:hover {
  background: #0ea5e9;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14,165,233,0.35);
}

/* Responsive Feature Sections */
@media (max-width: 980px) {
  .feature-split { 
    grid-template-columns: 1fr; 
    gap: 40px;
  }
  .section-feature[data-section="cat-boarding"] .feature-split,
  .section-feature[data-section="dog-kennels"] .feature-split {
    grid-template-columns: 1fr;
    padding-left: 24px;
    padding-right: 24px;
  }
  .feature-left .feature-media,
  .feature-right .feature-media { order: -1; }
  .section-feature[data-section="cat-boarding"] .feature-media,
  .section-feature[data-section="dog-kennels"] .feature-media {
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 350px;
    padding-left: 0;
    padding-right: 0;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .feature-media {
    max-width: 300px;
  }
  .section-feature .section-title {
    font-size: 28px;
  }
  .list li {
    font-size: 15px;
    padding-left: 28px;
  }
  .list li::before {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }
}

/* Footer */
.site-footer { position: relative; background: #bcf3f9; overflow: hidden; }
.footer-wave { position: absolute; top: -1px; left: 0; right: 0; height: 140px; }
.footer-wave svg { display: block; width: 100%; height: 100%; }
.footer-dog { position: absolute; right: 4%; top: -40px; width: 220px; height: 220px; background: url('../images/feature-placeholder.jpg') center/cover no-repeat; filter: drop-shadow(0 8px 20px rgba(0,0,0,0.18)); border-bottom-left-radius: 16px; }
.footer-inner { padding: 160px 24px 84px; color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; align-items: start; }
.footer-col { min-width: 0; }
.footer-logo { font-weight: 800; color: var(--text); font-size: 22px; margin-bottom: 8px; }
.footer-tag { color: var(--muted); margin-bottom: 10px; font-size: 15px; }
.footer-title { margin: 0 0 12px; color: var(--text); font-weight: 700; font-size: 16px; }
.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin: 8px 0; color: var(--muted); }
.footer-list a { transition: color 0.2s ease; }
.footer-list a:hover { color: var(--brand); }
.footer-col .btn { margin-bottom: 16px; }
.footer-meta { margin-top: 12px; font-size: 13px; color: var(--muted); }

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-dog { display: none; }
  .footer-inner { padding-top: 120px; padding-bottom: 72px; }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { 
    grid-template-columns: 1fr; 
    padding: 140px 20px 160px;
  }
  .hero-card {
    padding: 32px 28px;
    border-radius: 24px;
    max-width: 100%;
  }
  .hero-media { order: -1; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline {
    padding: 14px 24px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .hero { min-height: 90vh; }
  .hero-inner { padding: 120px 16px 140px; }
  .hero-card { 
    padding: 28px 22px;
    border-radius: 20px;
  }
  .hero-title { margin-bottom: 12px; }
  .hero-ctas { 
    flex-direction: column; 
    width: 100%;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile overlay for readability */
@media (max-width: 900px) {
  .hero::after { opacity: 1; background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.28) 100%); }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-menu {
    position: absolute;
    top: 72px;
    right: 16px;
    left: 16px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 20px;
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    animation: slideDown 0.3s ease;
  }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .nav-menu.open { display: flex; }
  .nav-menu a:not(.btn) { 
    color: var(--text) !important; 
    text-shadow: none !important;
    padding: 12px 16px;
    border-radius: 12px;
    width: 100%;
  }
  .nav-menu a:not(.btn):hover { background: rgba(0,0,0,0.04); }
  .nav-menu a:not(.btn)::after { display: none; }
  .nav-menu .btn.btn-sm {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    background: var(--brand) !important;
    color: #fff !important;
  }
}

