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

:root {
  --pink: #ff2d8f;
  --purple: #b200ff;
  --dark: #0a0a0f;
  --dark2: #12121a;
  --dark3: #1a1a26;
  --text: #f0e6ff;
  --text-muted: #a890c0;
  --neon-glow: 0 0 10px #ff2d8f, 0 0 30px #ff2d8f44;
  --purple-glow: 0 0 10px #b200ff, 0 0 30px #b200ff44;
}

html { scroll-behavior: smooth; }

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

/* Fixed background — works on iOS, Android and desktop */
#bg-fixed {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: url('bg.jpg');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}

/* Dark overlay */
#bg-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(8, 4, 14, 0.45);
  pointer-events: none;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* Skip link */
.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--pink); color: #fff;
  padding: .5rem 1rem; border-radius: 0 0 8px 8px;
  font-weight: 700; z-index: 9999; transition: top .3s;
}
.skip-link:focus { top: 0; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #ff2d8f33;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-size: 1.1rem; font-weight: 700; letter-spacing: 0.05em;
  color: #fff;
}
.nav-logo span { color: var(--pink); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--text-muted); font-size: 0.9rem;
  font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--pink); }
.nav-cta {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff; border: none; padding: 0.5rem 1.2rem;
  border-radius: 50px; font-weight: 700; font-size: 0.9rem;
  cursor: pointer; transition: opacity 0.2s;
  box-shadow: var(--neon-glow);
}
.nav-cta:hover { opacity: 0.85; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ─── HERO ─── */
.hero {
  min-height: auto;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 30px 5% 40px;
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(42,0,58,0.6) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff2d8f22, #b200ff22);
  border: 1px solid var(--pink);
  color: var(--pink); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.3rem 1rem; border-radius: 50px; margin-bottom: 1.5rem;
}
.hero-logo-img {
  max-width: 420px; width: 100%; height: auto;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 0 20px #ff2d8f66);
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; line-height: 1.2;
  background: linear-gradient(135deg, #fff 40%, var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.1rem; color: var(--text-muted);
  max-width: 580px; margin: 0 auto 2rem;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff; padding: 0.9rem 2rem; border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  box-shadow: var(--neon-glow); transition: transform 0.2s, opacity 0.2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); opacity: 0.9; }
.btn-primary:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.btn-secondary {
  background: transparent; color: var(--text);
  border: 1px solid var(--pink); padding: 0.9rem 2rem;
  border-radius: 50px; font-weight: 600; font-size: 1rem;
  transition: all 0.2s;
}
.btn-secondary:hover { background: #ff2d8f22; }
.hero-phone {
  margin-top: 1.5rem; font-size: 1.5rem; font-weight: 700;
  color: var(--pink); letter-spacing: 0.05em;
  text-shadow: var(--neon-glow);
}
.hero-phone a { color: inherit; }
.hero-stats {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 2rem; margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.stat-number {
  font-size: clamp(1.8rem,4vw,2.4rem); font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.stat-label { font-size: .8rem; color: var(--text-muted); margin-top: .2rem; }

/* ─── SECTION BASE ─── */
section { padding: 50px 5%; }
.section-label {
  display: block; text-align: center;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--pink); margin-bottom: 0.5rem;
}
.section-title {
  text-align: center; font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600; margin-bottom: 0.5rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}
.section-sub {
  text-align: center; color: var(--text-muted); max-width: 600px;
  margin: 0 auto 3rem; font-size: 1rem;
}
.divider {
  width: 60px; height: 3px; margin: 1rem auto 2rem;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border-radius: 2px;
}

/* ─── GALLERY ─── */
.gallery-section { background: rgba(18,18,26,0.55); padding-top: 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px; max-width: 1100px; margin: 0 auto;
}
.gallery-item {
  position: relative; border-radius: 12px; overflow: hidden;
  aspect-ratio: 217 / 260;
  border: 1px solid #ff2d8f22;
  transition: transform 0.3s, box-shadow 0.3s;
  display: block;
}
.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px #ff2d8f55;
  border-color: var(--pink);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(178,0,255,0.85) 0%, transparent 100%);
  color: #fff; font-weight: 700; font-size: .85rem;
  text-align: center; padding: 1.5rem .5rem .6rem;
  opacity: 0; transition: opacity .3s;
  letter-spacing: 1px; text-transform: uppercase;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.2rem; max-width: 1000px; margin: 0 auto;
}
.service-card {
  background: var(--dark3);
  border: 1px solid #ff2d8f22;
  border-radius: 12px; padding: 1.5rem 1rem;
  text-align: center; transition: border-color 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  border-color: var(--pink);
  box-shadow: 0 0 15px #ff2d8f33;
}
.service-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.service-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--text); }

/* ─── PRICING ─── */
.pricing-section { background: rgba(18,18,26,0.55); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem; max-width: 1000px; margin: 0 auto 2rem;
}
.price-card {
  background: var(--dark3);
  border: 1px solid #b200ff44;
  border-radius: 16px; padding: 2rem 1.5rem;
  text-align: center; position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px #b200ff44;
}
.price-card.featured {
  border-color: var(--pink);
  box-shadow: var(--neon-glow);
}
.price-card.featured::before {
  content: 'POPULAR';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff; font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.1em; padding: 0.2rem 0.8rem; border-radius: 50px;
}
.price-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-muted); margin-bottom: 0.8rem; }
.price-amount {
  font-size: 2.5rem; font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1.2;
}
.price-note { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.5rem; }
.pricing-disclaimer {
  max-width: 700px; margin: 2rem auto 0;
  background: var(--dark3); border: 1px solid #ffffff11;
  border-radius: 12px; padding: 1.5rem;
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.7;
}
.pricing-disclaimer p + p { margin-top: 0.8rem; }

/* ─── CITIES ─── */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem; max-width: 900px; margin: 0 auto;
}
.city-card {
  background: var(--dark3); border: 1px solid #b200ff33;
  border-radius: 10px; padding: 1rem;
  text-align: center; color: var(--text);
  font-weight: 600; font-size: 0.95rem;
  transition: all 0.2s;
  text-decoration: none; display: block; cursor: pointer;
}
.city-card:hover {
  border-color: var(--purple);
  box-shadow: 0 0 15px #b200ff44;
  color: #fff;
}
.city-card .city-icon { font-size: 1.5rem; display: block; margin-bottom: 0.3rem; }

/* ─── BOOKING FORM ─── */
.booking-section {
  background: radial-gradient(ellipse at 50% 50%, rgba(26,0,48,0.65) 0%, transparent 70%);
}
.form-wrap {
  max-width: 680px; margin: 0 auto;
  background: var(--dark3); border: 1px solid #ff2d8f33;
  border-radius: 20px; padding: 2.5rem;
  box-shadow: 0 0 40px #ff2d8f22;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark2); border: 1px solid #ffffff22;
  border-radius: 8px; padding: 0.7rem 1rem;
  color: var(--text); font-size: 0.95rem;
  transition: border-color 0.2s; font-family: inherit;
  -webkit-appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--pink);
  box-shadow: 0 0 8px #ff2d8f44;
}
.form-group select option { background: var(--dark3); }
.form-group textarea { min-height: 80px; resize: vertical; }
.form-radio-group { display: flex; gap: 1rem; align-items: center; margin-top: .2rem; }
.form-radio-group label { display: flex; align-items: center; gap: 0.4rem; cursor: pointer; color: var(--text); font-size: 0.9rem; font-weight: 400; }
.form-submit {
  width: 100%; padding: 1rem;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff; border: none; border-radius: 50px;
  font-size: 1.1rem; font-weight: 800; cursor: pointer;
  margin-top: 1.5rem; letter-spacing: 0.05em;
  box-shadow: var(--neon-glow);
  transition: opacity 0.2s, transform 0.2s; font-family: inherit;
}
.form-submit:hover { opacity: 0.88; transform: translateY(-2px); }
.form-submit:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.form-phone-note {
  text-align: center; margin-top: 1.2rem;
  color: var(--text-muted); font-size: 0.9rem;
}
.form-phone-note a { color: var(--pink); font-weight: 700; }

/* ─── REVIEWS ─── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem; max-width: 1100px; margin: 0 auto;
}
.review-card {
  background: var(--dark3); border: 1px solid #ffffff0d;
  border-radius: 14px; padding: 1.75rem;
  transition: border-color 0.3s;
}
.review-card:hover { border-color: #ff2d8f44; }
.stars { color: #FFD700; font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; display: block; }
.review-text { color: var(--text-muted); font-size: .95rem; line-height: 1.7; font-style: italic; margin-bottom: 1.25rem; }
.reviewer { display: flex; align-items: center; gap: .75rem; }
.reviewer-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .95rem; flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: .9rem; color: var(--text); }
.reviewer-location { color: var(--text-muted); font-size: .8rem; }

/* ─── FAQ ─── */
.faq-section { background: rgba(18,18,26,0.55); }
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid #ffffff11; border-radius: 10px;
  margin-bottom: 0.8rem; overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: #ff2d8f44; }
.faq-q {
  width: 100%; background: var(--dark3);
  border: none; color: var(--text); text-align: left;
  padding: 1.1rem 1.3rem; font-size: 1rem; font-weight: 600;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-family: inherit; transition: color 0.2s;
}
.faq-q:hover { color: var(--pink); }
.faq-q .arrow { color: var(--pink); transition: transform 0.3s; font-size: 1.2rem; flex-shrink: 0; }
.faq-q.open { color: var(--pink); }
.faq-q.open .arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
  background: var(--dark2);
}
.faq-a.open { max-height: 300px; }
.faq-a p { padding: 1rem 1.3rem; color: var(--text-muted); line-height: 1.7; }
.faq-a a { color: var(--pink); font-weight: 700; }

/* ─── FOOTER ─── */
footer {
  background: rgba(6,6,9,0.88);
  border-top: 1px solid #ff2d8f22;
  padding: 3rem 5% 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; max-width: 1100px; margin: 0 auto 2rem;
}
.footer-brand h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.8rem; color: #fff; }
.footer-brand h3 span { color: var(--pink); }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--pink); }
.social-links { display: flex; gap: .75rem; margin-top: 1.2rem; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  transition: background .2s, border-color .2s;
}
.social-link:hover { background: rgba(255,45,143,0.15); border-color: var(--pink); }
.footer-bottom {
  text-align: center; color: var(--text-muted); font-size: 0.8rem;
  border-top: 1px solid #ffffff11; padding-top: 1.5rem;
  max-width: 1100px; margin: 0 auto;
}

/* ─── STICKY BUTTONS ─── */
.sticky-contact {
  position: fixed; bottom: 20px; right: 20px; z-index: 99;
  display: flex; flex-direction: column; gap: 10px;
}
.sticky-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; box-shadow: 0 4px 15px #0008;
  transition: transform 0.2s;
}
.sticky-btn:hover { transform: scale(1.1); }
.sticky-call { background: var(--pink); box-shadow: var(--neon-glow); }
.sticky-sms  { background: #007aff; box-shadow: 0 0 10px #007aff88; font-size: 1.2rem; }
.sticky-wa   { background: #25d366; display: flex; align-items: center; justify-content: center; }
.sticky-ig   { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.sticky-tt   { background: #010101; border: 1px solid #ffffff22; font-size: 1.1rem; }
.sticky-tw   { background: #1d9bf0; font-size: 1.1rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(10,10,15,0.97);
    padding: 1rem 5%; border-bottom: 1px solid #ff2d8f33;
    gap: 1rem;
  }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 40px 5%; }
  .gallery-section { padding: 0 5% 0; }
}
@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .hero { padding-top: 20px; padding-bottom: 0; min-height: auto; }
  .hero-badge { margin-bottom: .5rem; }
  .hero-logo-img { max-width: 280px; margin-bottom: 1rem; }
  .hero h1 { margin-bottom: .6rem; }
  .hero p { margin-bottom: 1rem; font-size: 1rem; }
  .hero-btns { gap: .6rem; }
}

/* Focus */
:focus-visible { outline: 2px solid var(--pink); outline-offset: 3px; }

/* ─── SUBPAGE / CITY PAGE HELPERS ─── */

/* Generic .btn used in city subpages */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff; padding: 0.9rem 2rem; border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  box-shadow: var(--neon-glow); transition: transform 0.2s, opacity 0.2s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); opacity: 0.9; }
.btn-outline {
  background: transparent; border: 1px solid var(--pink);
  box-shadow: none;
}

/* Nav back link (subpages) */
.nav-back {
  color: var(--text-muted); font-size: 0.9rem;
  text-decoration: none; transition: color 0.2s;
}
.nav-back:hover { color: var(--pink); }

/* Hero inner wrapper */
.hero-inner { position: relative; z-index: 1; max-width: 820px; }

/* h1/h2 base (subpages override) */
h1 {
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 800;
  background: linear-gradient(135deg, #fff 40%, var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 1rem;
}
h2 {
  text-align: center; font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700; color: var(--text-muted); margin-bottom: 0.5rem;
}

/* Alternate section background */
.section-alt { background: rgba(18,18,26,0.55); }

/* Content block (text-heavy sections) */
.content-block { max-width: 800px; margin: 0 auto; }
.content-block h3 {
  font-size: 1.1rem; font-weight: 700; color: var(--pink);
  margin: 2rem 0 0.75rem;
}
.content-block p { color: var(--text-muted); margin-bottom: 1rem; }
.content-block strong { color: var(--text); }

/* Neighborhood pills */
.neighborhoods {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  justify-content: center; max-width: 900px; margin: 0 auto;
}
.neighborhood {
  background: var(--dark3); border: 1px solid #b200ff33;
  border-radius: 50px; padding: 0.35rem 0.9rem;
  font-size: 0.85rem; color: var(--text-muted);
}

/* CTA section */
.cta-section {
  text-align: center; padding: 60px 5%;
  background: radial-gradient(ellipse at 50% 50%, rgba(26,0,48,0.6) 0%, transparent 70%);
}
.cta-sub {
  color: var(--text-muted); max-width: 500px;
  margin: 0.75rem auto 1.5rem;
}
.cta-phone {
  font-size: 1.5rem; font-weight: 700; color: var(--pink);
  text-shadow: var(--neon-glow); margin-bottom: 1.5rem;
}
.cta-phone a { color: inherit; }

/* Footer simple layout (city subpages) */
footer {
  text-align: center; padding: 2rem 5%;
  border-top: 1px solid #ff2d8f22;
  color: var(--text-muted); font-size: 0.85rem;
}
footer a { color: var(--pink); text-decoration: none; }
.footer-links { margin-top: 0.5rem; }
.footer-disclaimer { margin-top: 0.5rem; font-size: 0.75rem; }

/* ─── NEIGHBORHOOD LINKS ─── */
.neighborhood-link {
  background: var(--dark3);
  border: 1px solid #ff2d8f44;
  border-radius: 50px;
  padding: .4rem 1rem;
  font-size: .85rem;
  color: var(--pink);
  text-decoration: none;
  transition: all .2s;
  font-weight: 600;
}
.neighborhood-link:hover {
  background: rgba(255,45,143,0.12);
  border-color: var(--pink);
  box-shadow: 0 0 10px #ff2d8f33;
}

/* ─── PRICING CARDS BUTTON ALIGNMENT (desktop) ─── */
@media (min-width: 769px) {
  .services-grid .service-card {
    display: flex;
    flex-direction: column;
  }
  .services-grid .service-card ul {
    flex: 1;
  }
  .services-grid .service-card .btn,
  .services-grid .service-card > a.btn {
    margin-top: auto;
    align-self: center;
  }
}

/* ─── BREADCRUMBS ─── */
.breadcrumb-nav { padding: 70px 5% 0; max-width: 1100px; margin: 0 auto; }
.breadcrumb-nav ol { display: flex; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; gap: .4rem; font-size: .85rem; }
.breadcrumb-nav li { color: var(--text-muted); }
.breadcrumb-nav li:not(:last-child)::after { content: "›"; margin-left: .4rem; color: var(--text-muted); }
.breadcrumb-nav a { color: var(--pink); text-decoration: none; transition: opacity .2s; }
.breadcrumb-nav a:hover { opacity: .75; }
