@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,700;0,800;0,900;1,400&family=Inter:wght@400;500;600&display=swap');

/* ===========================
   CSS CUSTOM PROPERTIES
=========================== */
:root {
  --brand-purple: #7C4DFF;
  --brand-purple-dark: #5B2FBF;
  --brand-purple-deeper: #2D0E6E;
  --brand-teal: #00BCD4;
  --surface-base: #FFFFFF;
  --surface-elevated: #F4F2FF;
  --surface-floating: #EAE6FF;
  --text-primary: #1A1129;
  --text-muted: #6B5C8E;
  --border-subtle: rgba(124,77,255,0.15);
  --shadow-card: 0 4px 20px rgba(124,77,255,0.10), 0 1px 4px rgba(0,0,0,0.05);
  --shadow-button: 0 8px 32px rgba(124,77,255,0.35);
  --shadow-floating: 0 20px 60px rgba(124,77,255,0.12), 0 4px 16px rgba(0,0,0,0.06);
}

/* ===========================
   BASE RESETS
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--surface-base);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
  user-select: none;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
blockquote { margin: 0; }

/* ===========================
   FOCUS STYLES
=========================== */
:focus-visible {
  outline: 2px solid var(--brand-purple);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===========================
   KEYFRAMES
=========================== */
@keyframes pulseGlow {
  0%, 100% { filter: drop-shadow(0 0 30px rgba(124,77,255,0.6)) drop-shadow(0 0 60px rgba(124,77,255,0.25)); }
  50%       { filter: drop-shadow(0 0 50px rgba(124,77,255,0.9)) drop-shadow(0 0 100px rgba(124,77,255,0.45)); }
}
@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

/* ===========================
   ENTRANCE ANIMATIONS
=========================== */
/* ===========================
   BUTTONS
=========================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--brand-purple);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-button);
  transition: background 0.2s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
}
.btn-primary:hover {
  background: var(--brand-purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(124,77,255,0.55);
}
.btn-primary:active { transform: scale(0.98) translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  background: transparent;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-secondary:hover {
  border-color: var(--brand-purple);
  background: rgba(124,77,255,0.12);
  transform: translateY(-2px);
}
.btn-secondary:active { transform: scale(0.98); }

/* ===========================
   SECTION SHARED STYLES
=========================== */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-eyebrow {
  display: inline-block;
  color: var(--brand-teal);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}
.section-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-subtext {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ===========================
   NAVBAR
=========================== */
#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  will-change: transform;
  background: rgba(26, 23, 41, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(124,77,255,0.15);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
#navbar.navbar-hidden { transform: translateY(-100%); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  position: relative;
  padding: 6px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--brand-purple);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-phone {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.nav-phone:hover { color: #fff; }
#menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  border-radius: 8px;
  transition: background 0.2s ease;
}
#menu-toggle:hover { background: rgba(124,77,255,0.15); }
#menu-toggle svg { position: absolute; transition: opacity 0.2s ease; }
#menu-toggle .icon-x { opacity: 0; }
#menu-toggle.open .icon-bars { opacity: 0; }
#menu-toggle.open .icon-x { opacity: 1; }
#mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 32px 24px;
  border-top: 1px solid rgba(124,77,255,0.1);
  gap: 4px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface-base, #fff);
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  max-height: 80vh;
  overflow-y: auto;
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  padding: 12px 0;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s ease;
}
#mobile-menu a:hover { color: #fff; }
#mobile-menu a:last-of-type { border-bottom: none; }
.mobile-book-btn { margin-top: 8px; display: flex !important; justify-content: center; width: 100%; font-weight: 800 !important; }
#mobile-menu .btn-primary { color: #fff !important; font-weight: 800 !important; }
.mobile-phone-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #fff !important;
  color: var(--brand-purple) !important;
  border: 2px solid var(--brand-purple) !important;
  border-radius: 8px;
  padding: 13px 20px !important;
  font-weight: 700 !important;
  margin-top: 8px;
}
.mobile-phone-btn .lc { width: 16px; height: 16px; display: inline-flex; }
.mobile-phone-btn .lc svg { width: 16px; height: 16px; stroke-width: 2; }

.nav-call-mobile { display: none; }
@media (max-width: 767px) {
  .nav-links, .nav-actions { display: none; }
  .nav-inner { justify-content: space-between; gap: 12px; }
  #menu-toggle { display: flex; order: -1; color: var(--text-primary); }
  .nav-logo { order: 0; gap: 8px; }
  .nav-logo img { width: 38px; height: 38px; }
  .nav-brand-name { font-size: 0.82rem; }
  .nav-call-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--brand-purple);
    color: #fff;
    flex-shrink: 0;
    transition: background 0.2s ease, opacity 0.2s ease;
  }
  .nav-call-mobile:hover { background: var(--brand-purple-dark, #6030e0); }
  .nav-call-mobile:active { opacity: 0.8; transform: scale(0.95); }
}

/* ===========================
   MEGA MENU — DESKTOP
=========================== */
.nav-item-services, .nav-item-areas { position: relative; }
.nav-services-trigger, .nav-areas-trigger { display: flex; align-items: center; gap: 5px; cursor: pointer; }
.nav-services-trigger .dropdown-chevron,
.nav-areas-trigger .dropdown-chevron {
  width: 12px; height: 12px;
  color: var(--text-muted);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.nav-item-services:hover .dropdown-chevron,
.nav-item-areas:hover .dropdown-chevron { transform: rotate(180deg); }
.mega-menu, .areas-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  min-width: 220px;
  background: var(--surface-floating);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  box-shadow: var(--shadow-floating);
  z-index: 300;
}
.areas-dropdown {
  width: 540px;
  border-radius: 8px;
  padding: 12px;
}
.areas-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.mega-menu::before, .areas-dropdown::before {
  content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px;
}
.nav-item-services:hover .mega-menu,
.nav-item-areas:hover .areas-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-cat { position: relative; }
.mega-cat-btn {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  width: 100%; padding: 10px 14px;
  font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 500;
  color: var(--text-muted); background: transparent; border: none; border-radius: 4px;
  cursor: default; text-align: left; white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.mega-cat:hover .mega-cat-btn { background: rgba(124,77,255,0.12); color: #fff; }
.mega-cat-btn .mega-arrow { font-size: 0.9rem; font-weight: 300; opacity: 0.5; transition: opacity 0.15s ease; }
.mega-cat:hover .mega-cat-btn .mega-arrow { opacity: 1; }
.mega-cat-panel {
  position: absolute; top: -8px; left: calc(100% + 8px); min-width: 230px;
  background: var(--surface-floating); border: 1px solid var(--border-subtle); border-radius: 4px;
  padding: 8px; opacity: 0; visibility: hidden; transform: translateX(-4px);
  transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
  box-shadow: var(--shadow-floating); z-index: 301;
}
.mega-cat:hover .mega-cat-panel { opacity: 1; visibility: visible; transform: translateX(0); }
.mega-cat-panel::before { content: ''; position: absolute; top: 0; left: -8px; width: 8px; height: 100%; }
.mega-cat-panel a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px; font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 400;
  color: var(--text-muted); border-radius: 3px;
  transition: background 0.13s ease, color 0.13s ease; white-space: nowrap;
}
.areas-dropdown a {
  display: flex; align-items: center; gap: 7px;
  padding: 7px 10px; font-family: 'Inter', sans-serif; font-size: 0.775rem; font-weight: 400;
  color: var(--text-muted); border-radius: 4px;
  transition: background 0.13s ease, color 0.13s ease; white-space: nowrap;
}
.mega-cat-panel a:hover, .areas-dropdown a:hover { background: rgba(124,77,255,0.12); color: #fff; }
.mega-cat-divider { height: 1px; background: rgba(124,77,255,0.12); margin: 6px 8px; }


/* Lucide icon sizing in nav — matches index.html */
.lc { display: inline-flex; align-items: center; }
.lc svg { display: block; }
.mega-cat-btn .lc { width: 16px; height: 16px; margin-right: 8px; color: var(--brand-purple); }
.mega-cat-btn .lc svg { width: 16px; height: 16px; stroke-width: 2; }
.mega-cat-panel a .lc { width: 14px; height: 14px; margin-right: 8px; color: var(--brand-purple); opacity: 0.75; }
.mega-cat-panel a .lc svg { width: 14px; height: 14px; stroke-width: 2; }
.mega-cat-panel a:hover .lc { opacity: 1; }
.areas-dropdown a .lc { width: 14px; height: 14px; margin-right: 8px; color: var(--brand-purple); opacity: 0.75; }
.areas-dropdown a .lc svg { width: 14px; height: 14px; stroke-width: 2; }
.areas-dropdown a:hover .lc { opacity: 1; }

/* MOBILE NAV ACCORDION */
.mobile-services-item { border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-services-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 12px 0;
  font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 500;
  color: var(--text-muted); background: transparent; border: none; cursor: pointer;
  transition: color 0.2s ease;
}
.mobile-services-toggle:hover, .mobile-services-toggle.open { color: #fff; }
.mobile-toggle-arrow { width: 16px; height: 16px; transition: transform 0.22s ease; flex-shrink: 0; }
.mobile-services-toggle.open .mobile-toggle-arrow { transform: rotate(180deg); }
.mobile-services-accordion { display: none; flex-direction: column; gap: 4px; padding: 0 0 12px 0; }
.mobile-services-accordion.open { display: flex; }
.mobile-cat { display: flex; flex-direction: column; }
.mobile-cat-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 9px 14px;
  font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 500;
  color: var(--text-muted); background: rgba(124,77,255,0.07); border: none; border-radius: 5px;
  cursor: pointer; transition: background 0.15s ease, color 0.15s ease;
}
.mobile-cat-toggle:hover { background: rgba(124,77,255,0.14); color: #fff; }
.mobile-cat-toggle.open { background: rgba(124,77,255,0.18); color: #fff; }
.mobile-cat-toggle.open .mobile-toggle-arrow { transform: rotate(180deg); }
.mobile-cat-links { display: none; flex-direction: column; padding: 4px 0 4px 14px; }
.mobile-cat-links.open { display: flex; }
.mobile-cat-links a {
  display: flex; align-items: center; gap: 7px;
  padding: 7px 12px; font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 400;
  color: var(--text-muted); border-radius: 3px; transition: background 0.13s ease, color 0.13s ease;
}
.mobile-cat-links a:hover { color: #fff; background: rgba(124,77,255,0.1); }
.mobile-cat-toggle .lc { width: 15px; height: 15px; margin-right: 8px; color: var(--brand-purple); }
.mobile-cat-toggle .lc svg { width: 15px; height: 15px; stroke-width: 2; }
.mobile-cat-links a .lc { width: 14px; height: 14px; margin-right: 8px; color: var(--brand-purple); opacity: 0.75; }
.mobile-cat-links a .lc svg { width: 14px; height: 14px; stroke-width: 2; }
.mobile-cat-links a:hover .lc { opacity: 1; }

/* ===========================
   HOME PAGE HERO SECTION
=========================== */
#hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--surface-base);
  display: flex;
  align-items: center;
}
.hero-gradient-1, .hero-gradient-2, .hero-gradient-3 {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero-noise {
  position: absolute; inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 1;
  width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 100px 32px 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.hero-left { display: flex; flex-direction: column; gap: 0; }
.reviews-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124,77,255,0.18);
  border: 1px solid rgba(124,77,255,0.4);
  border-radius: 999px; padding: 7px 18px; margin-bottom: 24px;
  font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 600;
  color: var(--text-primary); width: fit-content;
}
.reviews-badge .badge-stars { color: #E8920A; font-size: 0.85rem; letter-spacing: 1px; text-shadow: 0 0 6px rgba(255,255,255,0.8), 0 0 14px rgba(255,255,255,0.35); }
.reviews-badge .badge-count { color: var(--brand-teal); }
.hero-h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.03em; line-height: 1.0;
  color: #fff; margin-bottom: 20px;
}
.hero-h1 span { color: var(--brand-purple); }
.hero-slogan {
  font-style: italic; font-size: 1.1rem;
  color: var(--text-muted); margin-bottom: 36px; line-height: 1.6;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.btn-hero-primary { padding: 17px 40px; font-size: 1rem; }
.btn-hero-secondary { padding: 15px 36px; font-size: 1rem; }
.hero-right { display: flex; justify-content: center; align-items: center; }
.hero-logo-wrapper {
  animation: pulseGlow 3s ease-in-out infinite, heroLogoFloat 6s ease-in-out infinite;
  border-radius: 50%; padding: 5px;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-teal));
  width: min(400px, 90vw); height: min(400px, 90vw); flex-shrink: 0;
}
.hero-logo-img {
  width: 100%; height: 100%;
  border-radius: 50%; object-fit: cover; display: block;
}
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; padding: 80px 24px 60px; gap: 40px; }
  .hero-left { order: 2; align-items: center; }
  .hero-right { order: 1; }
  .hero-logo-wrapper { width: min(260px, 70vw); height: min(260px, 70vw); }
  .reviews-badge { margin: 0 auto 24px; }
}

/* ===========================
   TRUST BAR
=========================== */
#trust-bar, .trust-bar {
  background: var(--surface-elevated);
  border-top: 2px solid rgba(124,77,255,0.5);
  border-bottom: 1px solid rgba(124,77,255,0.12);
  overflow: hidden;
}
.trust-bar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; flex-wrap: nowrap; justify-content: center; align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 24px;
  font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--text-muted); white-space: nowrap;
}
.trust-item.highlight { color: #fff; }
.trust-icon-star { color: #E8920A; font-size: 0.9rem; text-shadow: 0 0 6px rgba(255,255,255,0.8), 0 0 14px rgba(255,255,255,0.35); }
.trust-icon-pin { color: var(--brand-purple); }
.trust-icon-bolt { color: var(--brand-purple); }
.trust-icon-pin .lc, .trust-icon-bolt .lc, .trust-icon-brothers .lc { width: 15px; height: 15px; color: var(--brand-purple); }
.trust-icon-pin .lc svg, .trust-icon-bolt .lc svg, .trust-icon-brothers .lc svg { width: 15px; height: 15px; stroke-width: 2; }
.why-icon .lc { width: 36px; height: 36px; color: var(--brand-purple); }
.why-icon .lc svg { width: 36px; height: 36px; stroke-width: 1.5; }
.schedule-icon .lc { width: 20px; height: 20px; color: var(--brand-purple); flex-shrink: 0; }
.schedule-icon .lc svg { width: 20px; height: 20px; stroke-width: 1.75; }
.trust-divider { width: 1px; height: 20px; background: rgba(124,77,255,0.25); flex-shrink: 0; }
@media (max-width: 640px) {
  .trust-divider { display: none; }
  .trust-bar { padding-top: 28px; padding-bottom: 4px; }
  .trust-bar-inner { flex-wrap: wrap; overflow-x: visible; padding: 0 12px; justify-content: center; }
  .trust-item { padding: 6px 10px; white-space: nowrap; font-size: 0.68rem; justify-content: center; }
  .trust-item.highlight { display: none; }
  .trust-item-location { width: 100%; justify-content: center; }
  .trust-item-sameday, .trust-item-brothers { flex: 1; justify-content: center; }
}

/* ===========================
   SERVICES SECTION — TABBED
=========================== */
#services {
  background: var(--surface-elevated);
  padding: 100px 0;
}
.tab-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
  justify-content: center;
}
.tab-btn {
  padding: 11px 22px;
  background: var(--surface-floating);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.65;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease,
              opacity 0.2s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tab-btn:hover:not(.active) {
  opacity: 0.85;
  border-color: rgba(124,77,255,0.4);
  color: #fff;
  transform: translateY(-1px);
}
.tab-btn.active {
  background: var(--brand-purple);
  border-color: var(--brand-purple);
  color: #fff;
  opacity: 1;
  box-shadow: var(--shadow-button);
}
.tab-content { display: none; }
.tab-content.active { display: block; }
.service-tab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-tab-card {
  background: var(--surface-floating);
  border-radius: 16px;
  border: 1px solid rgba(124,77,255,0.12);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.service-tab-card:hover {
  transform: translateY(-5px);
  border-color: rgba(124,77,255,0.5);
  box-shadow: 0 12px 40px rgba(124,77,255,0.25), 0 2px 8px rgba(0,0,0,0.5);
}
.service-tab-card a {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  height: 100%;
  color: inherit;
}
.service-tab-card .card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.service-tab-card:hover .card-icon { transform: scale(1.15); }
.service-tab-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 0.95rem;
  color: #fff; margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: -0.01em;
}
.service-tab-card p {
  color: var(--text-muted); font-size: 0.85rem;
  line-height: 1.6; flex: 1; margin-bottom: 16px;
}
.card-link-arrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 0.8rem;
  color: var(--brand-purple);
  text-transform: uppercase; letter-spacing: 0.05em;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}
.service-tab-card:hover .card-link-arrow {
  color: var(--brand-teal);
  transform: translateX(3px);
}
@media (max-width: 900px) {
  .service-tab-grid { grid-template-columns: repeat(2, 1fr); }
  .tab-btn { font-size: 0.72rem; padding: 10px 16px; }
}
@media (max-width: 480px) {
  .service-tab-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .service-tab-card a { padding: 20px 16px; }
  .service-tab-card .card-icon { font-size: 1.6rem; margin-bottom: 10px; }
  .service-tab-card h3 { font-size: 0.82rem; }
  .service-tab-card p { font-size: 0.78rem; }
}

/* ===========================
   WHY CHOOSE US
=========================== */
#why-us {
  background: var(--surface-elevated);
  padding: 100px 0;
  position: relative; overflow: hidden;
}
#why-us::before {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 80%; height: 50%;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(124,77,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.why-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.why-pillar {
  padding: 40px 32px;
  background: var(--surface-elevated);
  border-radius: 20px;
  border: 1px solid rgba(124,77,255,0.1);
  transition: border-color 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.why-pillar:hover {
  border-color: rgba(124,77,255,0.3);
  transform: translateY(-4px);
}
.why-accent-line {
  height: 3px; width: 48px;
  background: linear-gradient(90deg, var(--brand-purple), var(--brand-teal));
  border-radius: 2px; margin-bottom: 24px;
}
.why-icon { font-size: 2.25rem; margin-bottom: 16px; }
.why-pillar h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 1.15rem; color: #fff; margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: -0.01em;
}
.why-pillar p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; }
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ===========================
   HOW IT WORKS
=========================== */
#how-it-works { background: var(--surface-base); padding: 100px 0; }
.steps-wrapper { position: relative; }
.steps-connector {
  position: absolute; top: 56px;
  left: calc(50% / 3 + 32px); right: calc(50% / 3 + 32px);
  height: 2px;
  background: linear-gradient(90deg, var(--brand-purple), var(--brand-teal));
  z-index: 0;
}
.steps-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.step-card {
  text-align: center; padding: 40px 24px;
  background: var(--surface-floating);
  border-radius: 20px; border: 1px solid rgba(124,77,255,0.12);
}
.step-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 68px; height: 68px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-purple-dark));
  color: #fff; font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 1.25rem; margin-bottom: 24px;
  box-shadow: var(--shadow-button);
}
.step-card h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 1.05rem; text-transform: uppercase; letter-spacing: -0.01em;
  color: #fff; margin-bottom: 12px;
}
.step-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.step-card-text { flex: 1; }
@media (max-width: 767px) {
  .steps-connector { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .step-card { text-align: left; display: flex; align-items: flex-start; gap: 20px; padding: 24px; }
  .step-number { flex-shrink: 0; width: 52px; height: 52px; font-size: 1rem; margin-bottom: 0; }
}

/* ===========================
   REVIEWS SECTION
=========================== */
#reviews { background: var(--surface-base); padding: 100px 0; }
.google-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px; padding: 8px 20px; margin-top: 20px;
  font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 600;
  color: var(--text-muted);
}
.google-rating-num { font-size: 1rem; font-weight: 700; color: #fff; }
.google-stars { color: #E8920A; letter-spacing: 1px; text-shadow: 0 0 6px rgba(255,255,255,0.8), 0 0 14px rgba(255,255,255,0.35); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--surface-elevated); border-radius: 20px;
  padding: 32px; border: 1px solid rgba(124,77,255,0.12);
  box-shadow: var(--shadow-card); display: flex; flex-direction: column;
}
.review-stars { color: #E8920A; font-size: 1rem; letter-spacing: 2px; text-shadow: 0 0 8px rgba(232,146,10,0.5), 0 0 16px rgba(232,146,10,0.2); margin-bottom: 16px; }
.review-card blockquote p {
  color: var(--text-muted); font-style: italic;
  font-size: 0.9rem; line-height: 1.75;
}
.review-author {
  display: flex; align-items: center; gap: 12px;
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-teal));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.75rem;
  color: #fff; flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: 0.9rem; color: #fff; }
.reviewer-location { font-size: 0.8rem; color: var(--text-muted); }
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ===========================
   SERVICE AREAS
=========================== */
#service-areas { background: var(--surface-base); padding: 100px 0; }
.areas-grid {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; margin-bottom: 40px;
}
.area-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 22px; border-radius: 999px;
  background: var(--surface-floating);
  border: 1px solid rgba(124,77,255,0.2);
  color: var(--text-muted);
  font-size: 0.875rem; font-weight: 500;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.2s ease, color 0.2s ease;
  cursor: default;
}
.area-badge:hover { transform: translateY(-2px); border-color: rgba(124,77,255,0.5); color: #fff; }
.area-badge.primary {
  background: rgba(124,77,255,0.15);
  border-color: rgba(124,77,255,0.5);
  color: #fff; font-weight: 600;
}
.area-badge.accent {
  background: rgba(0,188,212,0.1);
  border-color: rgba(0,188,212,0.4);
  color: var(--brand-teal);
}
.area-pin { color: var(--brand-purple); }
.areas-footnote { text-align: center; color: var(--text-muted); font-size: 0.9rem; }
.areas-footnote a { color: var(--brand-purple); font-weight: 600; transition: color 0.2s ease; }
.areas-footnote a:hover { color: #fff; }

/* ===========================
   CTA / QUOTE SECTION
=========================== */
#book {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--brand-purple-deeper) 0%, var(--brand-purple-dark) 40%, var(--brand-purple) 70%, var(--brand-teal) 100%);
}
.cta-radial-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(124,77,255,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.cta-noise {
  position: absolute; inset: 0; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px; pointer-events: none;
}
.cta-inner {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto;
  padding: 80px 32px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.cta-left { }
.cta-h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.03em; color: #fff; line-height: 1.05; margin-bottom: 20px;
}
.cta-subp { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 24px; }
.cta-phone {
  display: block; font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #fff; letter-spacing: -0.02em; margin-bottom: 16px;
  transition: text-shadow 0.2s ease;
}
.cta-phone:hover { text-shadow: 0 0 30px rgba(255,255,255,0.6); }
.cta-foot-note { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
@media (max-width: 768px) {
  .cta-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .cta-phone { font-size: 1.75rem; }
}

/* ===========================
   QUOTE FORM
=========================== */
.quote-form-wrap {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 36px 32px;
  backdrop-filter: blur(8px);
}
.quote-form-wrap h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 1.15rem;
  text-transform: uppercase; letter-spacing: -0.01em;
  color: #fff; margin-bottom: 24px;
}
.quote-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quote-form input,
.quote-form textarea,
.quote-form select {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 14px 16px;
  color: #fff;
  font-family: 'Inter', sans-serif; font-size: 0.9rem;
  width: 100%;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.quote-form input:focus,
.quote-form textarea:focus {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.12);
  outline: none;
}
.quote-form input::placeholder,
.quote-form textarea::placeholder { color: rgba(255,255,255,0.5); }
.quote-form textarea { resize: vertical; min-height: 100px; }
.quote-form .btn-submit {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 32px; background: #fff; color: var(--brand-purple);
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em;
  border-radius: 8px; border: none; cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
  margin-top: 4px;
}
.quote-form .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.quote-form .btn-submit:active { transform: scale(0.98); }
.form-guarantee {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
  letter-spacing: 0.01em;
}
@media (max-width: 480px) {
  .quote-form-wrap { padding: 24px 20px; }
}

/* ===========================
   FOOTER
=========================== */
#site-footer {
  background: #0A0812;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--brand-purple-deeper), var(--brand-purple), var(--brand-teal)) 1;
}
.footer-main { max-width: 1280px; margin: 0 auto; padding: 64px 32px 48px; }
.footer-inner {
  display: grid;
  grid-template-columns: 220px 160px 2fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(124,77,255,0.12);
}
.footer-areas-list {
  display: flex;
  gap: 12px;
}
.footer-areas-list ul {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
/* Brand column */
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; display: block; }
.footer-brand-name {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1rem; text-transform: uppercase; letter-spacing: 0.04em; color: #fff;
}
.footer-tagline { color: rgba(184,169,217,0.6); font-size: 0.82rem; line-height: 1.65; }
.footer-nap { display: flex; flex-direction: column; gap: 6px; margin-top: 2px; }
.footer-nap a, .footer-nap span {
  color: rgba(184,169,217,0.55); font-size: 0.8rem; line-height: 1.5;
  text-decoration: none; transition: color 0.2s ease;
}
.footer-nap a:hover { color: #fff; }
.footer-social { display: flex; gap: 8px; margin-top: 4px; flex-wrap: wrap; }
.footer-social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 6px;
  text-decoration: none; flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}
.footer-social-btn.insta { background: rgba(124,77,255,0.15); color: rgba(184,169,217,0.8); border: 1px solid #7C4DFF; }
.footer-social-btn.fb { background: rgba(124,77,255,0.15); color: rgba(184,169,217,0.8); border: 1px solid #7C4DFF; }
.footer-social-btn:hover { background: rgba(124,77,255,0.35) !important; color: #fff !important; }
/* Columns */
.footer-col h4 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--brand-teal); margin-bottom: 18px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(124,77,255,0.15);
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; list-style: none; padding: 0; }
.footer-col ul a {
  color: rgba(184,169,217,0.6); font-size: 0.8rem;
  text-decoration: none; transition: color 0.2s ease;
  display: block; line-height: 1.4;
}
.footer-col ul a:hover { color: #fff; }
.footer-col-areas h4 {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: center;
  white-space: nowrap;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 18px;
}
.footer-col-areas h4::before,
.footer-col-areas h4::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--brand-teal);
}
/* Areas — 2-col sub-grid */
.footer-areas-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
/* Bottom bar */
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 12px; padding-top: 24px;
  color: rgba(184,169,217,0.35); font-size: 0.75rem; line-height: 1.6;
}
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(184,169,217,0.35); text-decoration: none; font-size: 0.75rem; transition: color 0.2s ease; }
.footer-bottom-links a:hover { color: rgba(184,169,217,0.7); }
@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: 200px 1fr 1fr 1.5fr 1fr; gap: 28px; }
}
@media (max-width: 860px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: 20px; }
  .footer-areas-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { flex-direction: column; align-items: center; text-align: center; }
  .footer-logo { margin: 0 auto; }
  .footer-nap { align-items: center; text-align: center; }
  .footer-col { text-align: center; }
  .footer-col h4 { justify-content: center; }
  .footer-col ul { align-items: center; }
  .footer-col-areas h4 { justify-content: center; }
  .footer-areas-list { justify-content: center; }
  .footer-areas-list ul { align-items: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}

/* ===========================
   SERVICE PAGE — PAGE HERO
=========================== */
.page-hero {
  position: relative; overflow: hidden;
  background: var(--surface-base);
  padding: 52px 32px 64px;
  border-bottom: 1px solid rgba(124,77,255,0.15);
}
.page-hero-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 30% 60%, rgba(61,27,142,0.6) 0%, transparent 70%),
              radial-gradient(ellipse 40% 50% at 70% 30%, rgba(124,77,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-noise {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px; pointer-events: none;
}
.page-hero-content {
  position: relative; z-index: 1;
  max-width: 860px; margin: 0 auto; text-align: center;
}
.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.03em; line-height: 1.08; color: #fff;
  margin-bottom: 24px;
}
.page-hero h1 .highlight { color: var(--brand-purple); }
.page-hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 8px;
}

/* ===========================
   SERVICE PAGE — CONTENT BLOCKS
=========================== */
.service-section {
  padding: 72px 0;
}
.service-section.bg-elevated { background: var(--surface-elevated); }
.service-section.bg-base { background: var(--surface-base); }
.service-section.bg-floating { background: var(--surface-floating); }
.content-block {
  max-width: 860px; margin: 0 auto; padding: 0 32px;
}
.content-block h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  text-transform: uppercase; letter-spacing: -0.03em;
  color: #fff; line-height: 1.1; margin-bottom: 24px;
}
.content-block h2 .highlight { color: var(--brand-purple); }
.content-block p {
  color: var(--text-muted); font-size: 1rem; line-height: 1.8; margin-bottom: 16px;
}
.content-block p:last-child { margin-bottom: 0; }

/* Heroes block */
.heroes-block {
  max-width: 860px; margin: 0 auto;
  position: relative;
  padding: 28px 28px 28px 36px;
  background: linear-gradient(105deg, rgba(124,77,255,0.08) 0%, transparent 65%);
  border-radius: 0 12px 12px 0;
}
.heroes-block::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--brand-purple), var(--brand-teal));
  border-radius: 2px;
}
.heroes-block h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 1.875rem);
  text-transform: uppercase; letter-spacing: -0.02em;
  color: #fff; margin-bottom: 16px;
}
.heroes-block p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; }

/* Schedule block */
.schedule-block {
  max-width: 860px; margin: 0 auto;
  position: relative;
  padding: 28px 28px 28px 36px;
  background: linear-gradient(105deg, rgba(0,188,212,0.07) 0%, transparent 65%);
  border-radius: 0 12px 12px 0;
}
.schedule-block::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--brand-teal), var(--brand-purple));
  border-radius: 2px;
}
.schedule-block h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 1.875rem);
  text-transform: uppercase; letter-spacing: -0.02em;
  color: #fff; margin-bottom: 16px;
}
.schedule-block p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 10px; }
.schedule-block .schedule-contact {
  margin-top: 20px; display: flex; flex-direction: column; gap: 10px;
}
.schedule-contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 18px;
  background: rgba(124,77,255,0.06);
  border: 1px solid rgba(124,77,255,0.14);
  border-radius: 10px;
  font-size: 0.9rem; color: var(--text-muted);
  transition: border-color 0.2s ease, transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease;
}
.schedule-contact-item:hover {
  border-color: rgba(124,77,255,0.4);
  transform: translateX(6px);
  box-shadow: -3px 0 0 var(--brand-purple);
}
.schedule-contact-item a { color: var(--brand-teal); font-weight: 600; }
.schedule-contact-item a:hover { color: var(--brand-purple); }

/* Why choose section (reused on service pages) */
.sp-why-section {
  background: var(--surface-base); padding: 72px 0;
  position: relative; overflow: hidden;
}
.sp-why-section::before {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 80%; height: 50%;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(124,77,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* About block */
.about-block {
  background: var(--surface-base);
  border-radius: 20px; padding: 48px 48px;
  max-width: 860px; margin: 0 auto;
  border: 1.5px solid rgba(124,77,255,0.25);
  box-shadow: 0 4px 24px rgba(124,77,255,0.07), 0 1px 4px rgba(0,0,0,0.04);
  display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: start;
}
.about-logo {
  width: 100px; height: 100px; border-radius: 50%; object-fit: cover;
  border: 3px solid rgba(124,77,255,0.4);
  flex-shrink: 0;
}
.about-text h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 1.875rem);
  text-transform: uppercase; letter-spacing: -0.02em;
  color: #fff; margin-bottom: 16px;
}
.about-text p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 12px; }
.about-text p:last-child { margin-bottom: 0; }
@media (max-width: 640px) {
  .about-block { grid-template-columns: 1fr; padding: 28px 24px; }
  .about-logo { width: 72px; height: 72px; }
}

/* Mission block */
.mission-block {
  display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: start;
  max-width: 860px; margin: 0 auto;
}
.mission-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--surface-elevated);
  border: 2px solid rgba(124,77,255,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mission-icon .lc { display: flex; align-items: center; justify-content: center; }
.mission-icon svg { width: 32px; height: 32px; stroke: var(--brand-purple); stroke-width: 1.8; }
.mission-text h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 1.875rem);
  text-transform: uppercase; letter-spacing: -0.02em;
  color: var(--text-primary); margin-bottom: 16px;
}
.mission-text p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 12px; }
.mission-text p:last-child { margin-bottom: 0; }
@media (max-width: 640px) {
  .mission-block { grid-template-columns: 1fr; padding: 28px 24px; }
  .mission-icon { width: 56px; height: 56px; margin: 0 auto; }
  .mission-icon svg { width: 24px; height: 24px; }
}

/* Service page quote form section */
.sp-quote-section {
  background: linear-gradient(135deg, var(--brand-purple-deeper) 0%, var(--brand-purple-dark) 50%, var(--brand-purple) 100%);
  padding: 72px 32px;
  position: relative; overflow: hidden;
}
.sp-quote-section .cta-radial-overlay {
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(124,77,255,0.3) 0%, transparent 70%);
}
.sp-quote-inner {
  position: relative; z-index: 1;
  max-width: 680px; margin: 0 auto; text-align: center;
}
.sp-quote-inner h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  text-transform: uppercase; letter-spacing: -0.03em;
  color: #fff; margin-bottom: 12px;
}
.sp-quote-inner p { color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.sp-quote-inner .quote-form-wrap {
  text-align: left;
}

/* Pricing CTA block */
.pricing-cta-block {
  max-width: 860px; margin: 0 auto; padding: 0 32px;
  text-align: center;
}
.pricing-cta-inner {
  background: var(--surface-floating);
  border: 1px solid rgba(124,77,255,0.2);
  border-radius: 20px; padding: 48px 40px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.pricing-cta-inner h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase; letter-spacing: -0.02em; color: #fff;
}
.pricing-cta-inner p { color: var(--text-muted); max-width: 460px; font-size: 0.95rem; }

/* Payment methods */
.payment-section {
  background: var(--surface-elevated); padding: 40px 0 56px;
}
.service-section.bg-elevated + .payment-section {
  padding-top: 0;
}
.payment-inner {
  max-width: 860px; margin: 0 auto; padding: 0 32px; text-align: center;
}
.payment-inner h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  text-transform: uppercase; letter-spacing: -0.02em;
  color: #fff; margin-bottom: 32px;
}
.payment-tagline {
  font-family: 'Inter', sans-serif; font-size: 1rem; line-height: 1.6;
  color: var(--text-muted); margin: -8px 0 32px;
}
.payment-grid {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.payment-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px;
  background: var(--surface-floating);
  border: 1px solid rgba(124,77,255,0.2);
  font-family: 'Inter', sans-serif; font-size: 0.875rem; font-weight: 600;
  color: var(--text-muted);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.payment-badge:hover {
  border-color: rgba(124,77,255,0.5); color: #fff; transform: translateY(-2px);
}


/* ===========================
   LIGHT THEME OVERRIDES
=========================== */

/* NAV — crisp white glass */
#navbar {
  background: rgba(255,255,255,0.97);
  border-bottom-color: rgba(124,77,255,0.12);
}
#navbar.scrolled {
  box-shadow: 0 4px 24px rgba(124,77,255,0.10), 0 1px 6px rgba(0,0,0,0.04);
}
.nav-brand-name { color: var(--text-primary); }
.nav-links a:hover { color: var(--brand-purple); }
.mega-cat:hover .mega-cat-btn { color: var(--brand-purple); background: rgba(124,77,255,0.08); }
.mega-cat-panel a:hover,
.areas-dropdown a:hover { color: var(--brand-purple); background: rgba(124,77,255,0.08); }
.mobile-services-item { border-bottom-color: rgba(124,77,255,0.1); }
.mobile-services-toggle:hover,
.mobile-services-toggle.open { color: var(--brand-purple); }
.mobile-cat-toggle:hover,
.mobile-cat-toggle.open { color: var(--brand-purple); background: rgba(124,77,255,0.1); }
.mobile-cat-links a:hover { color: var(--brand-purple); background: rgba(124,77,255,0.07); }
#mobile-menu a { border-bottom-color: rgba(124,77,255,0.08); }
#mobile-menu a:hover { color: var(--brand-purple); }
.nav-phone:hover { color: var(--brand-purple); }

/* HERO (home) — airy white */
.hero-gradient-1 {
  background: radial-gradient(ellipse 70% 75% at 78% 45%, rgba(124,77,255,0.08) 0%, rgba(124,77,255,0.02) 55%, transparent 80%);
}
.hero-gradient-2 {
  background: radial-gradient(ellipse 35% 40% at 78% 50%, rgba(0,188,212,0.05) 0%, transparent 65%);
}
.hero-gradient-3 {
  background: radial-gradient(ellipse 50% 40% at 8% 85%, rgba(124,77,255,0.05) 0%, transparent 60%);
}
.hero-h1 { color: var(--text-primary); }
.btn-secondary {
  color: var(--brand-purple);
  border-color: rgba(124,77,255,0.35);
}
.btn-secondary:hover {
  background: rgba(124,77,255,0.07);
  border-color: var(--brand-purple);
  color: var(--brand-purple);
}

/* TRUST BAR */
.trust-item.highlight { color: var(--brand-purple); }

/* SERVICE CARDS */
.service-tab-card h3 { color: var(--text-primary); }
.service-tab-card {
  box-shadow: 0 4px 16px rgba(124,77,255,0.08), 0 1px 4px rgba(0,0,0,0.04);
}
.service-tab-card:hover {
  box-shadow: 0 12px 36px rgba(124,77,255,0.16), 0 2px 8px rgba(0,0,0,0.05);
}

/* WHY US / HOW IT WORKS */
.why-pillar h3,
.step-card h3 { color: var(--text-primary); }

/* REVIEWS */
.google-badge {
  background: rgba(124,77,255,0.06);
  border-color: rgba(124,77,255,0.15);
}
.google-rating-num { color: var(--text-primary); }
.review-card {
  background: #fff;
  box-shadow: 0 6px 24px rgba(124,77,255,0.08), 0 1px 4px rgba(0,0,0,0.04);
}
.review-author { border-top-color: rgba(124,77,255,0.1); }
.reviewer-name { color: var(--text-primary); }

/* SERVICE AREAS */
.area-badge:hover { color: var(--brand-purple); }
.area-badge.primary { color: var(--brand-purple); }
.areas-footnote a:hover { color: var(--text-primary); }
.tab-btn:hover:not(.active) { color: var(--brand-purple); }

/* PAYMENT BADGES */
.payment-badge:hover { color: var(--text-primary); }

/* PRICING CTA */
.pricing-cta-inner h2 { color: var(--text-primary); }

/* CONTENT BLOCKS (service pages) */
.content-block h2 { color: var(--text-primary); }
.heroes-block h2,
.schedule-block h2,
.about-text h2 { color: var(--text-primary); }
.schedule-contact-item { color: var(--text-primary); }
.payment-inner h2 { color: var(--text-primary); }

/* PAGE HERO (service pages) — light instead of dark gradient */
.page-hero-gradient {
  background: radial-gradient(ellipse 70% 80% at 30% 60%, rgba(124,77,255,0.07) 0%, transparent 70%),
              radial-gradient(ellipse 40% 50% at 70% 30%, rgba(0,188,212,0.04) 0%, transparent 60%);
}
.page-hero h1 { color: var(--text-primary); }

/* QUOTE FORM (inside dark CTA sections — keep white) */
.quote-form-wrap h3 { color: #fff; }

/* FOOTER — stay dark; restore dark-theme vars inside it */
#site-footer {
  --text-primary: #FFFFFF;
  --text-muted: #B8A9D9;
}
#site-footer .footer-col a:hover { color: #fff; }

/* Service page crew circle */
.sp-crew-circle-wrap {
  position: relative;
  width: 210px;
  height: 210px;
  flex-shrink: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(124,77,255,0.9), 0 0 28px 8px rgba(124,77,255,0.45);
  animation: spCrewGlow 3s ease-in-out infinite;
}
.sp-crew-circle-wrap::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #7C4DFF 0%, #00BCD4 40%, #a78bff 70%, #7C4DFF 100%);
  animation: spCrewRingSpin 5s linear infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes spCrewGlow {
  0%, 100% { box-shadow: 0 0 0 4px rgba(124,77,255,0.9), 0 0 20px 6px rgba(124,77,255,0.4); }
  50%       { box-shadow: 0 0 0 4px rgba(124,77,255,1),   0 0 36px 14px rgba(124,77,255,0.65); }
}
@keyframes spCrewRingSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.sp-crew-circle-img {
  position: relative;
  z-index: 1;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  box-shadow: 0 0 0 4px var(--surface-base);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.sp-crew-circle-wrap:hover .sp-crew-circle-img {
  transform: scale(1.07);
}

/* Mobile section spacing */
@media (max-width: 767px) {
  #services, #why-us, #how-it-works, #reviews, #service-areas,
  #book, #cta-section, .page-content { padding-top: 36px; padding-bottom: 36px; }
  .section-container { padding-left: 18px; padding-right: 18px; }
  .section-header { margin-bottom: 24px; }
  .section-subtext { font-size: 0.9rem; }
  .hero-content { padding-top: 48px; padding-bottom: 36px; }
  .cta-inner { padding: 40px 20px; }
  .loc-about-grid { grid-template-columns: 1fr !important; }
  .sp-heroes-grid { grid-template-columns: 1fr !important; }
  .sp-heroes-grid > div:last-child { order: -1; }
  .why-pillar p { display: none; }
  .why-pillar {
    padding: 18px 20px;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 4px 16px;
  }
  .why-accent-line { display: none; }
  .why-icon {
    grid-column: 1;
    grid-row: 1 / -1;
    align-self: center;
    justify-self: center;
    margin-bottom: 0;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }
  .why-pillar h3 { grid-column: 2; align-self: center; margin: 0; }
  .loc-about-grid img { order: -1; aspect-ratio: 1/1 !important; max-height: 360px; object-position: top; }
}

/* Content protection */
img { -webkit-touch-callout: none; -webkit-user-drag: none; user-select: none; }
