/* ==========================================================================
   Bouncers R Us: Global + Navbar + Hero
   ========================================================================== */

:root {
  --blue: #38b6ff;
  --purple: #8c52ff;
  --red: #ff3131;
  --yellow: #fff200;
  --green: #2fe6a7;
  --ink: #241a45;
  --cream: #fff9f0;
  --white: #ffffff;

  --font-heading: 'Fredoka', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --container: 1200px;
  --header-height: 100px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 2100;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  border-radius: 0 0 12px 12px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.2rem;
  padding: 0.95rem 2rem;
  border-radius: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--purple);
  transform: translateY(-3px);
}

.accent-purple { color: var(--purple); }
.accent-yellow { color: var(--yellow); }
.accent-blue { color: var(--blue); }

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */

@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  [data-reveal="up"] { transform: translateY(32px); }
  [data-reveal="left"] { transform: translateX(-44px); }
  [data-reveal="right"] { transform: translateX(44px); }

  [data-reveal].is-visible {
    opacity: 1;
    transform: translate(0, 0);
  }

  [data-reveal-stagger] .reveal-item {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  [data-reveal-stagger].is-visible .reveal-item {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Navbar
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, var(--yellow) 0%, var(--red) 26%, var(--purple) 52%, var(--blue) 76%, var(--green) 100%);
  box-shadow: 0 4px 20px rgba(36, 26, 69, 0.25);
  overflow: visible;
}

.navbar {
  max-width: var(--container);
  height: var(--header-height);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  overflow: visible;
}

.logo {
  position: relative;
  z-index: 2;
}

.logo img {
  height: 156px;
  width: auto;
  position: relative;
  top: 26px;
  filter: drop-shadow(0 10px 14px rgba(36, 26, 69, 0.35));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--white);
  text-shadow: 0 2px 6px rgba(36, 26, 69, 0.35);
  position: relative;
  padding: 0.35rem 0;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 3px;
  border-radius: 2px;
  background: var(--yellow);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--yellow);
}

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

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(36, 26, 69, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-phone:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 20px rgba(36, 26, 69, 0.3);
}

/* Hamburger (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(36, 26, 69, 0.35);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

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

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  padding: 5rem 1.5rem 6rem;
}

.hero-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  opacity: 0.35;
}

.blob-yellow {
  width: 420px;
  height: 420px;
  background: var(--yellow);
  top: -160px;
  right: -120px;
  opacity: 0.3;
}

.blob-blue {
  width: 360px;
  height: 360px;
  background: var(--white);
  bottom: -200px;
  left: -140px;
  opacity: 0.12;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 3rem;
  align-items: center;
}

.hero-content,
.hero-gallery {
  min-width: 0;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: clamp(2.7rem, 4.6vw, 4rem);
  line-height: 1.1;
  text-shadow: 0 4px 18px rgba(36, 26, 69, 0.25);
  margin-bottom: 1.25rem;
}

.hero-content h1 .accent {
  color: var(--yellow);
}

.hero-subtext {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.25rem;
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Image collage */
.hero-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  padding: 1rem;
}

.gallery-img {
  width: 100%;
  min-width: 0;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  border: 6px solid var(--white);
  box-shadow: 0 14px 30px rgba(20, 10, 50, 0.28);
}

.img-1 { transform: rotate(-4deg); }
.img-2 { transform: rotate(3deg); margin-top: 1.5rem; }
.img-3 { transform: rotate(2deg); margin-top: -1.5rem; }
.img-4 { transform: rotate(-3deg); }

/* ==========================================================================
   About
   ========================================================================== */

.about {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 6rem 1.5rem;
}

.about-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.soft-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
}

.soft-blob-blue {
  width: 380px;
  height: 380px;
  background: var(--blue);
  opacity: 0.08;
  top: -140px;
  left: -120px;
}

.soft-blob-yellow {
  width: 320px;
  height: 320px;
  background: var(--yellow);
  opacity: 0.15;
  bottom: -140px;
  right: -100px;
}

.about-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translate(18px, 18px);
  background: var(--yellow);
  border-radius: 24px;
  z-index: 0;
}

.about-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  border: 6px solid var(--white);
  box-shadow: 0 16px 34px rgba(36, 26, 69, 0.18);
  transform: rotate(-1.5deg);
}

.about-content h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ink);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.about-content h2 .accent-purple {
  color: var(--purple);
}

.about-content p {
  color: #4a4066;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 38rem;
  margin-bottom: 1.1rem;
}

.about-content p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Treats & Extras
   ========================================================================== */

.treats {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple) 0%, var(--red) 100%);
  padding: 6rem 1.5rem;
}

.treats-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.treats-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
}

.treats-media {
  position: relative;
}

.treats-media::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translate(-18px, 18px);
  background: var(--cream);
  border-radius: 24px;
  z-index: 0;
}

.treats-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  border: 6px solid var(--white);
  box-shadow: 0 18px 36px rgba(20, 10, 40, 0.35);
  transform: rotate(2deg);
}

.treats-content h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  text-shadow: 0 4px 16px rgba(20, 10, 40, 0.3);
  margin-bottom: 2rem;
}

.treats-content h2 .accent-yellow {
  color: var(--yellow);
}

.treat-item {
  margin-bottom: 1.75rem;
}

.treat-item h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--yellow);
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.treat-item p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.02rem;
  line-height: 1.65;
}

.treats-content .btn {
  margin-top: 0.5rem;
}

/* ==========================================================================
   Features
   ========================================================================== */

.features {
  background: var(--cream);
  padding: 6rem 1.5rem;
}

.features-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: 0 14px 30px rgba(36, 26, 69, 0.1);
  border-top: 6px solid transparent;
}

.card-blue { border-top-color: var(--blue); }
.card-purple { border-top-color: var(--purple); }
.card-red { border-top-color: var(--red); }

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.card-blue .feature-icon { background: rgba(56, 182, 255, 0.12); color: var(--blue); }
.card-purple .feature-icon { background: rgba(140, 82, 255, 0.12); color: var(--purple); }
.card-red .feature-icon { background: rgba(255, 49, 49, 0.12); color: var(--red); }

.feature-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ink);
  font-size: 1.5rem;
  margin-bottom: 0.85rem;
}

.feature-card p {
  color: #4a4066;
  font-size: 1rem;
  line-height: 1.65;
}

/* ==========================================================================
   Cleanliness
   ========================================================================== */

.clean {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
  padding: 6rem 1.5rem;
}

.clean-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.clean-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.clean-content h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: clamp(2.3rem, 3.8vw, 3.2rem);
  line-height: 1.15;
  text-shadow: 0 4px 16px rgba(15, 60, 60, 0.3);
  margin-bottom: 1.25rem;
}

.clean-content h2 .accent-yellow {
  color: var(--yellow);
}

.clean-content p {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 38rem;
  margin-bottom: 1.1rem;
}

.clean-content p:last-child {
  margin-bottom: 0;
}

.clean-media {
  position: relative;
}

.clean-media::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translate(-18px, 18px);
  background: var(--cream);
  border-radius: 24px;
  z-index: 0;
}

.clean-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  border: 6px solid var(--white);
  box-shadow: 0 18px 36px rgba(15, 50, 45, 0.35);
  transform: rotate(2deg);
}

.clean-media .media-caption {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  color: var(--ink);
  font-size: 0.95rem;
  font-style: italic;
  text-align: center;
}

/* ==========================================================================
   Top-Quality Bounce Houses
   ========================================================================== */

.quality {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 6rem 1.5rem;
}

.quality-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.quality-media {
  position: relative;
}

.quality-media::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translate(18px, 18px);
  background: var(--blue);
  border-radius: 24px;
  z-index: 0;
}

.quality-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  border: 6px solid var(--white);
  box-shadow: 0 16px 34px rgba(36, 26, 69, 0.18);
  transform: rotate(-1.5deg);
}

.quality-content h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ink);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.quality-content h2 .accent-blue {
  color: var(--blue);
}

.quality-content p {
  color: #4a4066;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 38rem;
  margin-bottom: 1.1rem;
}

.quality-content .btn {
  margin-top: 0.75rem;
}

/* ==========================================================================
   Family Owned
   ========================================================================== */

.legacy {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
  padding: 6rem 1.5rem;
}

.legacy-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.legacy-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.legacy-content h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: clamp(2.3rem, 3.8vw, 3.2rem);
  line-height: 1.15;
  text-shadow: 0 4px 16px rgba(36, 26, 69, 0.3);
  margin-bottom: 1.25rem;
}

.legacy-content h2 .accent-yellow {
  color: var(--yellow);
}

.legacy-content p {
  color: var(--white);
  text-shadow: 0 2px 8px rgba(36, 26, 69, 0.35);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 38rem;
  margin-bottom: 1.75rem;
}

.legacy-media {
  position: relative;
}

.legacy-media::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translate(-18px, 18px);
  background: var(--cream);
  border-radius: 24px;
  z-index: 0;
}

.legacy-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  border: 6px solid var(--white);
  box-shadow: 0 18px 36px rgba(20, 10, 40, 0.35);
  transform: rotate(2deg);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--ink);
  padding: 4.5rem 1.5rem 0;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
  display: inline-block;
}

.footer-logo img {
  height: 70px;
  width: auto;
}

.footer-tagline {
  margin: 1.25rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 26rem;
}

.footer-phone {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--yellow);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.85rem;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover {
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 20px;
  height: 20px;
}

.footer-links h3,
.footer-legal h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.35rem;
}

.footer-links ul,
.footer-legal ul {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a,
.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.98rem;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--yellow);
}

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.75rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--yellow);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1180px) {
  .navbar {
    height: 84px;
  }

  .logo img {
    height: 92px;
    top: 14px;
  }

  .nav-menu {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.75rem 1.5rem 2rem;
    box-shadow: 0 12px 20px rgba(36, 26, 69, 0.15);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease;
  }

  .nav-menu.is-open {
    max-height: 400px;
    opacity: 1;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
  }

  .nav-links a {
    color: var(--ink);
    text-shadow: none;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--purple);
  }

  .nav-links a::after {
    background: var(--red);
  }

  .nav-phone {
    margin-top: 0.25rem;
    border: 2px solid var(--red);
  }

  .hamburger {
    display: flex;
  }

  .hamburger span {
    background: var(--ink);
    box-shadow: none;
  }
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-subtext {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-gallery {
    order: 2;
    max-width: 560px;
    margin: 2.5rem auto 0;
  }

  .about-inner,
  .treats-inner,
  .clean-inner,
  .quality-inner,
  .legacy-inner {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 3rem;
  }

  .about-media,
  .treats-media,
  .clean-media,
  .quality-media,
  .legacy-media {
    max-width: 440px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
    gap: 1.75rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 2.75rem;
  }

  .footer-socials {
    justify-content: flex-start;
  }

  .footer-links ul,
  .footer-legal ul {
    align-items: flex-start;
  }

  .footer-bottom {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 3rem 1.25rem 3.5rem;
  }

  .hero-gallery {
    margin-top: 1.25rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

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

  .hero-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    padding: 0;
  }

  .img-2,
  .img-3 {
    margin-top: 0;
  }

  .about,
  .treats,
  .features,
  .clean,
  .quality,
  .legacy {
    padding: 3.5rem 1.25rem;
  }

  .about-media::before,
  .treats-media::before,
  .clean-media::before,
  .quality-media::before,
  .legacy-media::before {
    transform: translate(10px, 10px);
  }

  .site-footer {
    padding: 3.5rem 1.25rem 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
}

/* ==========================================================================
   Page Banner
   ========================================================================== */

.page-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  padding: 7rem 1.5rem 4.5rem;
  text-align: center;
}

.page-banner-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.page-banner h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  line-height: 1.1;
  text-shadow: 0 4px 18px rgba(36, 26, 69, 0.25);
  margin-bottom: 0.85rem;
}

.page-banner p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
}

/* ==========================================================================
   Pricing Cards
   ========================================================================== */

.pricing {
  background: var(--cream);
  padding: 4.5rem 1.5rem 5.5rem;
}

.pricing-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
}

.price-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(36, 26, 69, 0.12);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(36, 26, 69, 0.18);
}

.price-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--cream);
  display: block;
}

.price-card-body {
  padding: 1.75rem 1.75rem 2.25rem;
  text-align: center;
}

.price-card-body h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--ink);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.price-card-price {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  background: var(--purple);
  padding: 0.4rem 1.5rem;
  border-radius: 15px;
  font-size: 2.5rem;
  line-height: 1.3;
  letter-spacing: 1px;
}

.price-card-body p {
  margin-top: 1.1rem;
  color: #4a4066;
  font-size: 1.05rem;
  line-height: 1.6;
}

.price-card-tiers {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.price-card-tiers span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--ink);
  font-size: 1.6rem;
}

.price-card-tiers b {
  color: var(--white);
  background: var(--purple);
  padding: 0.25rem 0.85rem;
  border-radius: 50px;
  font-size: 1.6rem;
}

/* ==========================================================================
   Fun Addons
   ========================================================================== */

.addons {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple) 0%, var(--red) 100%);
  padding: 6rem 1.5rem;
}

.addons-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.addons-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.addons-media {
  position: relative;
}

.addons-media::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translate(18px, 18px);
  background: var(--yellow);
  border-radius: 24px;
  z-index: 0;
}

.addons-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  border: 6px solid var(--white);
  box-shadow: 0 16px 34px rgba(36, 26, 69, 0.25);
  transform: rotate(-1.5deg);
}

.addons-content h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  text-shadow: 0 4px 16px rgba(36, 26, 69, 0.3);
  margin-bottom: 1.25rem;
}

.addons-content > p {
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 38rem;
}

.addons-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 1.5rem 0;
}

.addons-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--white);
  font-size: 1.05rem;
}

.addons-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

/* ==========================================================================
   Deliver
   ========================================================================== */

.deliver {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
  padding: 6rem 1.5rem;
}

.deliver-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.deliver-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.deliver-content h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: clamp(2.3rem, 3.8vw, 3.2rem);
  line-height: 1.15;
  text-shadow: 0 4px 16px rgba(36, 26, 69, 0.3);
  margin-bottom: 1.25rem;
}

.deliver-content p {
  color: var(--white);
  text-shadow: 0 2px 8px rgba(36, 26, 69, 0.35);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 38rem;
  margin-bottom: 1.75rem;
}

.deliver-zones {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0 0 1.75rem;
  padding: 0;
  max-width: 26rem;
}

.deliver-zones li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  padding: 0.75rem 1.1rem;
}

.deliver-zone-label {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
}

.deliver-zone-price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ink);
  background: var(--yellow);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.95rem;
  white-space: nowrap;
}

.deliver-media {
  position: relative;
}

.deliver-media::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translate(-18px, 18px);
  background: var(--cream);
  border-radius: 24px;
  z-index: 0;
}

.deliver-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  border: 6px solid var(--white);
  box-shadow: 0 18px 36px rgba(20, 10, 40, 0.35);
  transform: rotate(2deg);
}

/* ==========================================================================
   Image Lightbox
   ========================================================================== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  background: rgba(36, 26, 69, 0.85);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.lightbox-img {
  max-width: min(90vw, 900px);
  max-height: 85vh;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  background: var(--white);
  transform: scale(0.85);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
}

.lightbox.is-open .lightbox-img {
  transform: scale(1);
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.lightbox-close:hover {
  background: var(--yellow);
  transform: scale(1.08) rotate(90deg);
}

/* ==========================================================================
   Rentals Page Responsive
   ========================================================================== */

@media (max-width: 980px) {
  .addons-inner,
  .deliver-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .addons-media,
  .deliver-media {
    max-width: 440px;
    margin: 0 auto;
  }

  .addons-content > p,
  .deliver-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .addons-list,
  .deliver-zones {
    text-align: left;
    max-width: 26rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 560px) {
  .page-banner {
    padding: 3.5rem 1.25rem 3.5rem;
  }

  .pricing,
  .addons,
  .deliver {
    padding: 3.5rem 1.25rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
    gap: 2rem;
  }

  .addons-media::before,
  .deliver-media::before {
    transform: translate(10px, 10px);
  }
}

/* ==========================================================================
   Family Owned
   ========================================================================== */

.family-owned {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 6rem 1.5rem;
}

.family-owned-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.family-owned-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.family-owned-media {
  position: relative;
}

.family-owned-media::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translate(18px, 18px);
  background: var(--yellow);
  border-radius: 24px;
  z-index: 0;
}

.family-owned-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  border: 6px solid var(--white);
  box-shadow: 0 16px 34px rgba(36, 26, 69, 0.18);
  transform: rotate(-1.5deg);
}

.family-owned-content h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ink);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  margin-bottom: 1.25rem;
}

.family-owned-content > p {
  color: #4a4066;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 38rem;
  margin-bottom: 2rem;
}

.family-owned-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--purple);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  box-shadow: 0 10px 24px rgba(140, 82, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.family-owned-phone:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 30px rgba(140, 82, 255, 0.4);
}

/* ==========================================================================
   Order Request
   ========================================================================== */

.order-request {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  padding: 6rem 1.5rem;
}

.order-request-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.order-request-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: start;
}

.order-request-media {
  position: relative;
  align-self: center;
}

.order-request-media::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translate(18px, 18px);
  background: var(--yellow);
  border-radius: 24px;
  z-index: 0;
}

.order-request-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  border: 6px solid var(--white);
  box-shadow: 0 16px 34px rgba(36, 26, 69, 0.3);
  transform: rotate(-1.5deg);
}

.order-request-content h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  text-shadow: 0 4px 16px rgba(36, 26, 69, 0.3);
  margin-bottom: 1.1rem;
}

.order-request-content > p {
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 38rem;
  margin-bottom: 2rem;
}

/* ===== Contact Form ===== */

.contact-form {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  padding: 2.25rem;
  box-shadow: 0 20px 45px rgba(20, 10, 40, 0.3);
}

.form-botcheck {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-row-full {
  grid-column: 1 / -1;
}

.form-row label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.form-row .required {
  color: var(--red);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #9891ad;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--purple);
  background: var(--white);
}

.form-row textarea {
  resize: vertical;
  min-height: 110px;
}

.form-row select {
  cursor: pointer;
}

.form-submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 1.75rem;
  cursor: pointer;
}

.btn-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(36, 26, 69, 0.25);
  border-top-color: var(--ink);
  border-radius: 50%;
  margin-left: 0.65rem;
  animation: spin 0.7s linear infinite;
}

.contact-form.is-sending .form-submit {
  opacity: 0.85;
  cursor: not-allowed;
  pointer-events: none;
}

.contact-form.is-sending .btn-spinner {
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-error {
  display: none;
  margin-top: 1rem;
  color: var(--red);
  font-size: 0.95rem;
  text-align: center;
}

.form-error.is-visible {
  display: block;
}

.form-error a {
  text-decoration: underline;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1.5rem 0;
}

.form-success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
}

.form-success h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
}

.form-success p {
  color: #4a4066;
  font-size: 1rem;
}

.contact-form.is-sent .form-fields,
.contact-form.is-sent .form-submit {
  display: none;
}

.contact-form.is-sent .form-success {
  display: flex;
  animation: popIn 0.5s ease;
}

@keyframes popIn {
  0% { opacity: 0; transform: scale(0.85) translateY(6px); }
  60% { opacity: 1; transform: scale(1.03); }
  100% { opacity: 1; transform: scale(1); }
}

/* ==========================================================================
   Rental Agreement
   ========================================================================== */

.agreement {
  background: var(--cream);
  padding: 6rem 1.5rem;
}

.agreement-inner {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.agreement-inner h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ink);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  margin-bottom: 2rem;
}

.agreement-card {
  background: var(--white);
  border-radius: 20px;
  border-left: 6px solid var(--blue);
  padding: 2.25rem 2.5rem;
  box-shadow: 0 12px 28px rgba(36, 26, 69, 0.1);
  text-align: left;
}

.agreement-card p {
  color: #4a4066;
  font-size: 0.98rem;
  line-height: 1.8;
}

/* ==========================================================================
   Legal Pages (Accessibility, Privacy Policy)
   ========================================================================== */

.legal {
  background: var(--cream);
  padding: 5rem 1.5rem 6rem;
}

.legal-inner {
  max-width: 860px;
  margin: 0 auto;
}

.legal-updated {
  text-align: center;
  color: #6b6285;
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 2.5rem;
}

.legal-card {
  background: var(--white);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 12px 28px rgba(36, 26, 69, 0.1);
}

.legal-section + .legal-section {
  margin-top: 2.25rem;
  padding-top: 2.25rem;
  border-top: 1px solid #ece5f7;
}

.legal-section h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--purple);
  margin-bottom: 0.9rem;
}

.legal-section p {
  color: #4a4066;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.legal-section ul {
  margin: 0 0 1rem;
  padding-left: 1.4rem;
}

.legal-section ul li {
  list-style: disc;
  color: #4a4066;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 0.4rem;
}

.legal-section p:last-child,
.legal-section ul:last-child {
  margin-bottom: 0;
}

.legal-contact a {
  color: var(--purple);
  font-weight: 600;
  text-decoration: underline;
}

/* ==========================================================================
   Contact Page Responsive
   ========================================================================== */

@media (max-width: 980px) {
  .family-owned-inner,
  .order-request-inner {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 3rem;
  }

  .family-owned-media,
  .order-request-media {
    max-width: 380px;
    margin: 0 auto;
  }

  .order-request-content > p {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 560px) {
  .family-owned,
  .order-request,
  .agreement {
    padding: 3.5rem 1.25rem;
  }

  .family-owned-media::before,
  .order-request-media::before {
    transform: translate(10px, 10px);
  }

  .contact-form {
    padding: 1.5rem;
  }

  .form-fields {
    grid-template-columns: 1fr;
  }

  .agreement-card {
    padding: 1.5rem 1.5rem;
  }

  .family-owned-phone {
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
  }

  .legal {
    padding: 3.5rem 1.25rem;
  }

  .legal-card {
    padding: 1.75rem;
  }
}
