/* =========================================================
   Luchy's Dog Grooming — Stylesheet
   Brand colors: white + #d8a1b6 (blush pink)
   ========================================================= */

:root {
  --pink: #d8a1b6;
  --pink-dark: #b97b93;
  --pink-darker: #9c5f75;
  --pink-light: #f3dce4;
  --pink-pale: #fdf5f8;
  --white: #ffffff;
  --text: #3a2c33;
  --text-muted: #7d6b73;
  --dark: #2c2126;
  --border: #f0d9e1;

  --font-head: 'Baloo 2', cursive;
  --font-body: 'Poppins', sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 14px rgba(158, 90, 116, 0.10);
  --shadow-md: 0 10px 30px rgba(158, 90, 116, 0.16);
  --shadow-lg: 0 20px 50px rgba(158, 90, 116, 0.22);
  --header-h: 84px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

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

section { padding: 90px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink-darker);
  background: var(--pink-light);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 14px; }
.section-head p { color: var(--text-muted); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--pink-darker);
  border-color: var(--pink);
}
.btn-outline:hover { background: var(--pink); color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- Announcement bar ---------- */
#announcement-bar {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  font-size: 0.85rem;
  padding: 9px 16px;
}
#announcement-bar a { color: var(--pink); font-weight: 600; text-decoration: underline; margin-left: 6px; }

/* ---------- Header ---------- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}
#site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 54px; height: 54px; object-fit: contain; }
.logo-text { font-family: var(--font-head); font-size: 1.15rem; color: var(--dark); }
.logo-text strong { color: var(--pink-darker); }
.logo-text.light { color: var(--white); }
.logo-text.light strong { color: var(--pink); }

#main-nav ul { display: flex; gap: 30px; }
.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--pink);
  transition: width 0.25s ease;
}
.nav-link:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone { display: none; align-items: center; gap: 6px; font-weight: 600; font-size: 0.9rem; color: var(--dark); }

#nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
}
#nav-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
#nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#nav-toggle.open span:nth-child(2) { opacity: 0; }
#nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 60px 0 90px; background: linear-gradient(180deg, var(--pink-pale) 0%, var(--white) 100%); overflow: hidden; }
.hero-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 88% 8%, rgba(216,161,182,0.35) 0%, rgba(216,161,182,0) 42%),
    radial-gradient(circle at 4% 78%, rgba(216,161,182,0.3) 0%, rgba(216,161,182,0) 38%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Ctext x='16' y='30' font-size='24' fill='%23d8a1b6' opacity='0.16'%3E%F0%9F%90%BE%3C/text%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat, repeat;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); margin-bottom: 20px; }
.hero-sub { color: var(--text-muted); font-size: 1.08rem; max-width: 520px; margin-bottom: 30px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-weight: 500; font-size: 0.9rem; color: var(--text-muted); }
.hero-trust-item i { color: var(--pink); }

.hero-copy, .hero-media { min-width: 0; }
.hero-media { position: relative; }
.hero-media-frame { position: relative; }
.hero-media-frame::before {
  content: '';
  position: absolute;
  inset: -16px;
  background: var(--pink-light);
  border-radius: var(--radius-lg);
  transform: rotate(-4deg);
  z-index: 0;
}
.hero-media-frame img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  display: block;
}
.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark);
}
.hero-badge i { color: var(--pink); font-size: 1.5rem; }

/* ---------- Section wave divider ---------- */
.section-wave { display: block; line-height: 0; margin-bottom: -2px; position: relative; z-index: 1; }
.section-wave svg { width: 100%; height: 44px; display: block; }

/* ---------- Stats bar ---------- */
.stats-bar { background: var(--pink); padding: 40px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}
.stat { display: flex; flex-direction: column; gap: 4px; color: var(--white); }
.stat-num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; }
.stat-label { font-size: 0.85rem; opacity: 0.9; }

/* ---------- How it works ---------- */
.how-it-works { background: var(--white); }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.step-card {
  position: relative;
  background: var(--pink-pale);
  border-radius: var(--radius-md);
  padding: 40px 28px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-num {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--pink-light);
}
.step-icon { font-size: 2.2rem; color: var(--pink); margin-bottom: 18px; }
.step-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.step-card p { color: var(--text-muted); font-size: 0.95rem; }
.how-cta { text-align: center; margin-top: 48px; }

/* ---------- Services ---------- */
.services { background: var(--pink-pale); }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card.featured { border: 2px solid var(--pink); position: relative; }
.service-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px; left: 32px;
  background: var(--pink);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
}
.service-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--pink-light);
  color: var(--pink-darker);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; }
.service-list { margin-bottom: 26px; flex-grow: 1; }
.service-list li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; margin-bottom: 10px; color: var(--text); }
.service-list i { color: var(--pink); }
.service-card .btn { align-self: flex-start; }

/* ---------- Pricing ---------- */
.pricing { background: var(--white); }
.pricing-table {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}
.pricing-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row > div { font-size: 0.95rem; }
.pricing-row > div::before { content: attr(data-label); display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--pink-darker); font-weight: 700; margin-bottom: 2px; }
.pricing-head { background: var(--pink); color: var(--white); font-weight: 700; }
.pricing-head > div::before { content: none; }
.pricing-row:nth-child(even):not(.pricing-head) { background: var(--pink-pale); }
.pricing-note { text-align: center; color: var(--text-muted); font-size: 0.9rem; margin-top: 24px; }
.pricing-note i { color: var(--pink); margin-right: 6px; }

.pricing-extras {
  max-width: 860px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.pricing-extra-card {
  background: var(--pink-pale);
  border-radius: var(--radius-md);
  padding: 26px 28px;
}
.pricing-extra-card h4 { display: flex; align-items: center; gap: 10px; font-size: 1.05rem; margin-bottom: 10px; }
.pricing-extra-card h4 i { color: var(--pink); }
.pricing-extra-card p { color: var(--text-muted); font-size: 0.9rem; }
.pricing-extra-price { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--pink-darker); }
.pricing-addons-list li { display: flex; justify-content: space-between; font-size: 0.9rem; padding: 7px 0; border-bottom: 1px dashed var(--border); }
.pricing-addons-list li:last-child { border-bottom: none; }
.pricing-addons-list li span:last-child { font-weight: 700; color: var(--pink-darker); }

/* ---------- About ---------- */
.about { background: var(--pink-pale); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}
.about-copy, .about-media { min-width: 0; }
.about-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about-copy p { color: var(--text-muted); margin-bottom: 16px; }
.about-copy h2 { margin-bottom: 18px; }
.about-points { margin: 24px 0; display: flex; flex-direction: column; gap: 14px; }
.about-point { display: flex; align-items: center; gap: 12px; font-weight: 500; font-size: 0.95rem; }
.about-point i { color: var(--pink); font-size: 1.1rem; width: 24px; text-align: center; }

/* ---------- Gallery ---------- */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.gallery-item {
  border: none;
  padding: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.gallery-item:hover img { transform: scale(1.07); }

/* ---------- Before / After slider ---------- */
.before-after { margin-top: 64px; text-align: center; }
.before-after h3 { font-size: 1.3rem; margin-bottom: 24px; }
.ba-slider {
  position: relative;
  max-width: 560px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  user-select: none;
  cursor: ew-resize;
}
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-before { clip-path: inset(0 50% 0 0); }
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--white);
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}
.ba-handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  color: var(--pink-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  font-size: 1rem;
}

.lightbox {
  position: fixed; inset: 0;
  background: rgba(44, 33, 38, 0.92);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md); }
#lightbox-close {
  position: absolute;
  top: 24px; right: 28px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--pink-pale); }
.testimonial-carousel { max-width: 700px; margin: 0 auto; }
.testimonial-track { position: relative; min-height: 260px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: none;
}
.testimonial-card.active { display: block; animation: fadeIn 0.4s ease; }
.stars { color: var(--pink); margin-bottom: 16px; font-size: 1.1rem; }
.testimonial-card p { font-size: 1.05rem; font-style: italic; color: var(--text); margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 12px; }
.testimonial-author div { text-align: left; }
.testimonial-author strong { display: block; font-size: 0.95rem; }
.testimonial-author span { font-size: 0.82rem; color: var(--text-muted); }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 28px; }
.carousel-controls button {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid var(--pink);
  background: var(--white);
  color: var(--pink-darker);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.carousel-controls button:hover { background: var(--pink); color: var(--white); }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.carousel-dots span.active { background: var(--pink); transform: scale(1.2); }

@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Service Area ---------- */
.service-area { background: var(--white); }
.service-area-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}
.service-area-copy, .service-area-media { min-width: 0; }
.service-area-copy p { color: var(--text-muted); margin-bottom: 24px; }
.zip-checker { display: flex; gap: 10px; margin-bottom: 14px; }
.zip-checker input {
  flex: 1;
  min-width: 0;
  padding: 13px 18px;
  border-radius: 50px;
  border: 2px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.zip-checker .btn { flex-shrink: 0; }
.zip-checker input:focus { outline: none; border-color: var(--pink); }
.zip-result { font-weight: 600; font-size: 0.92rem; min-height: 24px; margin-bottom: 20px; }
.zip-result.success { color: #4c8c5a; }
.zip-result.fail { color: #c0524a; }
.area-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.area-list li { display: flex; align-items: center; gap: 8px; font-size: 0.92rem; color: var(--text); }
.area-list i { color: var(--pink); }
.service-area-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

/* ---------- Booking CTA ---------- */
.booking-cta { background: var(--dark); text-align: center; }
.booking-cta-inner { max-width: 640px; margin: 0 auto; }
.eyebrow-onlight { background: rgba(255,255,255,0.12); color: var(--white); }
.booking-cta-inner h2 { color: var(--white); margin-bottom: 16px; }
.booking-cta-inner > p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 36px; }
.booking-cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 28px; }
.btn-outline-light {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 16px 34px; border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn-outline-light:hover { background: var(--white); color: var(--dark); transform: translateY(-2px); }
.booking-cta-note { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.booking-cta-note a { color: var(--pink); font-weight: 600; text-decoration: underline; }

/* ---------- FAQ ---------- */
.faq { background: var(--pink-pale); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 26px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  cursor: pointer;
}
.faq-question i { color: var(--pink); transition: transform 0.25s ease; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding: 0 26px 22px; color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Final CTA ---------- */
.final-cta { background: var(--pink); text-align: center; }
.final-cta-inner h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; }
.final-cta-inner p { color: var(--white); opacity: 0.9; margin-bottom: 30px; }
.final-cta .btn-primary { background: var(--white); color: var(--pink-darker); }
.final-cta .btn-primary:hover { background: var(--dark); color: var(--white); }

/* ---------- Footer ---------- */
footer { background: var(--dark); color: rgba(255,255,255,0.85); padding-top: 70px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { margin: 16px 0 20px; font-size: 0.9rem; opacity: 0.75; max-width: 320px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.social-links a:hover { background: var(--pink); }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li { font-size: 0.9rem; opacity: 0.8; display: flex; align-items: center; gap: 8px; }
.footer-col ul li i { color: var(--pink); width: 16px; }
.footer-col p { font-size: 0.9rem; opacity: 0.8; margin-bottom: 20px; line-height: 1.8; }
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  padding: 24px 0;
  font-size: 0.82rem;
  opacity: 0.65;
  text-align: center;
}
.footer-policy { display: flex; gap: 20px; }

/* ---------- Mobile sticky CTA bar ---------- */
.mobile-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 400;
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  background: var(--white);
  box-shadow: 0 -4px 18px rgba(0,0,0,0.12);
}
.mobile-cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  border-right: 1px solid var(--border);
}
.mobile-cta-bar a:last-child { border-right: none; }
.mobile-cta-book { background: var(--pink); color: var(--white) !important; }

/* ---------- Back to top ---------- */
#back-to-top {
  position: fixed;
  right: 20px;
  bottom: 90px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  border: none;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  font-size: 1rem;
  z-index: 400;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
#back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

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

@media (max-width: 1180px) {
  #main-nav { display: none; }
  .mobile-cta-bar { display: grid; }
  body { padding-bottom: 62px; }
}

@media (min-width: 1181px) {
  .mobile-cta-bar { display: none; }
  .header-phone { display: flex; }
}

@media (max-width: 1180px) {
  #main-nav {
    display: flex;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  #main-nav.open { max-height: 500px; }
  #main-nav ul { flex-direction: column; gap: 0; width: 100%; padding: 10px 0; }
  #main-nav ul li { border-bottom: 1px solid var(--pink-pale); }
  #main-nav ul li a { display: block; padding: 16px 24px; }
  .header-actions .btn-primary { display: none; }
}

@media (min-width: 640px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .pricing-extras { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 860px) {
  .pricing-row > div::before { display: none; }
}

@media (min-width: 960px) {
  .hero-inner { grid-template-columns: 1.05fr 0.95fr; }
  .about-inner { grid-template-columns: 0.9fr 1.1fr; }
  .about-inner .about-media { order: 0; }
  .service-area-inner { grid-template-columns: 1fr 0.9fr; }
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
