/* PuppyWash — playful dog grooming landing page */

:root {
  --pink: #ff5fa8;
  --pink-dark: #e8409a;
  --pink-light: #ffd9ec;
  --bubblegum: #ffe8f5;
  --teal: #26c6da;
  --ink: #2b1f2c;
  --ink-soft: #6b5b6c;
  --cream: #fffaf6;
  --white: #ffffff;
  --shadow: 0 20px 40px -12px rgba(232, 64, 154, 0.35);
  --radius: 28px;
  --radius-sm: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Fredoka', sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

h1, h2, h3, .brand-name {
  font-family: 'Baloo 2', 'Fredoka', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 0.5em;
}

p { line-height: 1.6; color: var(--ink-soft); }

a { color: inherit; text-decoration: none; }

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

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-white {
  background: var(--white);
  color: var(--pink-dark);
  box-shadow: 0 16px 32px -10px rgba(0,0,0,0.25);
}
.btn-ghost {
  background: var(--white);
  color: var(--pink-dark);
  border: 2px solid var(--pink-light);
}
.btn-lg { padding: 18px 32px; font-size: 1.1rem; }
.pulse { animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 95, 168, 0.55); }
  50% { box-shadow: 0 0 0 14px rgba(255, 95, 168, 0); }
}

/* Floating call button (mobile) */
.call-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 60;
  display: none;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white);
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow);
}

/* Background floating bubbles */
.bubble-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.floaty {
  position: absolute;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(255,143,196,0.15) 70%);
  border: 1px solid rgba(255,255,255,0.6);
  animation: rise linear infinite;
  opacity: 0.55;
}
.b1 { width: 40px; height: 40px; left: 6%; animation-duration: 14s; animation-delay: 0s; }
.b2 { width: 70px; height: 70px; left: 22%; animation-duration: 19s; animation-delay: 2s; }
.b3 { width: 30px; height: 30px; left: 48%; animation-duration: 12s; animation-delay: 4s; }
.b4 { width: 55px; height: 55px; left: 72%; animation-duration: 17s; animation-delay: 1s; }
.b5 { width: 25px; height: 25px; left: 88%; animation-duration: 11s; animation-delay: 3s; }
@keyframes rise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.55; }
  100% { transform: translateY(-115vh) translateX(30px); opacity: 0; }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 246, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 95, 168, 0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { width: 44px; height: 44px; object-fit: cover; border-radius: 50%; box-shadow: 0 6px 16px rgba(232,64,154,0.35); }
.brand-logo.small { width: 34px; height: 34px; }
.brand-name { font-size: 1.4rem; color: var(--pink-dark); margin: 0; }
.brand-name em { font-style: normal; color: var(--ink); }
.site-nav { display: none; gap: 28px; font-weight: 600; }
.site-nav a { color: var(--ink-soft); }
.site-nav a:hover { color: var(--pink-dark); }
.header-cta { display: none; }

@media (min-width: 860px) {
  .site-nav { display: flex; }
  .header-cta { display: inline-flex; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,95,168,0.15) 0%, rgba(43,31,44,0.15) 45%, rgba(43,31,44,0.75) 100%);
}
.hero-logo-badge {
  position: absolute;
  top: 90px;
  right: 6%;
  width: 150px;
  height: 150px;
  z-index: 2;
  animation: bob 4s ease-in-out infinite;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.35));
}
.hero-logo-badge img { width: 100%; height: 100%; object-fit: contain; }
@keyframes bob { 0%, 100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-14px) rotate(3deg); } }

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding-top: 60px;
  padding-bottom: 60px;
  max-width: 720px;
}
.eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 16px;
  backdrop-filter: blur(4px);
}
.eyebrow.center { color: var(--pink-dark); background: var(--pink-light); border: none; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 3.8rem); text-shadow: 0 4px 20px rgba(0,0,0,0.25); }
.hero-sub { color: rgba(255,255,255,0.92); font-size: 1.15rem; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 26px 0; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px 22px; font-weight: 600; font-size: 0.92rem; color: rgba(255,255,255,0.9); }

/* Marquee */
.marquee {
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  padding: 12px 0;
  white-space: nowrap;
}
.marquee-track { display: inline-flex; animation: scroll 26s linear infinite; }
.marquee-track span { font-family: 'Baloo 2', sans-serif; font-weight: 700; letter-spacing: 0.5px; padding-right: 0; color: var(--pink); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Sections */
.section { padding: 90px 0; position: relative; z-index: 1; }
.section h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--ink); max-width: 700px; margin-left: auto; margin-right: auto; }
.section-sub { max-width: 560px; margin: 0 auto 40px; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin-top: 40px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: 0 14px 34px -18px rgba(43,31,44,0.25);
  border: 2px solid transparent;
  transition: transform .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--pink-light); }
.service-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  background: var(--bubblegum);
  border-radius: 50%;
  margin-bottom: 16px;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.service-card p { font-size: 0.96rem; margin: 0; }

/* Gallery */
.gallery { background: var(--bubblegum); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
  margin-top: 40px;
}
.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 14px 30px -16px rgba(43,31,44,0.35);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(43,31,44,0.85), transparent);
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 26px 16px 14px;
}
@media (max-width: 620px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item.tall { grid-row: span 1; }
}

/* Why us */
.why-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}
.why-list { list-style: none; margin: 24px 0 30px; padding: 0; display: grid; gap: 16px; }
.why-list li {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: 0 10px 24px -16px rgba(43,31,44,0.25);
}
.why-list strong { color: var(--pink-dark); }
.why-media { position: relative; }
.why-media img { border-radius: var(--radius); box-shadow: 0 24px 50px -20px rgba(43,31,44,0.4); position: relative; z-index: 1; }
.why-blob {
  position: absolute;
  top: -30px; right: -30px;
  width: 70%; height: 70%;
  background: var(--pink-light);
  border-radius: 50%;
  z-index: 0;
}
@media (min-width: 900px) {
  .why-inner { grid-template-columns: 1.05fr 0.95fr; }
}

/* Reviews */
.reviews-grid { margin-top: 40px; }
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  margin: 0;
  box-shadow: 0 14px 34px -18px rgba(43,31,44,0.25);
  border-top: 4px solid var(--pink);
}
.review-card p { color: var(--ink); font-size: 1.02rem; font-style: italic; }
.review-card cite { display: block; margin-top: 14px; font-weight: 700; font-style: normal; color: var(--pink-dark); }

/* CTA banner */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: var(--white);
  overflow: hidden;
}
.cta-inner { text-align: center; padding: 90px 24px; position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.6rem); }
.cta-banner p { color: rgba(255,255,255,0.9); max-width: 480px; margin: 0 auto 28px; }
.cta-bubble-deco {
  position: absolute;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  top: -220px; left: -120px;
}

/* Footer */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.75); padding-top: 60px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; flex-direction: column; gap: 10px; max-width: 320px; }
.footer-brand .brand-name { color: var(--pink); font-size: 1.3rem; }
.footer-col h4 { color: var(--white); font-family: 'Baloo 2', sans-serif; margin-bottom: 12px; }
.footer-col p { margin: 6px 0; }
.footer-col a:hover { color: var(--pink); }
.footer-bottom { padding: 20px 24px; text-align: center; font-size: 0.85rem; }
@media (min-width: 760px) {
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; }
}

/* Responsive nav / fab */
@media (max-width: 859px) {
  .call-fab { display: inline-flex; }
  .hero-logo-badge { width: 100px; height: 100px; top: 70px; right: 5%; }
}
