/* =========================================
   STUDIO PET GROOMING — Landing Page Styles
   V3: Real pricing, add-ons, van slideshow, Yelp fix, gallery/reviews compact
   ========================================= */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #DF7E3A;
  --pink: #458DA1;
  --cyan: #458DA1;
  --gray-light: #F5F7FA;
  --gray: #E2E6EC;
  --dark: #273149;
  --dark-soft: #344163;
  --white: #FFFFFF;
  --yelp-red: #D32323;
  --gradient: var(--orange);
  --gradient-soft: rgba(223,126,58,0.08);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- UTILITIES ---------- */
.text-gradient {
  color: var(--orange);
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--gradient-soft);
  color: var(--orange);
  margin-bottom: 16px;
}

.section-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--gradient-soft);
  color: var(--orange);
  margin-bottom: 12px;
}

.section-badge--light {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 48px;
}

/* ---------- SVG ICON HELPERS ---------- */
.btn-icon {
  flex-shrink: 0;
}

.trust-icon {
  flex-shrink: 0;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(223,126,58,0.3);
}
.btn--primary:hover {
  transform: translateY(-2px);
  background: #c86e2e;
  box-shadow: 0 6px 24px rgba(223,126,58,0.4);
}

.btn--secondary {
  background: var(--white);
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn--secondary:hover {
  background: var(--orange);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--gray);
}
.btn--outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn--white {
  background: var(--white);
  color: var(--orange);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn--full {
  width: 100%;
}

/* ==============================
   TOP BAR
   ============================== */
.top-bar {
  background: var(--gradient);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.9rem;
  position: relative;
  z-index: 1001;
  text-align: center;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.top-bar__inner p {
  margin: 0;
}

.top-bar__link {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.top-bar__link:hover {
  opacity: 0.9;
}

.top-bar__close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0 8px;
  line-height: 1;
  opacity: 0.8;
  position: absolute;
  right: 16px;
}
.top-bar__close:hover {
  opacity: 1;
}

.top-bar.hidden {
  display: none;
}

/* ==============================
   HEADER
   ============================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header__logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.header__logo-text {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--orange);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-soft);
  position: relative;
}
.header__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width var(--transition);
}
.header__link:hover {
  color: var(--orange);
}
.header__link:hover::after {
  width: 100%;
}

.header__cta {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.header__hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: all var(--transition);
}
.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.mobile-nav.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}
.mobile-nav__link {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
}
.mobile-nav__link:hover {
  color: var(--orange);
}
.mobile-nav__cta {
  margin-top: 16px;
}

/* ==============================
   HERO
   ============================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  background: var(--gray-light);
}

.hero__splash {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
}
.hero__splash--1 {
  width: 400px;
  height: 400px;
  background: var(--cyan);
  top: -100px;
  right: -100px;
}
.hero__splash--2 {
  width: 300px;
  height: 300px;
  background: var(--pink);
  bottom: -80px;
  left: -80px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 560px;
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero__trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--white);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  color: #555;
}

.trust-badge__star {
  color: var(--orange);
  font-size: 0.9rem;
}

.hero__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hero Slideshow */
.hero__slideshow {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.hero__slideshow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  padding: 3px;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero__slide.active {
  opacity: 1;
}

/* ==============================
   STATS BAR
   ============================== */
.stats {
  background: var(--dark);
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0.08;
}

.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat__number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  display: inline;
}

.stat__plus {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
}

.stat__stars {
  color: var(--orange);
  font-size: 1.2rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 2px;
}

.stat__label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  font-weight: 500;
}

/* ==============================
   SERVICES
   ============================== */
.services {
  padding: 80px 0;
  text-align: center;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px 32px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  position: relative;
  border: 2px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card--featured {
  border-color: var(--orange);
  background: linear-gradient(180deg, rgba(255,107,53,0.03) 0%, var(--white) 100%);
}

.service-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.service-card__icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--orange);
}

.service-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Feature list for service plans */
.service-card__features {
  list-style: none;
  text-align: left;
  margin-bottom: 20px;
  padding: 0;
}

.service-card__features li {
  font-size: 0.88rem;
  color: #555;
  padding: 5px 0;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.service-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gradient-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23FF6B35' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.service-card__price {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #555;
}
.service-card__price strong {
  font-size: 1.5rem;
  color: var(--orange);
  font-weight: 800;
}

.services__note {
  font-size: 0.8rem;
  color: #999;
  margin-top: 8px;
}

/* ==============================
   ADD-ON SERVICES
   ============================== */
.addons {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--gray);
}

.addons__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}

.addons__subtitle {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 28px;
}

.addons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.addon-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--gray-light);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  border: 1px solid transparent;
}
.addon-card:hover {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.addon-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.addon-card__name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
}

.addon-card__time {
  font-size: 0.75rem;
  color: #999;
}

.addon-card__price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
}

/* ==============================
   OFFER BANNER
   ============================== */
.offer {
  background: var(--dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.offer__splash {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.1;
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.offer__inner {
  position: relative;
  z-index: 1;
}

.offer__badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255,255,255,0.1);
  color: var(--cyan);
  margin-bottom: 20px;
}

.offer__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.offer__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 32px;
}

.offer__urgency {
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 16px;
}

/* ==============================
   WHY US
   ============================== */
.about {
  padding: 80px 0;
  text-align: center;
  background: var(--gray-light);
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.about-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: left;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.about-card__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--orange);
}

.about-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-card__desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* ==============================
   BEFORE & AFTER GALLERY — CAROUSEL (COMPACT)
   ============================== */
.gallery {
  padding: 80px 0;
  text-align: center;
}

.gallery__carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.gallery__carousel {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.gallery__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gray);
  background: var(--white);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 10;
  box-shadow: var(--shadow-md);
  color: var(--dark);
}
.gallery__btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--white);
}
.gallery__btn--prev {
  left: 8px;
}
.gallery__btn--next {
  right: 8px;
}

.gallery__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.gallery__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray);
  cursor: pointer;
  transition: all var(--transition);
}
.gallery__dot.active {
  background: var(--gradient);
  width: 28px;
  border-radius: 10px;
}

.ba-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
  min-width: calc(25% - 12px);
  max-width: calc(25% - 12px);
  flex-shrink: 0;
}
.ba-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.ba-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.ba-card__before,
.ba-card__after {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-height: 180px;
}

.ba-card__before img,
.ba-card__after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.ba-card:hover .ba-card__before img,
.ba-card:hover .ba-card__after img {
  transform: scale(1.05);
}

.ba-label {
  position: absolute;
  bottom: 6px;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ba-label--before {
  left: 4px;
  background: rgba(0,0,0,0.65);
  color: var(--white);
}

.ba-label--after {
  right: 4px;
  background: var(--gradient);
  color: var(--white);
}

.gallery__cta {
  margin-top: 16px;
}
.gallery__cta p {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #555;
}

/* ==============================
   REVIEWS — YELP INTEGRATED (COMPACT)
   ============================== */
.reviews {
  padding: 80px 0 60px;
  text-align: center;
  background: var(--gray-light);
  overflow: hidden;
}

.reviews__yelp-badge {
  margin-bottom: 32px;
}

.yelp-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--white);
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
}
.yelp-badge:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.yelp-logo-img {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 6px;
}

.yelp-badge__stars {
  color: var(--yelp-red);
  font-size: 1rem;
  letter-spacing: 1px;
}

.yelp-badge__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}

.yelp-badge__text {
  font-size: 0.8rem;
  color: #666;
}

/* ---------- Testimonial Slider ---------- */
.reviews__slider {
  position: relative;
  max-width: 680px;
  margin: 0 auto 32px;
  min-height: 220px;
}

.reviews__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--orange);
}

.reviews__slide.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.reviews__quote-icon {
  margin-bottom: 16px;
  opacity: 0.6;
}

.reviews__text {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
  max-width: 560px;
}

.reviews__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.reviews__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
}

.reviews__author span {
  font-size: 0.78rem;
  color: #999;
}

/* ---------- Controls (arrows + dots) ---------- */
.reviews__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.reviews__nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gray);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--dark);
}
.reviews__nav-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: var(--shadow-sm);
}

.reviews__dots {
  display: flex;
  gap: 8px;
}

.reviews__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  padding: 0;
}
.reviews__dot.active {
  background: var(--orange);
  width: 28px;
  border-radius: 10px;
}

/* ==============================
   HOW IT WORKS
   ============================== */
.how-it-works {
  padding: 80px 0;
  text-align: center;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
}

.step {
  flex: 1;
  max-width: 280px;
  padding: 0 20px;
}

.step__number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--orange);
}

.step__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step__desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

.step__desc a {
  color: var(--orange);
  font-weight: 600;
}
.step__desc a:hover {
  text-decoration: underline;
}

.step__connector {
  width: 60px;
  height: 2px;
  background: var(--gray);
  margin-top: 60px;
  flex-shrink: 0;
  position: relative;
}
.step__connector::after {
  content: '\2192';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--orange);
  font-size: 1rem;
  background: var(--white);
  padding: 0 4px;
}

/* ==============================
   FAQ
   ============================== */
.faq {
  padding: 80px 0;
  background: var(--gray-light);
  text-align: center;
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-item__question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: color var(--transition);
}
.faq-item__question:hover {
  color: var(--orange);
}

.faq-item__icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--orange);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
  padding: 0 24px;
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-item__answer p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
}

.faq-item__answer a {
  color: var(--orange);
  font-weight: 600;
}
.faq-item__answer a:hover {
  text-decoration: underline;
}

/* ==============================
   BOOKING
   ============================== */
.booking {
  padding: 80px 0;
}

.booking__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.booking__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.booking__desc {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 32px;
}

.booking__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking__detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.booking__detail-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.booking__detail strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.booking__detail p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

.booking__detail a {
  color: var(--orange);
  font-weight: 500;
}
.booking__detail a:hover {
  text-decoration: underline;
}

/* Booking Form */
.booking__form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.06);
}

.booking-form__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.booking-form__badge {
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark-soft);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  transition: border-color var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.booking-form__note {
  text-align: center;
  font-size: 0.8rem;
  color: #999;
  margin-top: 12px;
}

/* ==============================
   FOOTER
   ============================== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer__logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.footer__logo-text {
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.footer__tagline {
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer__links h4,
.footer__contact h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer__links a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer__links a:hover {
  color: var(--orange);
}

.footer__contact p {
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.footer__contact a {
  color: var(--orange);
}
.footer__contact a:hover {
  text-decoration: underline;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
}

/* ==============================
   FLOATING CTAs
   ============================== */
.floating-ctas {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  pointer-events: none;
}
.floating-ctas.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  transition: all var(--transition);
  text-align: center;
  color: var(--white);
}

.floating-cta--book {
  background: var(--gradient);
  box-shadow: 0 4px 24px rgba(255,107,53,0.4);
}
.floating-cta--book:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255,107,53,0.5);
}

.floating-cta--phone {
  background: var(--dark);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.floating-cta--phone:hover {
  transform: translateY(-2px);
  background: var(--dark-soft);
}

/* ==============================
   ANIMATIONS
   ============================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delay for grid items */
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.15s; }
.fade-in:nth-child(6) { transition-delay: 0.25s; }

/* ==============================
   RESPONSIVE
   ============================== */

/* Tablet */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__content {
    max-width: 100%;
  }
  .hero__ctas {
    justify-content: center;
  }
  .hero__trust {
    justify-content: center;
  }
  .hero__slideshow {
    max-width: 350px;
    margin: 0 auto;
  }

  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .addons__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking__inner {
    grid-template-columns: 1fr;
  }

  .ba-card {
    min-width: calc(50% - 8px);
    max-width: calc(50% - 8px);
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .header__nav,
  .header__cta {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .hero {
    padding: 48px 0 40px;
  }

  .hero__inner {
    gap: 32px;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__slideshow {
    max-width: 280px;
  }

  .stats__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat__number {
    font-size: 1.4rem;
  }

  .services__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .addons__grid {
    grid-template-columns: 1fr;
  }

  .about__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .ba-card {
    min-width: 100%;
    max-width: 100%;
  }

  .reviews__slide {
    padding: 24px 20px;
  }

  .reviews__text {
    font-size: 0.95rem;
  }

  .reviews__nav-btn {
    width: 36px;
    height: 36px;
  }

  .steps {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .step__connector {
    width: 2px;
    height: 40px;
    margin: 0;
  }
  .step__connector::after {
    content: '\2193';
  }

  .booking__inner {
    gap: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .floating-ctas {
    bottom: 16px;
    right: 16px;
    flex-direction: row;
  }

  .floating-cta {
    font-size: 0.8rem;
    padding: 10px 16px;
  }

  .top-bar {
    font-size: 0.8rem;
    padding: 8px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .services,
  .about,
  .gallery,
  .reviews,
  .how-it-works,
  .faq,
  .booking {
    padding: 56px 0;
  }

  .gallery__btn {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .reviews__btn {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .yelp-badge {
    flex-direction: column;
    text-align: center;
    padding: 12px 20px;
  }

  .yelp-badge__info {
    align-items: center;
  }

  .yelp-logo-img {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero__trust {
    flex-direction: column;
    align-items: center;
  }

  .booking__form-wrapper {
    padding: 24px 20px;
  }

  .floating-ctas {
    flex-direction: column;
    align-items: flex-end;
  }
}
