:root {
  /* Lakers purple */
  --brand-50: #f4edff;
  --brand-100: #e6d6ff;
  --brand-200: #cfb0ff;
  --brand-300: #b88aff;
  --brand-400: #9d5cff;
  --brand-500: #552583; /* Lakers purple */
  --brand-600: #4a1f73;
  --brand-700: #3d1961;
  --brand-800: #2f124d;
  --brand-900: #210b36;

  /* Replace navy with dark purple */
  --navy-50: #f3eef8;
  --navy-100: #ddd0ea;
  --navy-200: #bba6d2;
  --navy-300: #9a7dba;
  --navy-400: #7b5ca0;
  --navy-500: #5c3f84;
  --navy-600: #472f68;
  --navy-700: #34224d;
  --navy-800: #241734;
  --navy-900: #160d1f;

  /* Lakers gold */
  --gold-50: #fff8e1;
  --gold-100: #ffefb3;
  --gold-200: #ffe082;
  --gold-300: #ffd54f;
  --gold-400: #ffca28;
  --gold-500: #fdb927; /* Lakers gold */
  --gold-600: #e0a41f;
  --gold-700: #c58e18;
  --gold-800: #9f7313;
  --gold-900: #7a580d;

  --container: 1200px;
  --shadow-sm: 0 8px 24px rgba(6, 11, 19, 0.06);
  --shadow-md: 0 12px 30px rgba(6, 11, 19, 0.12);
  --shadow-lg: 0 24px 48px rgba(6, 11, 19, 0.14);
  --radius-xl: 20px;
  --radius-2xl: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--navy-800);
  background: #fff;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  color: var(--navy-900);
  margin: 0 0 1rem;
}

p {
  margin: 0 0 1rem;
  line-height: 1.7;
}

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

.section {
  padding: 4rem 0;
}

.section-lg {
  padding: 6rem 0;
}

.section-muted {
  background: #f7f3ff;
  background-image: radial-gradient(#e7dcff 1px, transparent 1px);
  background-size: 18px 18px;
}

.section-brand {
  background: #f4edff;
}

.text-center {
  text-align: center;
}

.section-label {
  color: var(--gold-600);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--navy-600);
  font-size: 1.1rem;
  max-width: 760px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: none;
  border-radius: 999px;
  padding: 1rem 1.8rem;
  font-weight: 700;
  transition: 0.3s ease;
  cursor: pointer;
  text-align: center;
  min-height: 58px;
}

.btn-primary {
  background: var(--gold-500);
  color: var(--brand-900);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.32);
}

.btn-light {
  background: #fff;
  color: var(--brand-600);
}

.btn-light:hover {
  background: var(--brand-50);
}

.btn-sm {
  padding: 0.8rem 1.25rem;
  font-size: 0.95rem;
}

.full {
  width: 100%;
}

.card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid #edf2f7;
}

.card-hover {
  transition: 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: 0.3s ease;
}

.navbar-home {
  background: transparent;
  padding: 1.5rem 0;
}

.navbar.scrolled,
.navbar.not-home {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 8px 24px rgba(6, 11, 19, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.18);
  color: white;
  transition: 0.3s ease;
}

.navbar.scrolled .logo-icon,
.navbar.not-home .logo-icon {
  background: var(--brand-50);
  color: var(--brand-600);
}

.logo-text {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  color: white;
}

.site-logo {
  height: 72px;
  width: auto;
  max-width: 180px;
  display: block;
}

.footer-site-logo {
  height: 76px;
  width: auto;
  display: block;
}

.navbar.scrolled .logo-text,
.navbar.not-home .logo-text {
  color: var(--brand-700);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  padding: 0;
  margin: 0;
}

.nav-links a {
  font-weight: 600;
  transition: 0.25s ease;
  color: white;
}

.navbar.scrolled .nav-links a,
.navbar.not-home .nav-links a {
  color: var(--navy-800);
}

.nav-links a.active {
  color: var(--brand-600) !important;
}

.nav-links a:hover {
  color: var(--brand-500) !important;
}

.mobile-menu-btn {
  display: block;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
}

.navbar.scrolled .mobile-menu-btn,
.navbar.not-home .mobile-menu-btn {
  color: var(--navy-800);
}

.mobile-overlay {
 position: fixed;
  inset: 0;
  background: rgba(6, 11, 19, 0.55);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(85vw, 360px);
  background: white;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 50px rgba(0,0,0,0.2);
  z-index: 1000;
  overflow-y: auto;
}

.mobile-overlay.open .mobile-drawer {
  transform: translateX(0);
}

.mobile-drawer-top {
 display: flex;
  justify-content: flex-end;
  padding: 1rem 1rem 0.5rem;
  position: sticky;
  top: 0;
  background: white;
  z-index: 2;
}

.mobile-close-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  background: var(--navy-50);
  color: var(--navy-500);
  cursor: pointer;
}

.mobile-nav {
  padding: 0.5rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav li a {
  display: block;
  padding: 0.95rem 0;
  border-bottom: 1px solid #edf2f7;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-800);
}

.mobile-nav li a.active {
  color: var(--brand-600);
}

.mobile-nav .btn {
  margin-top: auto;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8.5rem 0 3.5rem;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(34, 12, 58, 0.96),
    rgba(85, 37, 131, 0.85),
    rgba(85, 37, 131, 0.45)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding-top: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(10, 173, 204, 0.16);
  border: 1px solid rgba(10, 173, 204, 0.3);
  color: var(--brand-200);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 1rem;
  backdrop-filter: blur(8px);
}

.about-mission {
  font-family: 'Nunito', sans-serif;
}

.booking-wrap {
  max-width: 1100px;
  margin: 3rem auto 0;
}

.booking-page {
  padding-top: 6rem;
  background: var(--brand-50);
  min-height: 100vh;
}


.booking-iframe {
  display: block;
  width: 100%;
  min-height: 3600px;
  border: none;
  border-radius: 24px;
  background: #fff;
}

.booking-fallback-text {
  text-align: center;
  margin-top: 1rem;
  color: var(--navy-600);
  font-size: 0.95rem;
}

.booking-fallback-text a {
  color: var(--brand-600);
  font-weight: 600;
  text-decoration: underline;
}

.booking-card--embed {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(85, 37, 131, 0.08);
  box-shadow: 0 24px 60px rgba(18, 12, 32, 0.10);
  padding: 0;
  overflow: visible;
}

.booking-card {
  background: white;
  border-radius: 24px;
  padding: 1.25rem;
  box-shadow: 0 24px 60px rgba(18, 12, 32, 0.10);
  overflow: hidden;
  border: 1px solid rgba(85, 37, 131, 0.08);
  margin-bottom: 3rem;
}

.hero-title {
  color: white;
  font-size: clamp(3.2rem, 5.4vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 0 0 1.4rem;
  max-width: 10.5ch;
}

.hero-title span {
  color: var(--gold-500);
}

.hero-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
  line-height: 1.75;
  max-width: 590px;
  margin: 0 0 2rem;
}

.ownership-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.ownership-badge i {
  width: 18px;
  height: 18px;
  color: var(--gold-400);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2.2rem;
  flex-wrap: nowrap;
  padding-top: 1.6rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255,255,255,0.95);
  font-weight: 500;
  white-space: nowrap;
  font-size: 0.98rem;
}

.step-number,
.badge-popular {
  background: var(--gold-500);
  color: var(--brand-900);
}

.trust-icon,
.step-number,
.map-pin,
.carousel-dots button.active,
.badge-popular {
  color: var(--gold-500);
}

.trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(253, 185, 39, 0.14);
  color: var(--gold-500);
  flex-shrink: 0;
}

/* Generic grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.grid-2-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .grid-2-1 {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

/* Services */
.service-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.service-clean-card {
  background: #fff;
  border: 1px solid #e9e9e9;
  padding: 3rem 2rem 2.4rem;
  min-height: 420px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-clean-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
  border-color: #dcdcdc;
}

.home-services .service-clean-title {
  font-size: 1.3rem; /* smaller */
}

/* Apply to ALL service cards */
.services-clean-grid,
.service-clean-card {
  font-family: 'Quicksand', sans-serif;
}

.service-clean-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--gold-600);
}

.service-clean-icon svg,
.service-clean-icon i {
  width: 72px;
  height: 72px;
  stroke-width: 1.8;
}

.service-clean-title {
  font-size: 1.15rem;
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  margin: 0 0 1rem;
  color: #2f2f2f;
}

.service-clean-text {
  font-size: 1.05rem;
  font-family: 'Quicksand', sans-serif;
  font-weight: 400;
  line-height: 1.9;
  color: #5a5a5a;
  max-width: 290px;
  margin: 0 0 2.2rem;
}

.service-clean-link {
  margin-top: auto;
  font-size: 1rem;
  font-weight: 500;
  color: #2f2f2f;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.service-clean-link:hover {
  color: var(--gold-600);
}

.service-icon {
   width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--gold-50);
  color: var(--gold-600);
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  transition: 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--gold-500);
  color: var(--brand-900);
}

.service-card h3 {
  font-size: 1.35rem;
}

.service-card p {
  color: var(--navy-600);
  flex-grow: 1;
}

.text-link {
  color: var(--gold-600);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
}

.cta-service-card {
  background: var(--brand-600);
  color: white;
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-service-card h3,
.cta-service-card p {
  color: white;
}

/* Why choose us */
.feature-item {
  display: flex;
  gap: 1.3rem;
  align-items: flex-start;
}

.feature-icon {
 width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--gold-500);
  color: var(--brand-900);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.feature-item p {
  color: var(--navy-600);
}

/* How it works */
.steps-wrap {
  position: relative;
}

.steps-line {
  position: absolute;
  left: 15%;
  right: 15%;
  top: 48px;
  height: 2px;
  background: var(--brand-100);
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-circle {
  width: 96px;
  height: 96px;
  margin: 0 auto 1.5rem;
  border-radius: 999px;
  border: 4px solid var(--brand-100);
  background: white;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: grid;
  place-items: center;
  transition: 0.3s ease;
}

.step-card:hover .step-circle {
  border-color: var(--brand-500);
}

.step-number {
  position: absolute;
  right: -6px;
  top: -8px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--gold-500);
  color: var(--brand-900);
  font-size: 0.85rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}

.step-circle i {
  color: var(--gold-600);
}

.step-card p {
  color: var(--navy-600);
}

/* Testimonials */
.testimonial-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-viewport {
  overflow: hidden;
  padding: 1rem;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
}

.quote-mark {
  position: absolute;
  top: 1rem;
  left: 1.4rem;
  font-size: 4rem;
  line-height: 1;
  color: var(--brand-100);
  font-family: Georgia, serif;
}

.stars {
  display: flex;
  gap: 0.2rem;
  justify-content: center;
  color: var(--gold-500);
  margin-bottom: 1.3rem;
}

.testimonial-text {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  color: var(--navy-800);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.testimonial-location {
  color: var(--navy-500);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: none;
  background: white;
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--navy-500);
  transition: 0.25s ease;
}

.carousel-btn:hover {
  color: var(--brand-500);
  transform: translateY(-50%) scale(1.08);
}

.carousel-btn.prev { left: -24px; }
.carousel-btn.next { right: -24px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.carousel-dots button {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: var(--navy-200);
  transition: 0.25s ease;
}

.carousel-dots button.active {
  background: var(--gold-500);
}

/* Service areas */
.service-areas-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.city-pill {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: white;
  border: 1px solid var(--brand-100);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  font-weight: 600;
}

.map-card {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  position: relative;
}

.map-circle {
  position: absolute;
  inset: 0;
  background: white;
  border-radius: 999px;
  border: 8px solid var(--brand-100);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.map-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(var(--brand-500) 2px, transparent 2px);
  background-size: 20px 20px;
}

.map-pin {
  position: absolute;
  animation: bounce 2s infinite;
  color: var(--gold-500);
}

.map-pin.pin1 { top: 24%; left: 24%; color: var(--gold-500); }
.map-pin.pin2 { top: 34%; right: 30%; animation-delay: 0.2s; color: var(--brand-500); }
.map-pin.pin3 { bottom: 30%; left: 48%; animation-delay: 0.4s; color: var(--gold-500); }
.map-pin.pin4 { bottom: 24%; right: 24%; animation-delay: 0.6s; color: var(--brand-500); }

.map-label {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  color: var(--navy-900);
  border: 1px solid #edf2f7;
  box-shadow: var(--shadow-sm);
}

/* FAQ */
.faq-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1rem;
  transition: 0.25s ease;
  background: white;
}

.faq-item.open {
  border-color: var(--brand-300);
  background: rgba(230, 247, 250, 0.35);
}

.faq-item:hover {
  border-color: var(--brand-200);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.35rem 1.5rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  cursor: pointer;
}

.faq-question span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-900);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  opacity: 0;
  padding: 0 1.5rem;
  color: var(--navy-600);
  border-top: 1px solid transparent;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding: 1rem 1.5rem 1.4rem;
  border-top-color: rgba(10,173,204,0.15);
}

.faq-item .faq-icon {
  transition: transform 0.25s ease;
  color: var(--brand-500);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

/* CTA section */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #552583,
    #3d1961
  );
  padding: 7rem 0;
}

.price-card.popular,
.mission-box,
.cta-service-card {
  border: 1px solid rgba(253, 185, 39, 0.35);
}

.cta-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.cta-wave svg {
  width: 100%;
  height: 90px;
  display: block;
}

.blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.45;
  mix-blend-mode: multiply;
  animation: blob 7s infinite ease-in-out;
}

.blob.one {
  width: 22rem;
  height: 22rem;
  right: -6rem;
  bottom: -6rem;
  background: var(--brand-400);
}

.blob.two {
  width: 18rem;
  height: 18rem;
  left: -5rem;
  top: -5rem;
  background: var(--brand-300);
  animation-delay: 2s;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
}

.cta-title {
  color: white;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.cta-text {
  color: var(--brand-50);
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

/* Page hero */
.page-hero {
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero.navy {
  background: var(--navy-900);
}

.page-hero.light {
  background: var(--navy-50);
}

.page-hero .hero-bg-soft {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.page-hero .hero-bg-soft img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: white;
  font-size: clamp(2.4rem, 4.4vw, 4.5rem);
}

.page-hero.navy p {
  color: var(--brand-100);
}

.page-hero.light h1 {
  color: var(--navy-900);
}

.page-hero.light p {
  color: var(--navy-600);
  max-width: 760px;
  margin: 0 auto;
}

/* About */
.story-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.story-wrap .text p {
  color: var(--navy-600);
  font-size: 1.1rem;
}

.story-wrap img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.mission-box {
  background: white;
  border-radius: 30px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border-top: 8px solid var(--brand-500);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.mission-box p {
  font-size: 1.2rem;
  font-family: 'Quicksand', sans-serif;
  color: var(--navy-700);
  font-weight: 400;
}

.mission-box h2 {
  font-size: 2rem;
  font-family: 'Quicksand', sans-serif;
  color: var(--navy-700);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-box {
  color: white;
}

.stat-box i {
  color: var(--brand-400);
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.stat-box .value {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  font-family: "Poppins", sans-serif;
}

.stat-box .label {
  color: var(--navy-200);
}

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  max-width: 1150px;
  margin: 0 auto;
}

.contact-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--brand-100);
  color: var(--brand-700);
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.55rem;
  font-weight: 600;
  color: var(--navy-700);
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  outline: none;
  transition: 0.25s ease;
  background: white;
}

.form-control:focus {
  border-color: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(10,173,204,0.14);
}

textarea.form-control {
  resize: none;
  min-height: 130px;
}

.success-box {
  background: #ecfdf3;
  border: 1px solid #bbf7d0;
  color: #166534;
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  background: #dcfce7;
  color: #22c55e;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--brand-50);
  color: var(--brand-600);
  flex-shrink: 0;
}

.service-area-card {
  background: var(--navy-900);
  color: white;
  position: relative;
  overflow: hidden;
}

.service-area-card .bg-icon {
  position: absolute;
  right: -40px;
  top: -40px;
  color: var(--navy-800);
  opacity: 0.5;
}

.service-area-card p,
.service-area-card li {
  color: var(--navy-200);
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 600;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1150px;
  margin: 0 auto 5rem;
}

.price-card {
  position: relative;
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.price-card.popular {
  border: 2px solid var(--gold-500);
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.badge-popular {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold-500);
  color: var(--brand-900);
  font-weight: 800;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.price-value {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 0.5rem;
}

.small-muted {
  color: var(--navy-400);
  font-size: 0.9rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  flex-grow: 1;
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: var(--navy-700);
}

.feature-list i {
  color: var(--brand-500);
  flex-shrink: 0;
  margin-top: 2px;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.addon-card {
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.addon-card .left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.addon-card .left i {
  color: var(--brand-500);
}

.addon-price {
  color: var(--brand-600);
  font-weight: 800;
}

/* Services detail */
.services-detail-wrap {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.service-detail.reverse {
  direction: rtl;
}

.service-detail.reverse > * {
  direction: ltr;
}

.service-detail-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-image-grid {
  display: grid;
  gap: 12px;
}

.service-image-grid img {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.service-image-grid.single {
  grid-template-columns: 1fr;
}

.service-image-grid.single img {
  height: 320px;
}

.service-image-grid.double {
  grid-template-columns: repeat(2, 1fr);
}

.service-image-grid.double img {
  height: 260px;
}

.service-image-grid.vertical {
  grid-template-columns: 1fr;
}

.service-image-grid.vertical img {
  height: 300px;
}

.service-detail-image img {
height: 260px;
}

.service-time {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--brand-50);
  color: var(--brand-600);
  padding: 0.7rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.service-detail p {
  color: var(--navy-600);
  font-size: 1.08rem;
}

/* Footer */
.site-footer {
  background: #1c0f2b;
  color: white;
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo .logo-icon {
  background: var(--brand-500);
}

.footer-logo .logo-text {
  color: white !important;
}

.footer-text {
  color: var(--navy-200);
  font-size: 0.95rem;
}

.socials {
  display: flex;
  gap: 1rem;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--navy-700);
  color: var(--navy-200);
  display: grid;
  place-items: center;
  transition: 0.25s ease;
}

.socials a:hover {
  background: var(--brand-500);
  color: white;
}

.footer-col h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--navy-200);
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: var(--brand-400);
}

.footer-contact li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: var(--navy-200);
}

.footer-contact i {
  color: var(--brand-400);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--navy-700);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p,
.footer-policy a {
  color: var(--navy-300);
  font-size: 0.95rem;
}

.footer-policy {
  display: flex;
  gap: 1.5rem;
}

.footer-policy a:hover {
  color: white;
}

/* Sticky book button */
.sticky-book-wrap {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 1.25rem;
  z-index: 80;
  display: none;
  justify-content: center;
  padding: 0 1rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s ease;
}

.sticky-book-wrap.show {
  opacity: 1;
  transform: translateY(0);
}

.sticky-book-btn {
  width: 100%;
  max-width: 420px;
  pointer-events: auto;
  box-shadow: var(--shadow-lg);
}

/* Scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: 0.7s ease;
}

.reveal-left.show {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition: 0.7s ease;
}

.reveal-right.show {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: 0.6s ease;
}

.reveal-scale.show {
  opacity: 1;
  transform: scale(1);
}

/* Animations */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -15px) scale(1.05); }
  66% { transform: translate(-10px, 20px) scale(0.96); }
}

/* Responsive */
@media (max-width: 1024px) {
  .grid-3,
  .pricing-grid,
  .footer-grid,
  .stats-grid,
  .grid-4,
  .contact-wrap,
  .service-detail,
  .service-areas-wrap,
  .story-wrap,
  .grid-2-1 {
    grid-template-columns: 1fr;
  }

  .steps-line {
    display: none;
  }

  .carousel-btn.prev { left: 0; }
  .carousel-btn.next { right: 0; }

  .price-card.popular {
    transform: none;
  }

  .service-detail.reverse {
    direction: ltr;
  }

    .services-clean-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 3rem 0;
  }

  .section-lg {
    padding: 4rem 0;
  }

  .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .btn {
    width: 100%;
    padding: 0.95rem 1.2rem;
  }

  .testimonial-card,
  .contact-card,
  .price-card,
  .service-card {
    padding: 1.4rem;
  }

  .faq-question {
    padding: 1rem 1rem;
  }

  .faq-question span {
    font-size: 1rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    min-height: 75vh;
  }

  .hero-title {
    font-size: clamp(3rem, 5vw, 3.9rem);
    line-height: 1.05;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .booking-iframe {
    min-height: 4300px;
  }

    .services-clean-grid {
    grid-template-columns: 1fr;
  }

  .service-clean-card {
    min-height: auto;
    padding: 2.5rem 1.5rem 2rem;
  }

  .service-clean-icon {
    margin-bottom: 1.5rem;
  }

  .service-clean-icon svg,
  .service-clean-icon i {
    width: 60px;
    height: 60px;
  }

  .booking-card--embed,
  .booking-iframe {
    border-radius: 18px;
  }

  .booking-iframe {
    min-height: 4300px;
  }

  .booking-wrap {
    margin-top: 2rem;
  }
  
  .hero-trust {
    flex-wrap: wrap; /* allow wrapping on small screens */
    gap: 1.2rem;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 8rem 0 4rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-content {
    max-width: 100%;
    padding-top: 0.5rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-title {
    font-size: clamp(2.4rem, 9vw, 3.2rem);
    line-height: 1.08;
    margin-bottom: 0.9rem;
  }

  .grid-3,
  .grid-4,
  .city-grid,
  .addons-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 2.4rem 1.3rem;
  }

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

  .sticky-book-wrap {
    display: flex;
  }

  .logo-text {
    font-size: 1.35rem;
  }

  .site-logo {
    height: 36px;
    max-width: 150px;
  }
}