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

:root {
  --deep-purple: #4a1a6b;
  --purple-mid: #6b3fa0;
  --clean-blue: #5b9bd5;
  --white: #ffffff;
  --off-white: #f8f6fb;
  --pastel-lavender: #c9b1d9;
  --pastel-blue: #a8d0e6;
  --pastel-pink: #e8c4d8;
  --text-body: #3d2a54;
  --bubble-1: rgba(137, 196, 244, 0.15);
  --bubble-2: rgba(201, 177, 217, 0.12);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Quicksand', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-body);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========== Bubble Background ========== */
body::before, body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.5;
}
body::before {
  width: 500px; height: 500px;
  top: -100px; right: -150px;
  background: radial-gradient(circle, var(--bubble-1), transparent 70%);
  animation: float-slow 20s ease-in-out infinite;
}
body::after {
  width: 400px; height: 400px;
  bottom: 10%; left: -100px;
  background: radial-gradient(circle, var(--bubble-2), transparent 70%);
  animation: float-slow 25s ease-in-out infinite reverse;
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* ========== Utility ========== */
.container { max-width: 960px; margin: 0 auto; padding: 0 1.25rem; }

/* ========== Header / Nav ========== */
header {
  background: linear-gradient(135deg, var(--deep-purple), var(--purple-mid));
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(74, 26, 107, 0.3);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.logo-area { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }

.logo-area img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pastel-lavender);
  box-shadow: 0 4px 16px rgba(74, 26, 107, 0.12);
}

.logo-area h1 { font-size: 1.35rem; font-weight: 700; letter-spacing: 0.02em; white-space: nowrap; }

.logo-area h1 span {
  font-family: 'Pacifico', cursive;
  color: var(--pastel-lavender);
  font-weight: 400;
}

nav { display: flex; gap: 0.35rem; flex-wrap: nowrap; align-items: center; }

nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0.85;
  padding: 0.3rem 0.55rem;
  border-radius: 50px;
  transition: opacity 0.2s, background 0.2s;
  white-space: nowrap;
}
nav a:hover, nav a:focus {
  opacity: 1;
  background: rgba(255, 255, 255, 0.15);
  text-decoration: none;
}

/* ========== Hero — Light & Iridescent ========== */
.hero {
  background: linear-gradient(180deg, var(--off-white) 0%, #f0eaf5 40%, #eaf3fb 70%, var(--off-white) 100%);
  color: var(--text-body);
  text-align: center;
  padding: 4.5rem 1.25rem 3rem;
  position: relative;
  overflow: hidden;
}

/* Iridescent shimmer overlay — more visible on light bg */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(232,196,216,0.15) 0%, rgba(168,208,230,0.2) 25%,
    rgba(201,177,217,0.15) 50%, rgba(137,196,244,0.2) 75%,
    rgba(232,196,216,0.15) 100%);
  background-size: 400% 400%;
  animation: hero-shimmer 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hero-shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Floating bubbles — more colorful against light */
.hero-bubbles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%,
    rgba(255,255,255,0.7), rgba(201,177,217,0.2) 40%,
    rgba(168,208,230,0.15) 70%, transparent 100%);
  border: 1px solid rgba(201,177,217,0.25);
  box-shadow: inset 0 0 8px rgba(232,196,216,0.2), 0 2px 8px rgba(168,208,230,0.1);
}

.b1 { width: 120px; height: 120px; top: 10%; left: 5%; animation: bubble-float 12s ease-in-out infinite; }
.b2 { width: 80px; height: 80px; top: 60%; left: 15%; animation: bubble-float 9s ease-in-out infinite 2s; }
.b3 { width: 200px; height: 200px; top: -5%; right: 8%; animation: bubble-float 15s ease-in-out infinite 1s; }
.b4 { width: 60px; height: 60px; top: 40%; right: 20%; animation: bubble-float 8s ease-in-out infinite 3s; }
.b5 { width: 140px; height: 140px; bottom: 5%; left: 40%; animation: bubble-float 11s ease-in-out infinite 4s; }
.b6 { width: 50px; height: 50px; top: 25%; left: 55%; animation: bubble-float 7s ease-in-out infinite 1.5s; }

@keyframes bubble-float {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  25% { transform: translate(15px, -20px) scale(1.05); opacity: 0.9; }
  50% { transform: translate(-10px, -35px) scale(0.95); opacity: 0.6; }
  75% { transform: translate(20px, -15px) scale(1.02); opacity: 0.8; }
}

.hero .cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--deep-purple), var(--purple-mid));
  color: var(--white);
  padding: 0.8rem 2.25rem; border-radius: 50px; text-decoration: none;
  font-weight: 700; font-size: 1rem; position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(74, 26, 107, 0.2);
}
.hero .cta-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(74, 26, 107, 0.3); }

/* Info bar — subtle on light bg */
.hero-info-bar {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 0.5rem 1.75rem; margin-top: 2rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(201,177,217,0.3);
  font-size: 0.88rem; position: relative;
  color: var(--text-body);
}
.hero-info-bar span { opacity: 0.8; }
.hero-info-bar a { color: var(--deep-purple); text-decoration: none; font-weight: 600; }
.hero-info-bar a:hover { text-decoration: underline; }

/* Hero copy options */
.hero-copy { position: relative; min-height: 180px; }

.hero-option {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
}
.hero-option.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-option h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  margin-bottom: 0.6rem;
  position: relative;
  color: var(--deep-purple);
  line-height: 1.25;
}

.hero-accent {
  font-family: 'Pacifico', cursive;
  font-weight: 400;
  font-size: 2rem;
  color: var(--purple-mid);
}

.hero-option p {
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 1.75rem;
  position: relative;
  line-height: 1.9;
  color: var(--text-body);
  letter-spacing: 0.01em;
}

.hero-option-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.hero-option-btn {
  background: var(--white);
  border: 1.5px solid var(--pastel-lavender);
  border-radius: 50%;
  width: 34px; height: 34px;
  font-size: 1rem;
  color: var(--deep-purple);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.hero-option-btn:hover {
  background: var(--deep-purple);
  color: var(--white);
  border-color: var(--deep-purple);
}

.hero-option-counter {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--purple-mid);
  min-width: 3rem;
  text-align: center;
}

/* ========== Sections ========== */
section { padding: 3rem 0; }

section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem; font-weight: 700;
  color: var(--deep-purple); margin-bottom: 1.25rem; text-align: center;
}

/* ========== About ========== */
.about-layout {
  display: flex; align-items: flex-start; gap: 2rem; margin-top: 1rem;
  background: rgba(255, 255, 255, 0.35); backdrop-filter: blur(6px);
  border-radius: 20px; padding: 2rem;
  box-shadow: 0 4px 20px rgba(74, 26, 107, 0.08);
  position: relative; overflow: hidden;
}

.about-layout::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, #e8c4d8, #c9b1d9, #a8d0e6, #89c4f4, #5b9bd5, #89c4f4, #a8d0e6, #c9b1d9, #e8c4d8);
  background-size: 100% 300%; animation: shimmer-v 6s ease-in-out infinite;
}

@keyframes shimmer-v {
  0% { background-position: 50% 0%; }
  50% { background-position: 50% 100%; }
  100% { background-position: 50% 0%; }
}

.about-photo { flex-shrink: 0; }
.about-photo img {
  width: 150px; height: 150px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--pastel-lavender); box-shadow: 0 4px 16px rgba(74, 26, 107, 0.12);
}

.about-text p { font-size: 0.92rem; line-height: 1.75; margin-bottom: 0.75rem; }
.about-text p:last-child { margin-bottom: 0; }
.about-lead { font-size: 1.05rem !important; font-weight: 600; color: var(--deep-purple); }
.about-note { font-size: 0.85rem !important; color: var(--purple-mid); font-style: italic; }
.about-note a { color: var(--deep-purple); font-weight: 600; text-decoration: none; }
.about-note a:hover { text-decoration: underline; }

/* ========== Scroll Glow — shared across all cards ========== */
.glow-card { position: relative; transition: transform 0.4s, box-shadow 0.4s; }

.glow-card::after {
  content: ''; position: absolute; inset: -1.5px; border-radius: inherit;
  background: linear-gradient(135deg, rgba(232,196,216,0.5), rgba(168,208,230,0.5), rgba(201,177,217,0.5));
  z-index: -1; opacity: 0; transition: opacity 0.5s; pointer-events: none;
}

.glow-card.in-view { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(74, 26, 107, 0.12); }
.glow-card.in-view::after { opacity: 1; }

/* ========== Pricing — Iridescent Theme ========== */
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.pricing-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }

.pricing-tab {
  font-family: 'Pacifico', cursive; padding: 0.55rem 1.4rem;
  border: 1.5px solid var(--pastel-lavender); border-radius: 50px;
  background: var(--white); color: var(--text-body);
  font-size: 1.15rem; font-weight: 400; cursor: pointer; transition: all 0.25s;
}
.pricing-tab:hover { border-color: var(--purple-mid); color: var(--deep-purple); }
.pricing-tab.active { background: linear-gradient(135deg, var(--deep-purple), var(--purple-mid)); color: var(--white); border-color: transparent; }

.pricing-panel { display: none; }
.pricing-panel.active { display: block; }

.pricing-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem; margin-top: 0.5rem; }
.pricing-grid > .price-card { flex: 1 1 0; min-width: 0; }

.price-card {
  position: relative; z-index: 1;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 1.5rem; box-shadow: 0 4px 20px rgba(74, 26, 107, 0.08);
  transition: transform 0.4s, box-shadow 0.4s; overflow: hidden;
}

.price-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #e8c4d8, #c9b1d9, #a8d0e6, #89c4f4, #5b9bd5, #89c4f4, #a8d0e6, #c9b1d9, #e8c4d8);
  background-size: 300% 100%; animation: shimmer 6s ease-in-out infinite;
}

.price-card h3 { font-family: 'Pacifico', cursive; color: var(--deep-purple); font-size: 1.1rem; font-weight: 400; margin-bottom: 0.4rem; position: relative; }
.price-card .price-subtitle { font-size: 0.8rem; color: var(--purple-mid); margin-bottom: 0.75rem; font-style: italic; }

.price-table { width: 100%; border-collapse: collapse; position: relative; }
.price-table tr { border-bottom: 1px solid rgba(201, 177, 217, 0.2); }
.price-table tr:last-child { border-bottom: none; }
.price-table td { padding: 0.4rem 0; font-size: 0.88rem; vertical-align: top; }
.price-table td:first-child { color: var(--text-body); padding-right: 0.75rem; }
.price-table td:last-child { text-align: right; font-weight: 600; color: var(--deep-purple); white-space: nowrap; }

.price-card .card-note { margin-top: 0.6rem; font-size: 0.78rem; color: var(--purple-mid); font-style: italic; line-height: 1.5; position: relative; }

.pricing-note { text-align: center; margin-top: 1.25rem; font-size: 0.85rem; color: var(--purple-mid); font-style: italic; }
.pricing-note a { color: var(--deep-purple); font-weight: 600; text-decoration: none; }
.pricing-note a:hover { text-decoration: underline; }

.pricing-intro {
  text-align: center; max-width: 600px; margin: -0.5rem auto 1.25rem;
  font-size: 0.88rem; color: var(--text-body); line-height: 1.7;
  padding: 1rem 1.25rem; background: linear-gradient(135deg, rgba(201,177,217,0.1), rgba(168,208,230,0.1));
  border-radius: 12px; border: 1px solid rgba(201, 177, 217, 0.2);
}

.size-label { font-weight: 400; font-size: 0.78rem; color: var(--purple-mid); }

.pricing-extras { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; margin-top: 1.25rem; }
.extra-card { border-top: none; }
.extra-card::before { background: linear-gradient(90deg, #e8c4d8, #d4a8c8, #c9b1d9, #b8a0cc); background-size: 200% 100%; }

.table-note { font-size: 0.78rem !important; font-style: italic; color: var(--purple-mid) !important; text-align: left !important; font-weight: 400 !important; padding-top: 0 !important; }

/* ========== Testimonials ========== */
.testimonials-track { position: relative; overflow: hidden; margin-top: 1rem; }
.testimonials-slider { display: flex; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.testimonial-card { flex: 0 0 100%; min-width: 0; padding: 0 0.5rem; }

.testimonial-inner {
  background: rgba(255, 255, 255, 0.55); backdrop-filter: blur(6px);
  border-radius: 16px; padding: 1.75rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(74, 26, 107, 0.08);
  border: 1px solid rgba(201, 177, 217, 0.25);
  text-align: center; max-width: 600px; margin: 0 auto;
}

.testimonial-inner blockquote { font-size: 0.95rem; line-height: 1.7; font-style: italic; color: var(--text-body); margin-bottom: 0.75rem; }

.testimonials-controls { display: flex; justify-content: center; align-items: center; gap: 1rem; margin-top: 1.25rem; }

.testimonial-btn {
  background: var(--white); border: 1.5px solid var(--pastel-lavender); border-radius: 50%;
  width: 40px; height: 40px; font-size: 1.1rem; color: var(--deep-purple);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.testimonial-btn:hover { background: var(--deep-purple); color: var(--white); border-color: var(--deep-purple); }

.testimonials-dots { display: flex; gap: 0.4rem; }
.testimonials-dots button { width: 10px; height: 10px; border-radius: 50%; border: none; background: var(--pastel-lavender); cursor: pointer; padding: 0; transition: background 0.2s, transform 0.2s; }
.testimonials-dots button.active { background: var(--deep-purple); transform: scale(1.25); }

.testimonials-cta { text-align: center; margin-top: 1rem; }
.testimonials-cta a { color: var(--purple-mid); font-size: 0.88rem; font-weight: 600; text-decoration: none; }
.testimonials-cta a:hover { text-decoration: underline; }

/* ========== Social Gallery ========== */
.gallery-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 1rem;
  max-width: 700px; margin-left: auto; margin-right: auto;
  transition: opacity 0.5s ease;
}
.gallery-grid.fading { opacity: 0; }

.gallery-slot {
  background: rgba(255, 255, 255, 0.55); backdrop-filter: blur(6px);
  border-radius: 16px; padding: 1rem;
  box-shadow: 0 4px 16px rgba(74, 26, 107, 0.08);
  border: 1px solid rgba(201, 177, 217, 0.25);
  min-height: 680px; display: flex; align-items: center; justify-content: center; overflow: hidden;
}

.gallery-slot iframe, .gallery-slot blockquote { max-width: 100% !important; width: 100% !important; }
.gallery-slot iframe { min-height: 650px; }

.gallery-refresh {
  display: block; margin: 1rem auto 0; background: none;
  border: 1.5px solid var(--pastel-lavender); border-radius: 50px;
  padding: 0.5rem 1.25rem; font-size: 0.85rem; font-weight: 600;
  color: var(--purple-mid); cursor: pointer; transition: background 0.2s, color 0.2s;
}
.gallery-refresh:hover { background: var(--deep-purple); color: var(--white); border-color: var(--deep-purple); }

/* ========== Policies (modal reuse) ========== */
.policy-item { background: var(--white); border-radius: 12px; padding: 1.25rem; margin-bottom: 1rem; border-left: 4px solid var(--pastel-pink); }
.policy-item:last-child { margin-bottom: 0; }
.policy-item h3 { font-family: 'Playfair Display', Georgia, serif; color: var(--deep-purple); font-size: 1.05rem; margin-bottom: 0.4rem; }
.policy-item p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 0.6rem; }
.policy-item p:last-of-type { margin-bottom: 0.4rem; }

.policy-item details { margin: 0.75rem 0; padding: 0.75rem 1rem; background: rgba(91, 155, 213, 0.06); border-radius: 10px; border: 1px solid rgba(201, 177, 217, 0.25); }
.policy-item details summary { cursor: pointer; color: var(--deep-purple); font-size: 0.92rem; padding: 0.2rem 0; }
.policy-item details summary:hover { text-decoration: underline; }
.policy-item details[open] summary { margin-bottom: 0.5rem; }

.condition-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 0.3rem 1rem; }
.condition-list li { font-size: 0.88rem; padding: 0.25rem 0; line-height: 1.5; }
.condition-list li::before { content: '• '; color: var(--purple-mid); }

.policy-note { margin-top: 0.75rem; padding: 0.75rem; background: rgba(232, 196, 216, 0.15); border-radius: 8px; font-size: 0.85rem; border-left: 3px solid var(--pastel-pink); }

/* ========== Appointment Form ========== */
.form-section {
  background: rgba(255, 255, 255, 0.55); backdrop-filter: blur(6px);
  border-radius: 16px; padding: 2rem;
  box-shadow: 0 4px 16px rgba(74, 26, 107, 0.08);
  max-width: 600px; margin: 1rem auto 0;
}
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--deep-purple); margin-bottom: 0.3rem; }

.form-group:has(input[required], select[required], textarea[required]) > label::after,
.services-fieldset legend::after { content: ' *'; color: #d32323; font-weight: 700; }

.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.65rem 0.85rem; border: 1.5px solid var(--pastel-lavender);
  border-radius: 10px; font-size: 0.95rem; font-family: inherit;
  background: var(--off-white); transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--purple-mid); }
.form-group textarea { resize: vertical; min-height: 80px; }

.checkbox-group { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 1rem; }
.checkbox-group input[type="checkbox"] { margin-top: 0.25rem; accent-color: var(--deep-purple); width: 18px; height: 18px; }
.checkbox-group label { font-size: 0.85rem; font-weight: 400; color: var(--text-body); line-height: 1.5; }

.submit-btn {
  display: block; width: 100%; padding: 0.75rem;
  background: linear-gradient(135deg, var(--deep-purple), var(--purple-mid));
  color: var(--white); border: none; border-radius: 50px;
  font-size: 1rem; font-weight: 600; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(74, 26, 107, 0.3); }
.submit-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }

/* Dog entry blocks */
.dog-entry { background: var(--off-white); border: 1px solid rgba(201, 177, 217, 0.3); border-radius: 12px; padding: 1rem; margin-bottom: 0.75rem; }
.dog-entry-header { font-family: 'Pacifico', cursive; font-size: 0.95rem; color: var(--deep-purple); margin-bottom: 0.6rem; }
.dog-entry .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.dog-entry .form-row-3 { grid-template-columns: 1fr 1fr 1fr; }

.dog-count-control { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.dog-count-control label { font-weight: 600; font-size: 0.9rem; color: var(--deep-purple); }

.dog-count-btn {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid var(--pastel-lavender); background: var(--white);
  color: var(--deep-purple); font-size: 1.1rem; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.dog-count-btn:hover { background: var(--deep-purple); color: var(--white); border-color: var(--deep-purple); }
.dog-count-btn.limit-flash { animation: limitPulse 0.6s ease; }
@keyframes limitPulse {
  0% { background: var(--white); }
  20% { background: #f8d7da; border-color: #e57373; }
  100% { background: var(--white); border-color: var(--pastel-lavender); }
}
.dog-count-display { font-size: 1.1rem; font-weight: 700; color: var(--deep-purple); min-width: 1.5rem; text-align: center; }

/* Service checkboxes */
.services-fieldset, .dog-services-fieldset { border: none; margin-bottom: 1rem; }
.services-fieldset legend, .dog-services-fieldset legend { font-weight: 600; font-size: 0.9rem; color: var(--deep-purple); margin-bottom: 0.5rem; }
.dog-services-fieldset { margin: 0.75rem 0 0; padding: 0.75rem; background: rgba(107, 63, 160, 0.04); border-radius: 10px; }
.dog-services-fieldset legend { font-size: 0.82rem; }

details.dog-entry { border: 1px solid rgba(201, 177, 217, 0.3); border-radius: 12px; margin-bottom: 0.75rem; overflow: hidden; }
details.dog-entry[open] { border-color: rgba(107, 63, 160, 0.25); }
details.dog-entry summary.dog-entry-header {
  cursor: pointer; padding: 0.75rem 1rem; font-weight: 600; font-size: 0.95rem;
  color: var(--deep-purple); background: rgba(107, 63, 160, 0.04);
  list-style: none; display: flex; align-items: center; gap: 0.5rem;
}
details.dog-entry summary.dog-entry-header::-webkit-details-marker { display: none; }
details.dog-entry summary.dog-entry-header::before { content: '▸'; font-size: 0.8rem; transition: transform 0.2s; }
details.dog-entry[open] summary.dog-entry-header::before { transform: rotate(90deg); }
.dog-summary-hint { font-weight: 400; font-size: 0.8rem; color: var(--purple-mid); opacity: 0.8; }
.dog-entry-body { padding: 0.75rem 1rem 1rem; }
.dog-entry-body .services-grid { margin-top: 0.75rem; padding: 0.75rem; background: rgba(107, 63, 160, 0.04); border-radius: 10px; }

/* Compact dog fields: name + weight on row 1, breed full width on row 2 */
.dog-fields { display: grid; grid-template-columns: 1fr 60px; gap: 0.5rem; align-items: end; }
.dog-fields .form-group { margin-bottom: 0; }
.dog-field-name { min-width: 0; }
.dog-field-breed { grid-column: 1 / -1; }
.dog-field-weight input { text-align: center; padding-left: 4px; padding-right: 4px; box-sizing: border-box; }

/* Compact services: 3-col grid, no dividers */
.dog-services-compact {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.3rem 0.5rem;
  margin-top: 0.6rem; padding: 0.6rem 0.75rem;
  background: rgba(107, 63, 160, 0.04); border-radius: 10px;
}
.dog-services-compact .service-check { font-size: 0.82rem; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; }
.service-check { display: flex; align-items: center; gap: 0.4rem; font-size: 0.88rem; color: var(--text-body); }
.service-check input[type="checkbox"] { accent-color: var(--deep-purple); width: 16px; height: 16px; }
.services-divider { font-size: 0.78rem; font-weight: 600; color: var(--purple-mid); text-transform: uppercase; letter-spacing: 0.04em; margin-top: 0.5rem; margin-bottom: 0.25rem; grid-column: 1 / -1; }

/* ========== Policy Modal ========== */
.policy-modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(45, 24, 69, 0.6); backdrop-filter: blur(4px);
  z-index: 200; align-items: center; justify-content: center; padding: 1rem;
}
.policy-modal-overlay.open { display: flex; }

.policy-modal {
  background: var(--off-white); border-radius: 20px; max-width: 640px; width: 100%;
  max-height: 85vh; overflow-y: auto; padding: 2rem;
  box-shadow: 0 20px 60px rgba(45, 24, 69, 0.3); position: relative;
  animation: modal-in 0.3s ease-out;
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.policy-modal-close {
  position: absolute; top: 1rem; right: 1rem; width: 32px; height: 32px;
  border-radius: 50%; border: none; background: rgba(201, 177, 217, 0.2);
  color: var(--deep-purple); font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.policy-modal-close:hover { background: rgba(201, 177, 217, 0.5); }

.policy-modal h3 { font-family: 'Playfair Display', Georgia, serif; color: var(--deep-purple); font-size: 1.2rem; text-align: center; margin-bottom: 1.25rem; }
.policy-modal .policy-item { margin-bottom: 1rem; }

.policy-modal-ack-btn {
  display: block; width: 100%; padding: 0.75rem; margin-top: 1rem;
  background: linear-gradient(135deg, var(--deep-purple), var(--purple-mid));
  color: var(--white); border: none; border-radius: 50px;
  font-family: 'Quicksand', sans-serif; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
}
.policy-modal-ack-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(74, 26, 107, 0.3); }
.policy-modal-ack-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none; }

.policy-modal-status { display: flex; justify-content: center; gap: 1rem; margin-bottom: 1rem; }

.policy-badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.8rem; font-weight: 600; padding: 0.3rem 0.75rem;
  border-radius: 50px; border: 1.5px solid var(--pastel-lavender);
  color: var(--text-body); transition: all 0.3s;
}
.policy-badge.acknowledged { background: var(--deep-purple); color: var(--white); border-color: var(--deep-purple); }
.policy-badge .badge-icon { font-size: 0.9rem; }

.checkbox-group.locked label { opacity: 0.5; }
.checkbox-group.locked input[type="checkbox"] { pointer-events: none; }

.required-star { color: #d32323; font-weight: 700; font-size: 1rem; }

.policy-hint-pending { display: block; margin-top: 0.3rem; font-size: 0.82rem; font-weight: 700; color: #d32323; animation: hint-pulse 2s ease-in-out infinite; }
.policy-hint-done { display: block; margin-top: 0.3rem; font-size: 0.82rem; font-weight: 700; color: var(--deep-purple); animation: none; }

@keyframes hint-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }

/* ========== Social ========== */
.connect-icon {
  text-align: center;
  margin-bottom: 0.75rem;
}

.connect-icon img {
  width: 200px;
  height: auto;
  border-radius: 16px;
  object-fit: contain;
  padding: 0.75rem;
  background: linear-gradient(135deg,
    rgba(232,196,216,0.25), rgba(168,208,230,0.25),
    rgba(201,177,217,0.25), rgba(137,196,244,0.25));
  background-size: 400% 400%;
  animation: hero-shimmer 8s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(74, 26, 107, 0.12);
  opacity: 0.4;
}

.social-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  border-radius: 18px;
  border: 1px solid rgba(201, 177, 217, 0.25);
  box-shadow: 0 4px 16px rgba(74, 26, 107, 0.08);
  text-decoration: none;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  position: relative;
}

/* Iridescent top shimmer on social cards */
.social-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    #e8c4d8, #c9b1d9, #a8d0e6, #89c4f4, #5b9bd5,
    #89c4f4, #a8d0e6, #c9b1d9, #e8c4d8);
  background-size: 300% 100%;
  animation: shimmer 6s ease-in-out infinite;
}

.social-icon {
  width: 40px;
  height: 40px;
  color: var(--deep-purple);
  transition: color 0.3s, transform 0.3s;
}

.social-card:hover .social-icon {
  color: var(--purple-mid);
  transform: scale(1.15);
}

.social-card-label {
  font-family: 'Pacifico', cursive;
  font-size: 1.1rem;
  color: var(--deep-purple);
}

.social-card-sub {
  font-size: 0.78rem;
  color: var(--purple-mid);
  font-style: italic;
}

/* ========== Decorative Accents ========== */
.deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
}

.deco-paw { width: 80px; height: auto; }
.deco-scissors { width: 60px; height: auto; }

/* Reviews section paw */
.deco-reviews-left {
  top: 1rem; left: 1.5rem;
  transform: rotate(0deg);
  width: 65px;
}

/* Services scissors */
.deco-services {
  top: 0.5rem; right: 2rem;
  transform: rotate(70deg);
  width: 65px;
  opacity: 0.2;
}

/* Ensure containers can hold positioned deco elements */
#about .container,
#services .container,
#book .container {
  position: relative;
  overflow: visible;
}

/* Section underlays — large faded watermarks */
.section-underlay {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.09;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
}

#about { position: relative; overflow: hidden; }
#about .section-underlay {
  width: 300px; height: auto;
  top: 50%;
  transform: translateX(-50%) translateY(-40%) rotate(0deg);
  opacity: 0.3;
}

#reviews { position: relative; overflow: hidden; }
#reviews .section-underlay {
  width: 400px; height: auto;
  transform: translateX(-50%) rotate(0deg);
  opacity: 0.05;
}

#services { position: relative; overflow: hidden; }
#services .section-underlay {
  width: 500px; height: auto;
  transform: translateX(-50%) scaleX(-1) scaleY(-1) rotate(-30deg);
  opacity: 0.07;
}

#gallery { position: relative; overflow: hidden; }

#book { position: relative; overflow: hidden; }
#book .section-underlay {
  width: 450px; height: auto;
  top: 50%;
  transform: translateX(-50%) translateY(-50%) scaleX(-1);
  opacity: 0.09;
}

/* ========== Tip Feature ========== */
.tip-trigger {
  font-family: 'Pacifico', cursive;
  font-size: 1.2rem;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--deep-purple), var(--purple-mid));
  color: var(--white);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(74, 26, 107, 0.2);
}
.tip-trigger:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(74, 26, 107, 0.3);
}

.tip-modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(45, 24, 69, 0.6); backdrop-filter: blur(4px);
  z-index: 200; align-items: center; justify-content: center; padding: 1rem;
}
.tip-modal-overlay.open { display: flex; }

.tip-modal {
  background: var(--off-white); border-radius: 20px; max-width: 460px; width: 100%;
  max-height: 85vh; overflow-y: auto;
  padding: 2rem; text-align: center;
  box-shadow: 0 20px 60px rgba(45, 24, 69, 0.3); position: relative;
  animation: modal-in 0.3s ease-out;
}

.tip-modal h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--deep-purple); font-size: 1.4rem; margin-bottom: 0.5rem;
}

.tip-modal-sub {
  font-size: 0.88rem; color: var(--text-body); margin-bottom: 1.5rem; line-height: 1.6;
}

.tip-options {
  display: flex; justify-content: center; gap: 1.25rem; flex-wrap: wrap;
}

.tip-option {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.6); backdrop-filter: blur(6px);
  border: 1.5px solid rgba(201, 177, 217, 0.3);
  border-radius: 16px; text-decoration: none; color: var(--deep-purple);
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  font-family: inherit; font-size: inherit;
}
.tip-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(74, 26, 107, 0.15);
  border-color: var(--purple-mid);
}

.tip-icon { width: 36px; height: 36px; color: var(--deep-purple); }

.tip-option-name {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700; font-size: 0.9rem;
}

.zelle-info {
  margin-top: 1.25rem; padding: 1rem;
  background: rgba(201, 177, 217, 0.1); border-radius: 12px;
  animation: hero-fade-in 0.3s ease-out;
}
.zelle-info p { font-size: 0.88rem; color: var(--text-body); margin-bottom: 0.3rem; }
.zelle-detail { font-size: 1.2rem !important; font-weight: 700; color: var(--deep-purple) !important; letter-spacing: 0.02em; }
.zelle-hint { font-size: 0.78rem !important; color: var(--purple-mid) !important; font-style: italic; }

.zelle-copy-row {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  margin: 0.25rem 0;
}

.zelle-copy-btn {
  background: none; border: 1.5px solid rgba(201, 177, 217, 0.3);
  border-radius: 8px; padding: 0.3rem 0.5rem; cursor: pointer;
  font-size: 0.9rem; transition: background 0.2s, border-color 0.2s;
}
.zelle-copy-btn:hover { background: rgba(201, 177, 217, 0.15); border-color: var(--purple-mid); }
.zelle-copy-btn.copied { border-color: var(--deep-purple); background: rgba(74, 26, 107, 0.08); }

/* CARRET summary dropdown */
.carret-summary {
  text-align: left; margin: 0 0 1.25rem; padding: 0.85rem 1rem;
  background: rgba(201, 177, 217, 0.08); border-radius: 12px;
  border: 1px solid rgba(201, 177, 217, 0.2);
}
.carret-summary summary {
  cursor: pointer; color: var(--deep-purple); font-weight: 600;
  font-size: 0.9rem; padding: 0.15rem 0;
}
.carret-summary summary:hover { text-decoration: underline; }
.carret-summary[open] summary { margin-bottom: 0.5rem; }
.carret-summary p { font-size: 0.85rem; line-height: 1.65; color: var(--text-body); margin-bottom: 0.4rem; }
.carret-summary p:last-child { margin-bottom: 0; }
.carret-summary a { color: var(--deep-purple); font-weight: 600; text-decoration: none; }
.carret-summary a:hover { text-decoration: underline; }

/* Skip / back buttons */
.tip-skip-btn, .tip-back-btn {
  display: block; width: 100%; margin-top: 1.25rem; padding: 0.6rem;
  background: none; border: 1.5px solid rgba(201, 177, 217, 0.3);
  border-radius: 50px; color: var(--purple-mid); font-family: inherit;
  font-size: 0.85rem; font-weight: 600; cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.tip-skip-btn:hover, .tip-back-btn:hover {
  background: var(--deep-purple); color: var(--white); border-color: var(--deep-purple);
}
.tip-back-btn { font-size: 0.8rem; font-weight: 500; opacity: 0.7; border: none; padding: 0.5rem; }
.tip-back-btn:hover { opacity: 1; background: none; color: var(--deep-purple); }

/* ========== Footer ========== */
footer { background: var(--deep-purple); color: var(--white); text-align: center; padding: 1.5rem 1.25rem; margin-top: 2rem; font-size: 0.85rem; opacity: 0.95; }
footer a { color: var(--pastel-lavender); text-decoration: none; }
footer a:hover { text-decoration: underline; }

.dev-credit {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(201, 177, 217, 0.15);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.4;
  transition: opacity 0.3s;
}
.dev-credit:hover { opacity: 0.8; }

.dev-credit-name {
  font-weight: 700;
  letter-spacing: 0.12em;
  background: linear-gradient(90deg, var(--pastel-lavender), var(--pastel-blue), var(--pastel-pink));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s ease-in-out infinite;
}

/* ========== Mobile ========== */
@media (max-width: 600px) {
  .deco { opacity: 0.08; }
  .deco-services { width: 40px; }
  .hero h2, .hero-option h2 { font-size: 1.7rem; }
  .hero-accent { font-size: 1.4rem; }
  .hero p, .hero-option p { font-size: 0.95rem; }
  .hero-info-bar { font-size: 0.8rem; gap: 0.3rem 1rem; }

  .header-main { flex-wrap: wrap; justify-content: center; gap: 0.4rem; }
  .logo-area { gap: 0.5rem; }
  .logo-area img { width: 40px; height: 40px; }
  .logo-area h1 { font-size: 1.1rem; }
  nav { gap: 0.15rem; justify-content: center; }
  nav a { font-size: 0.75rem; padding: 0.25rem 0.4rem; }

  .social-cards { grid-template-columns: 1fr; max-width: 280px; }
  .testimonial-card { padding: 0; }
  .testimonial-inner {
    background: none; backdrop-filter: none; box-shadow: none; border: none;
    border-radius: 0; padding: 0;
    display: flex; justify-content: center;
  }
  .testimonial-inner iframe { max-width: 100% !important; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-slot { min-height: 580px; }
  .gallery-slot iframe { min-height: 550px; }
  .about-layout { flex-direction: column; align-items: center; text-align: center; padding: 1.5rem; }
  .about-photo img { width: 120px; height: 120px; }
  .pricing-tab { flex: 1 1 auto; text-align: center; font-size: 1rem; padding: 0.5rem 0.75rem; }
  .pricing-grid > .price-card { flex: 0 0 100%; }
  .dog-entry .form-row, .dog-entry .form-row-3 { grid-template-columns: 1fr; }
  .dog-fields { grid-template-columns: 1fr 1fr auto; }
  .dog-services-compact { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
}

@media (min-width: 601px) and (max-width: 960px) {
  .logo-area img { width: 48px; height: 48px; }
  .logo-area h1 { font-size: 1.2rem; }
  nav a { font-size: 0.78rem; padding: 0.28rem 0.45rem; }
  .pricing-grid > .price-card { flex: 0 1 calc(50% - 0.75rem); }
}

@media (min-width: 961px) {
  .pricing-grid > .price-card { max-width: 25%; }
}

/* ========== Click Bubble Particles ========== */
.click-bubble {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(circle at 30% 30%,
    rgba(255,255,255,0.8), rgba(201,177,217,0.3) 40%,
    rgba(168,208,230,0.2) 70%, transparent 100%);
  border: 1px solid rgba(201,177,217,0.3);
  animation: click-bubble-rise 1s ease-out forwards;
}

@keyframes click-bubble-rise {
  0% {
    opacity: 0.9;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(var(--dx), var(--dy)) scale(0.3);
  }
}
