@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Quicksand:wght@400;500;600;700&display=swap');

:root {
  /* Colors */
  --primary: #1a4980;         /* Deep Blue from logo */
  --primary-light: #2563eb;
  --primary-soft: #eff6ff;
  --secondary: #f59e0b;       /* Golden yellow */
  --secondary-light: #fef3c7;
  --accent: #f97316;          /* Orange */
  --accent-soft: #fff7ed;
  --success: #10b981;         /* Grass Green */
  --sky-blue: #38bdf8;        /* Sky/water blue */
  --sky-blue-light: #e0f2fe;  /* Bubble background */
  --bg-main: #f8fafc;
  --card-bg: #ffffff;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  --navy: #1a4980;
  --border-color: #e2e8f0;
  
  /* Fonts */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Quicksand', sans-serif;

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 20px -5px rgba(26, 73, 128, 0.08), 0 8px 16px -6px rgba(26, 73, 128, 0.08);
  --shadow-lg: 0 20px 35px -10px rgba(26, 73, 128, 0.15), 0 12px 20px -8px rgba(26, 73, 128, 0.12);
  --shadow-inset: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--primary);
}

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

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

/* Scroll Progress Bar */
#scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: transparent;
  z-index: 2000;
}

#scroll-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(to right, var(--sky-blue), var(--accent));
  border-radius: 0 var(--radius-full) var(--radius-full) 0;
  transition: width 0.1s ease-out;
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-padding {
  padding: 100px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--sky-blue-light);
  color: var(--primary);
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.badge-orange {
  background-color: var(--accent-soft);
  color: var(--accent);
}

.badge-green {
  background-color: #ecfdf5;
  color: var(--success);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-title span {
  color: var(--accent);
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 60px auto;
  font-size: 1.15rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(26, 73, 128, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 73, 128, 0.4);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.btn-secondary:hover {
  background-color: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary-soft);
  transform: translateY(-2px);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  pointer-events: none;
  transition: all var(--transition-normal);
}

header.scrolled {
  top: 8px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 960px;
  width: calc(100% - 32px);
  margin: 0 auto;
  padding: 8px 20px;
  background-color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px -10px rgba(26, 73, 128, 0.08);
  pointer-events: auto;
  transition: all var(--transition-normal);
}

header.scrolled .nav-container {
  padding: 6px 16px;
  background-color: rgba(255, 255, 255, 0.9);
  border-color: rgba(26, 73, 128, 0.12);
  box-shadow: 0 12px 35px -8px rgba(26, 73, 128, 0.14);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 38px;
  width: 38px;
  object-fit: cover;
  border-radius: var(--radius-full);
  border: 2px solid var(--primary-soft);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.logo-link:hover .logo-img {
  border-color: var(--accent);
  transform: rotate(-10deg) scale(1.08);
}

.logo-text {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
  transition: color var(--transition-fast);
}

.logo-link:hover .logo-text {
  color: var(--primary-light);
}

.logo-text span {
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-weight: 600;
  color: var(--text-dark);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  transition: all var(--transition-normal);
  position: relative;
}

.nav-links a::after {
  display: none !important;
}

.nav-links a:hover {
  background-color: var(--primary-soft);
  color: var(--primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background-color: var(--bg-main);
  color: var(--text-dark);
  transition: all var(--transition-normal);
}

.phone-cta:hover {
  background-color: var(--primary-soft);
  color: var(--primary);
  border-color: rgba(26, 73, 128, 0.2);
  transform: translateY(-1px);
}

.phone-cta svg {
  fill: currentColor;
  width: 14px;
  height: 14px;
  animation: wiggle 2s infinite;
  transition: transform var(--transition-normal);
}

.phone-cta:hover svg {
  animation: none;
  transform: rotate(15deg) scale(1.15);
}

#nav-book-btn {
  padding: 8px 16px;
  font-size: 0.88rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  box-shadow: 0 4px 12px rgba(26, 73, 128, 0.15);
  transition: all var(--transition-normal);
}

#nav-book-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 18px rgba(26, 73, 128, 0.25);
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0); }
  10%, 30% { transform: rotate(-10deg); }
  20%, 40% { transform: rotate(10deg); }
  50% { transform: rotate(0); }
}

@media (max-width: 768px) {
  .logo-text {
    font-size: 1.15rem;
  }
  .logo-img {
    height: 34px;
    width: 34px;
  }
  .phone-cta {
    width: 34px;
    height: 34px;
  }
  #nav-book-btn {
    padding: 6px 12px;
    font-size: 0.82rem;
  }
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--sky-blue-light) 0%, #eff6ff 100%);
  padding: 100px 0 120px 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero h1 {
  font-size: 3.8rem;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.hero h1 span.highlight {
  color: var(--accent);
  position: relative;
}

.hero h1 span.highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(245, 158, 11, 0.25);
  z-index: -1;
  border-radius: var(--radius-full);
}

.hero-desc {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-features {
  display: flex;
  gap: 24px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
}

.hero-feature-item svg {
  width: 20px;
  height: 20px;
  color: var(--success);
}

.hero-image-container {
  position: relative;
  z-index: 10;
}

.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid white;
  transform: rotate(2deg);
  transition: transform var(--transition-normal);
}

.hero-img-wrapper:hover {
  transform: rotate(0) scale(1.02);
}

.hero-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-badge-overlay {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background-color: white;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: rotate(-4deg);
  z-index: 20;
}

.hero-badge-circle {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: var(--secondary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.hero-badge-text h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.hero-badge-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Bubbles & Floating Background Elements */
.bubble-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.bubble {
  position: absolute;
  bottom: -60px;
  background-color: rgba(56, 189, 248, 0.15);
  border-radius: var(--radius-full);
  animation: rise 12s infinite ease-in;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.bubble::after {
  content: '';
  position: absolute;
  top: 15%;
  left: 15%;
  width: 25%;
  height: 25%;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-full);
}

@keyframes rise {
  0% {
    transform: translateY(0) scale(0.6) rotate(0deg);
    opacity: 0;
    left: var(--start-x);
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-110vh) scale(1.2) rotate(360deg);
    opacity: 0;
    left: var(--end-x);
  }
}

/* Floating Paw Print SVG */
.floating-paw {
  position: absolute;
  color: rgba(26, 73, 128, 0.04);
  pointer-events: none;
  z-index: 1;
}

/* Waves Page Divider */
.wave-divider {
  position: relative;
  width: 100%;
  height: 50px;
  margin-top: -50px;
  z-index: 10;
  pointer-events: none;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: var(--bg-main);
}

/* Mascot Section */
.mascot-section {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.mascot-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.mascot-image {
  position: relative;
  display: flex;
  justify-content: center;
  cursor: pointer;
}

.mascot-circle-bg {
  width: 320px;
  height: 320px;
  background-color: var(--secondary-light);
  border-radius: var(--radius-full);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 6px dashed var(--secondary);
  transition: all var(--transition-normal);
}

.mascot-circle-bg:hover {
  transform: scale(1.03) rotate(3deg);
  border-color: var(--accent);
}

.mascot-circle-bg img {
  width: 85%;
  height: auto;
  border-radius: var(--radius-full);
}

.mascot-badge {
  position: absolute;
  bottom: 0;
  right: 10px;
  background-color: var(--accent);
  color: white;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transform: rotate(5deg);
  font-size: 0.9rem;
  pointer-events: none;
}

.speech-bubble {
  position: relative;
  background-color: var(--primary-soft);
  border: 2px solid rgba(37, 99, 235, 0.1);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.speech-bubble::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 60px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 20px 15px 0;
  border-color: transparent var(--primary-soft) transparent transparent;
  z-index: 10;
}

.speech-bubble::after {
  content: '';
  position: absolute;
  left: -23px;
  top: 59px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 22px 16px 0;
  border-color: transparent rgba(37, 99, 235, 0.1) transparent transparent;
  z-index: 5;
}

.mascot-quote {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 20px;
}

.mascot-text {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.mascot-certs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: white;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  border: 1px solid var(--border-color);
}

/* Before & After Interactive Slider */
.slider-section {
  background-color: var(--bg-main);
}

.slider-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.slider-tab-btn {
  background-color: white;
  border: 2px solid var(--border-color);
  color: var(--text-muted);
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}

.slider-tab-btn:hover {
  border-color: var(--sky-blue);
  color: var(--primary);
}

.slider-tab-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.slider-card {
  max-width: 900px;
  margin: 0 auto;
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}

.slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  user-select: none;
  box-shadow: var(--shadow-inner);
}

.slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.4s ease-in-out;
}

.slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-image.image-before {
  z-index: 10;
  clip-path: inset(0 0 0 50%); /* Start chopped in half */
}

.slider-image.image-after {
  z-index: 5;
}

.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: white;
  z-index: 20;
  cursor: ew-resize;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.slider-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background-color: var(--primary);
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  border: 4px solid white;
  font-size: 1.4rem;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.slider-handle:hover .slider-handle-button {
  background-color: var(--accent);
  transform: translate(-50%, -50%) scale(1.05);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  padding: 0 8px;
}

.slider-label {
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.label-dirty {
  color: var(--accent);
}

.label-clean {
  color: var(--success);
}

/* Services Section */
.services-section {
  background-color: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.service-card {
  background-color: var(--bg-main);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  background-color: white;
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sky-blue-light);
}

.service-icon {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-md);
  background-color: var(--sky-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
  font-size: 1.8rem;
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
  background-color: var(--primary);
  color: white;
  transform: scale(1.05) rotate(-5deg);
}

.service-title {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-price-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  font-weight: 700;
}

.price-label {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.price-value {
  color: var(--primary);
  font-size: 1.15rem;
}

.service-card:hover .price-value {
  color: var(--accent);
}

/* Why Choose Us Section */
.why-section {
  position: relative;
  background-color: var(--primary-soft);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.why-card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast);
}

.why-card:hover {
  transform: translateY(-5px);
}

.why-circle {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background-color: #ecfdf5;
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  font-size: 2rem;
}

.why-circle.accent-bg {
  background-color: var(--accent-soft);
  color: var(--accent);
}

.why-circle.blue-bg {
  background-color: var(--sky-blue-light);
  color: var(--primary);
}

.why-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Quote Calculator Section */
.calculator-section {
  background-color: white;
}

.calculator-card {
  max-width: 850px;
  margin: 0 auto;
  background-color: var(--bg-main);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

/* Wizard Steps Navigation */
.calc-nav-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

.calc-nav-steps::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 10%;
  right: 10%;
  height: 4px;
  background-color: var(--border-color);
  z-index: 1;
}

.calc-nav-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.calc-nav-circle {
  width: 40px;
  height: 40px;
  background-color: white;
  border: 3px solid var(--border-color);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.calc-nav-step.active .calc-nav-circle {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 0 0 5px var(--primary-soft);
}

.calc-nav-step.completed .calc-nav-circle {
  background-color: var(--success);
  border-color: var(--success);
  color: white;
}

.calc-nav-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

.calc-nav-step.active .calc-nav-text {
  color: var(--primary);
}

/* Wizard Panels switcher */
.calc-panel {
  display: none;
  animation: fadeIn 0.4s ease-out;
}

.calc-panel.active {
  display: block;
}

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

.calc-step h3 {
  font-size: 1.45rem;
  margin-bottom: 24px;
  color: var(--primary);
}

/* Service Options Grid */
.calc-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.calc-service-item {
  position: relative;
  background-color: white;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  user-select: none;
}

.calc-service-item:hover {
  border-color: var(--sky-blue);
  transform: translateY(-2px);
}

.calc-service-item.active {
  border-color: var(--primary);
  background-color: var(--primary-soft);
  box-shadow: var(--shadow-sm);
}

.calc-service-checkbox {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  border: 2px solid var(--border-color);
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.calc-service-checkbox::after {
  content: '✓';
  color: white;
  font-size: 0.8rem;
  font-weight: 800;
  display: none;
}

.calc-service-item.active .calc-service-checkbox {
  background-color: var(--primary);
  border-color: var(--primary);
}

.calc-service-item.active .calc-service-checkbox::after {
  display: block;
}

.calc-service-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.calc-service-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
}

/* Slider Style */
.slider-group {
  background-color: white;
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.slider-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-weight: 700;
}

.slider-label-row span {
  font-size: 1.15rem;
  color: var(--primary);
}

.slider-val {
  background-color: var(--primary-soft);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  color: var(--primary);
  font-size: 1.1rem;
}

.input-slider-wrapper {
  position: relative;
  padding: 10px 0;
}

.calc-range-input {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--border-color);
  outline: none;
  transition: background var(--transition-fast);
}

/* Custom Paw-print thumb */
.calc-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background-color: var(--secondary);
  border: 3px solid white;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), background-color var(--transition-fast);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231a4980'%3E%3Cpath d='M12 14c-1.66 0-3 1.34-3 3 0 2 2 3.5 3 3.5s3-1.5 3-3.5c0-1.66-1.34-3-3-3zm-4.5-2.5c-.83 0-1.5-.67-1.5-1.5 0-1.33 1.17-2 2-2s1.5.67 1.5 1.5c0 .83-.67 1.5-1.5 1.5-.17 0-.34-.03-.5-.08-.16.05-.33.08-.5.08zm9 0c-.83 0-1.5-.67-1.5-1.5 0-1.33 1.17-2 2-2s1.5.67 1.5 1.5c0 .83-.67 1.5-1.5 1.5-.17 0-.34-.03-.5-.08-.16.05-.33.08-.5.08zm-8-5C8 5.67 7.33 5 6.5 5S5 5.67 5 6.5s.67 1.5 1.5 1.5S8 7.33 8 6.5zm8 0c0-.83-.67-1.5-1.5-1.5S13 5.67 13 6.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5z'/%3E%3C/svg%3E");
  background-size: 20px 20px;
  background-position: center;
  background-repeat: no-repeat;
}

.calc-range-input::-webkit-slider-thumb:hover {
  background-color: var(--accent);
  transform: scale(1.15);
}

.calc-range-input::-moz-range-thumb {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background-color: var(--secondary);
  border: 3px solid white;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), background-color var(--transition-fast);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231a4980'%3E%3Cpath d='M12 14c-1.66 0-3 1.34-3 3 0 2 2 3.5 3 3.5s3-1.5 3-3.5c0-1.66-1.34-3-3-3zm-4.5-2.5c-.83 0-1.5-.67-1.5-1.5 0-1.33 1.17-2 2-2s1.5.67 1.5 1.5c0 .83-.67 1.5-1.5 1.5-.17 0-.34-.03-.5-.08-.16.05-.33.08-.5.08zm9 0c-.83 0-1.5-.67-1.5-1.5 0-1.33 1.17-2 2-2s1.5.67 1.5 1.5c0 .83-.67 1.5-1.5 1.5-.17 0-.34-.03-.5-.08-.16.05-.33.08-.5.08zm-8-5C8 5.67 7.33 5 6.5 5S5 5.67 5 6.5s.67 1.5 1.5 1.5S8 7.33 8 6.5zm8 0c0-.83-.67-1.5-1.5-1.5S13 5.67 13 6.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5z'/%3E%3C/svg%3E");
  background-size: 20px 20px;
  background-position: center;
  background-repeat: no-repeat;
}

.calc-range-input::-moz-range-thumb:hover {
  background-color: var(--accent);
  transform: scale(1.15);
}

/* Coupon & Detailed breakdown */
.coupon-container {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.coupon-input {
  flex-grow: 1;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-color);
  font-size: 1rem;
  outline: none;
}

.coupon-input:focus {
  border-color: var(--primary);
}

.coupon-btn {
  background-color: var(--primary);
  color: white;
  font-weight: 700;
  padding: 0 24px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.coupon-btn:hover {
  background-color: var(--primary-light);
}

.coupon-status {
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: -16px;
  margin-bottom: 16px;
}

.coupon-status.success {
  color: var(--success);
}

.coupon-status.error {
  color: var(--accent);
}

.calc-breakdown {
  background-color: white;
  border: 1px dashed var(--primary-light);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 28px;
  text-align: left;
}

.calc-breakdown-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.calc-breakdown-row.total-row {
  border-top: 1.5px solid var(--border-color);
  padding-top: 12px;
  font-weight: 800;
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 0;
}

.discount-value {
  color: var(--success);
  font-weight: 700;
}

/* Wizard control buttons */
.calc-nav-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}

/* Results Card */
.calc-results {
  background-color: var(--primary);
  border-radius: var(--radius-md);
  padding: 32px;
  color: white;
  text-align: center;
  margin-top: 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.calc-results-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 20px 20px;
}

.calc-results h4 {
  color: var(--secondary);
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.calc-price-range {
  font-family: var(--font-headings);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.calc-cta-text {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Accordion Section */
.faq-section {
  background-color: var(--primary-soft);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background-color: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast);
}

.accordion-item:hover {
  border-color: var(--sky-blue);
}

.accordion-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  cursor: pointer;
  user-select: none;
}

.accordion-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background-color: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.accordion-item.active .accordion-icon {
  background-color: var(--primary);
  color: white;
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
}

.accordion-content-inner {
  padding: 0 24px 24px 24px;
  color: var(--text-muted);
  font-size: 1rem;
  border-top: 1px solid transparent;
}

.accordion-item.active .accordion-content-inner {
  border-color: var(--border-color);
}

/* Testimonials */
.testimonials-section {
  background-color: var(--bg-main);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.review-card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  flex-direction: column;
}

.review-card::before {
  content: '“';
  position: absolute;
  top: 15px;
  right: 30px;
  font-size: 6rem;
  color: rgba(26, 73, 128, 0.05);
  font-family: serif;
  line-height: 1;
}

.star-rating {
  color: var(--secondary);
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.review-text {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 24px;
  flex-grow: 1;
  font-style: italic;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviewer-avatar-wrapper {
  position: relative;
}

.reviewer-avatar {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2.5px solid var(--sky-blue-light);
}

.reviewer-pet-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background-color: var(--secondary);
  color: var(--primary);
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  border: 1.5px solid white;
}

.reviewer-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
}

.reviewer-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Contact / Booking Form Section */
.contact-section {
  background-color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-detail-circle {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background-color: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-detail-text h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: var(--text-muted);
}

.contact-detail-text p {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0;
}

.service-area-badge {
  background-color: #ecfdf5;
  border: 1.5px solid var(--success);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #065f46;
}

.service-area-badge svg {
  color: var(--success);
  width: 24px;
  height: 24px;
}

/* Booking Form */
.booking-form-card {
  background-color: var(--bg-main);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.booking-form-card h3 {
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-color);
  background-color: white;
  font-size: 0.98rem;
  outline: none;
  transition: all var(--transition-fast);
  color: var(--text-dark);
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

textarea.form-input {
  resize: vertical;
  min-height: 100px;
}

/* Form Success Modal */
.form-success-alert {
  background-color: #ecfdf5;
  border: 1.5px solid var(--success);
  color: #065f46;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Footer */
footer {
  background-color: var(--primary);
  color: white;
  padding: 80px 0 40px 0;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  border-radius: var(--radius-full);
  background-color: white;
  padding: 2px;
}

.footer-logo-text {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.footer-logo-text span {
  color: var(--secondary);
}

.footer-brand p {
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer-heading {
  font-size: 1.15rem;
  color: var(--secondary);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--sky-blue);
  border-radius: var(--radius-full);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  opacity: 0.8;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.85;
  font-size: 0.95rem;
}

.footer-contact-item svg {
  fill: currentColor;
  width: 18px;
  height: 18px;
  color: var(--secondary);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.88rem;
  opacity: 0.75;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  color: white;
}

.social-icon:hover {
  background-color: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Mobile Responsive Adjustments */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero-grid, .mascot-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-image-container {
    max-width: 500px;
    margin: 0 auto;
  }
  .mascot-image {
    order: -1;
  }
  .speech-bubble::before {
    left: 50%;
    top: -20px;
    transform: rotate(90deg) translateX(-50%);
  }
  .speech-bubble::after {
    left: 50%;
    top: -23px;
    transform: rotate(90deg) translateX(-50%);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  .nav-links {
    display: none; /* Hide on mobile - simplified for landing page */
  }
  .menu-toggle {
    display: block;
  }
  .form-group-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .calculator-card {
    padding: 24px;
  }
}

/* Custom SVG Icon Styling */
svg.icon-inline {
  width: 1.2em;
  height: 1.2em;
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
}
svg.icon-inline-stroke {
  width: 1.2em;
  height: 1.2em;
  display: inline-block;
  vertical-align: middle;
  stroke: currentColor;
  fill: none;
}
.service-icon svg {
  width: 36px;
  height: 36px;
  stroke: currentColor;
  fill: none;
  transition: all var(--transition-normal);
}
.why-circle svg {
  width: 36px;
  height: 36px;
  stroke: currentColor;
  fill: none;
}
.calc-service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.calc-service-icon svg {
  width: 36px;
  height: 36px;
  stroke: currentColor;
  fill: none;
}
.badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  margin-left: -8px;
}
.badge-icon svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}
.star-rating {
  display: flex;
  gap: 4px;
  color: var(--secondary);
}
.star-rating svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.reviewer-pet-badge svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
}
.contact-detail-circle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
}
.cert-item svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.slider-tab-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

/* ==========================================================================
   AUTOBIDDER HEADLESS INTEGRATION STYLES
   ========================================================================== */

.ab-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(30, 27, 75, 0.08);
  padding: 40px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  max-width: 720px;
  margin: 0 auto;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.ab-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  text-align: center;
}

.ab-spinner {
  width: 56px;
  height: 56px;
  border: 5px solid var(--primary-light);
  border-top: 5px solid var(--primary);
  border-radius: var(--radius-full);
  animation: ab-spin 1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  margin-bottom: 24px;
}

@keyframes ab-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.ab-loader p {
  color: var(--text-light);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.ab-hidden {
  display: none !important;
}

.ab-error-box {
  text-align: center;
  padding: 40px 20px;
}

.ab-error-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

.ab-error-box h4 {
  color: #ef4444;
  margin-bottom: 12px;
  font-size: 1.4rem;
  font-weight: 800;
}

.ab-error-box p {
  color: var(--text-light);
  font-size: 1rem;
}

.ab-header {
  margin-bottom: 35px;
  position: relative;
}

.ab-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}

.ab-header h3 {
  color: var(--navy);
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.ab-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.5;
}

.ab-btn-back {
  background: none;
  border: none;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 0;
  margin-bottom: 20px;
  transition: all 0.2s ease;
}

.ab-btn-back:hover {
  transform: translateX(-4px);
  color: var(--navy);
}

/* Dynamic Step Progress Indicator */
.ab-progress-bar-container {
  width: 100%;
  height: 6px;
  background: #f1f5f9;
  border-radius: var(--radius-full);
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
}

.ab-progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-full);
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Services Selection Card Grid */
.ab-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 35px;
}

@media (max-width: 576px) {
  .ab-services-grid {
    grid-template-columns: 1fr;
  }
}

.ab-service-card {
  background: #ffffff;
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.ab-service-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.06);
}

.ab-service-card.ab-selected {
  border-color: var(--primary);
  background: var(--primary-light);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.1);
}

.ab-service-icon {
  width: 64px;
  height: 64px;
  background: var(--bg-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
}

.ab-service-card:hover .ab-service-icon {
  background: var(--primary-light);
  transform: scale(1.08);
}

.ab-service-card.ab-selected .ab-service-icon {
  background: #ffffff;
  border-color: var(--primary);
}

.ab-service-info h4 {
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 6px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.ab-service-info p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.4;
}

/* Fields Generator Container */
.ab-fields-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 35px;
}

.ab-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 576px) {
  .ab-form-row {
    grid-template-columns: 1fr;
  }
}

.ab-form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.3s ease;
}

.ab-label {
  font-weight: 800;
  color: var(--navy);
  font-size: 0.95rem;
  letter-spacing: -0.1px;
}

.ab-select,
.ab-input {
  width: 100%;
  padding: 15px 18px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1.02rem;
  color: var(--text-color);
  background: var(--bg-color);
  outline: none;
  box-sizing: border-box;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ab-select:focus,
.ab-input:focus {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
}

.ab-input-error {
  border-color: #ef4444 !important;
  background: #fef2f2 !important;
}

.ab-select-wrapper {
  position: relative;
}

.ab-select-wrapper::after {
  content: '▼';
  font-size: 0.72rem;
  color: var(--text-light);
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.ab-select {
  appearance: none;
  padding-right: 44px;
}

/* Button & Action Actions */
.ab-actions {
  margin-top: 15px;
}

.ab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-weight: 800;
  font-size: 1.08rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  outline: none;
  border: none;
  font-family: inherit;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  gap: 8px;
  box-sizing: border-box;
}

.ab-btn-primary {
  background: var(--primary);
  color: #ffffff;
}

.ab-btn-primary:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.25);
}

.ab-btn-primary:disabled {
  background: var(--text-light);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.ab-btn-outline {
  background: #ffffff;
  color: var(--navy);
  border: 2px solid var(--border-color);
}

.ab-btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-2px);
}

.ab-btn-full {
  width: 100%;
}

.ab-btn-sm {
  padding: 10px 20px;
  font-size: 0.92rem;
}

.ab-btn-spinner {
  width: 22px;
  height: 22px;
  border: 3.5px solid rgba(255, 255, 255, 0.3);
  border-top: 3.5px solid #ffffff;
  border-radius: var(--radius-full);
  animation: ab-spin 0.6s linear infinite;
}

/* Pricing Results Display Card */
.ab-price-display-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #ffffff;
  padding: 35px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 35px;
  box-shadow: 0 15px 35px rgba(30, 27, 75, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ab-price-label {
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--secondary);
  letter-spacing: 1.5px;
}

.ab-price-value {
  font-size: 4rem;
  font-weight: 900;
  margin: 12px 0;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  letter-spacing: -1px;
}

.ab-breakdown-box {
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  margin-top: 25px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ab-breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.ab-breakdown-row.ab-discount {
  color: #34d399;
  font-weight: 800;
}

.ab-price-disclaimer {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 20px;
  line-height: 1.5;
}

/* Packages Tiers Selection list */
.ab-packages-section,
.ab-upsells-section {
  margin-bottom: 35px;
}

.ab-packages-section h4,
.ab-upsells-section h4 {
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.ab-packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 576px) {
  .ab-packages-grid {
    grid-template-columns: 1fr;
  }
}

.ab-package-card {
  background: #ffffff;
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 26px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  position: relative;
}

.ab-package-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.ab-package-card.ab-package-active {
  border-color: var(--primary);
  background: var(--primary-light);
  box-shadow: 0 12px 24px rgba(79, 70, 229, 0.08);
}

.ab-package-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.ab-package-header h5 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.2px;
}

.ab-package-price {
  font-weight: 900;
  color: var(--primary);
  font-size: 1.35rem;
  letter-spacing: -0.5px;
}

.ab-package-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.45;
  margin-bottom: 20px;
}

.ab-package-select-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.88rem;
  background: #ffffff;
  color: var(--navy);
  border: 1.5px solid var(--border-color);
  text-align: center;
  transition: all 0.2s ease;
}

.ab-package-card.ab-package-active .ab-package-select-pill {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

/* Upsell checklists */
.ab-upsells-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ab-upsell-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #ffffff;
  border: 1.8px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.ab-upsell-item:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-1px);
}

.ab-upsell-checkbox {
  width: 22px;
  height: 22px;
  accent-color: var(--primary);
  cursor: pointer;
}

.ab-upsell-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.ab-upsell-title {
  font-weight: 800;
  color: var(--navy);
  font-size: 1rem;
}

.ab-upsell-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 4px;
}

.ab-upsell-price {
  font-weight: 900;
  color: var(--navy);
  font-size: 1.1rem;
  letter-spacing: -0.2px;
}

.ab-actions-stacked {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ab-actions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* Calendar & Slots list area */
.ab-slots-scroll-area {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 8px;
  margin-bottom: 12px;
}

.ab-date-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ab-date-header {
  font-weight: 800;
  color: var(--navy);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 6px;
}

.ab-time-chips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
}

.ab-time-chip {
  background: var(--bg-color);
  border: 1.8px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  text-align: center;
  outline: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ab-time-chip:hover {
  background: #ffffff;
  border-color: var(--primary);
  transform: translateY(-1px);
}

.ab-time-chip.ab-chip-selected {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
}

.ab-warning-box {
  background: #fffbeb;
  border: 1.8px solid #fef3c7;
  border-radius: 12px;
  padding: 18px;
  color: #b45309;
  font-size: 0.92rem;
  line-height: 1.55;
}

/* Success Card details */
.ab-success-card {
  text-align: center;
  padding: 30px 10px;
}

.ab-success-icon {
  width: 70px;
  height: 70px;
  background: #d1fae5;
  color: #10b981;
  font-size: 2.2rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.ab-success-card h3 {
  color: var(--navy);
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.ab-success-card p {
  color: var(--text-light);
  line-height: 1.5;
}

.ab-success-slot-box {
  background: var(--bg-color);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 20px;
  max-width: 400px;
  margin: 25px auto 0;
  text-align: left;
}

.ab-success-slot-box h5 {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ab-success-slot-box p {
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--text-color);
}

.ab-success-slot-box p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   FLOATING CHAT WIDGET STYLES
   ========================================================================== */

#waffles-chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  font-family: inherit;
}

/* Floating Trigger Button */
.chat-trigger {
  background: var(--secondary);
  color: var(--navy);
  border: none;
  outline: none;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-trigger:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.chat-trigger-icon {
  font-size: 1.25rem;
}

/* Chat Window Box */
.chat-window-box {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 380px;
  height: 520px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(30, 27, 75, 0.15);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-window-box.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

@media (max-width: 480px) {
  #waffles-chat-widget {
    right: 15px;
    bottom: 15px;
    left: 15px;
  }
  .chat-trigger {
    width: 100%;
    justify-content: center;
  }
  .chat-window-box {
    width: auto;
    left: 0;
    right: 0;
    height: calc(100vh - 110px);
    bottom: 65px;
  }
}

/* Chat Header */
.chat-header {
  color: #ffffff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.chat-header-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.chat-header-info h5 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 2px 0;
  color: #ffffff;
}

.chat-header-info span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.chat-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.8rem;
  cursor: pointer;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  padding: 0;
  line-height: 1;
}

.chat-close:hover {
  opacity: 1;
}

/* Message Area */
.chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-msg {
  display: flex;
  max-width: 85%;
}

.chat-msg.assistant {
  align-self: flex-start;
}

.chat-msg.user {
  align-self: flex-end;
}

.msg-bubble {
  padding: 12px 16px;
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  line-height: 1.4;
}

.chat-msg.assistant .msg-bubble {
  background: #ffffff;
  color: var(--navy);
  border-bottom-left-radius: var(--radius-sm);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border-color);
}

.chat-msg.user .msg-bubble {
  background: var(--navy);
  color: #ffffff;
  border-bottom-right-radius: var(--radius-sm);
}

.chat-msg.error-bubble .msg-bubble {
  background: #fef2f2;
  color: #ef4444;
  border-color: #fee2e2;
}

/* Quick option pill buttons */
.chat-quick-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: flex-start;
  max-width: 90%;
  margin-top: -6px;
  padding-left: 5px;
}

.chat-option-btn {
  background: #ffffff;
  border: 1.5px solid var(--secondary);
  color: var(--navy);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chat-option-btn:hover {
  background: var(--secondary-light);
  transform: translateY(-1px);
}

/* Input Area */
.chat-input-wrapper {
  padding: 12px 16px;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 10px;
}

.chat-text-input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  background: var(--bg-color);
  transition: all 0.2s ease;
}

.chat-text-input:focus {
  border-color: var(--secondary);
  background: #ffffff;
}

.chat-send {
  color: #ffffff;
  border: none;
  outline: none;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.chat-send:hover {
  opacity: 0.9;
}

/* Typing indicator */
.typing-indicator-dots {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 12px;
}

.typing-indicator-dots span {
  width: 6px;
  height: 6px;
  background: var(--text-light);
  border-radius: var(--radius-full);
  animation: typing-bounce 1.4s infinite ease-in-out both;
}

.typing-indicator-dots span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing-bounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}


.ab-service-icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

/* Custom Chat Header Image Avatar */
.chat-header-img-avatar {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

/* Chat Structured Content Container */
.chat-structured-container {
  align-self: flex-start;
  width: 100%;
  max-width: 90%;
  margin-top: -6px;
  padding: 2px 5px;
}

/* Inline Question Input Form */
.chat-inline-form {
  display: flex;
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.chat-inline-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 14px;
  font-size: 0.85rem;
  font-family: inherit;
}

.chat-inline-submit {
  background: var(--navy);
  color: #ffffff;
  border: none;
  outline: none;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.chat-inline-submit:hover {
  opacity: 0.9;
}

/* Service Choices Grid & Card */
.chat-services-choices-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 5px;
}

.chat-service-choice-card {
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.23s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-service-choice-card:hover {
  transform: translateY(-2px);
  border-color: var(--secondary);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.12);
}

.chat-service-choice-icon {
  font-size: 1.8rem;
  width: 44px;
  height: 44px;
  background: var(--bg-color);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-service-choice-info h6 {
  font-size: 0.9rem;
  margin: 0 0 3px 0;
  font-weight: 800;
  color: var(--navy);
}

.chat-service-choice-info p {
  font-size: 0.75rem;
  margin: 0;
  color: var(--text-light);
  line-height: 1.3;
}

/* Lead Capture Form */
.chat-lead-form {
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.chat-lead-header {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 6px;
}

.chat-lead-field {
  margin-bottom: 10px;
}

.chat-lead-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 4px;
}

.chat-lead-field input {
  width: 100%;
  padding: 8px 12px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-family: inherit;
  outline: none;
  background: var(--bg-color);
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.chat-lead-field input:focus {
  border-color: var(--secondary);
  background: #ffffff;
}

.chat-lead-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.chat-lead-submit-btn {
  width: 100%;
  background: var(--secondary);
  color: var(--navy);
  border: none;
  outline: none;
  padding: 10px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 0.82rem;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s ease;
}

.chat-lead-submit-btn:hover {
  background: #f59e0b;
}

/* Scheduler Styles */
.chat-action-accent-btn {
  background: var(--navy);
  color: #ffffff;
  border: none;
  outline: none;
  padding: 12px 16px;
  border-radius: var(--radius-lg);
  font-weight: 800;
  font-size: 0.88rem;
  width: 100%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(30, 27, 75, 0.2);
  transition: transform 0.2s ease;
}

.chat-action-accent-btn:hover {
  transform: translateY(-2px);
}

.chat-scheduler-status-box {
  background: #fffbeb;
  border: 1px solid #fef3c7;
  color: #b45309;
  padding: 12px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  line-height: 1.4;
}

.chat-scheduler-prompt {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-color);
}

.chat-day-chips-grid, .chat-time-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.chat-day-chip, .chat-time-chip {
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  color: var(--navy);
  padding: 6px 10px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chat-day-chip:hover, .chat-time-chip:hover {
  border-color: var(--secondary);
  background: var(--secondary-light);
}

.chat-scheduler-more-days {
  background: none;
  border: none;
  color: var(--secondary);
  font-weight: 800;
  font-size: 0.76rem;
  cursor: pointer;
  padding: 4px 0;
  text-decoration: underline;
}

/* Confirmation Box */
.chat-confirm-box {
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.chat-confirm-box h5 {
  font-size: 0.88rem;
  font-weight: 800;
  margin: 0 0 6px 0;
  color: var(--navy);
}

.chat-confirm-box p {
  font-size: 0.8rem;
  color: var(--text-color);
  margin: 0 0 12px 0;
}

.chat-confirm-actions {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 8px;
}

.chat-confirm-yes-btn {
  background: var(--navy);
  color: #ffffff;
  border: none;
  outline: none;
  padding: 8px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
}

.chat-confirm-no-btn {
  background: #f1f5f9;
  color: var(--text-color);
  border: none;
  outline: none;
  padding: 8px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
}

/* Upsells & Discounts Container */
.chat-upsells-title, .chat-discounts-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.chat-upsells-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.chat-upsell-toggle-btn {
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  padding: 10px 12px;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chat-upsell-toggle-btn:hover {
  border-color: var(--secondary);
  background: var(--secondary-light);
}

.chat-upsell-toggle-btn span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
}

.chat-upsell-toggle-btn strong {
  font-size: 0.8rem;
  color: #10b981;
}

.chat-discounts-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chat-discount-chip-btn {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  padding: 6px 10px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.chat-discount-chip-btn:hover {
  transform: scale(1.02);
}

/* Real-time Map Scanner Mockup UI */
.chat-map-box {
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.chat-map-satellite-view {
  height: 110px;
  background-image: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 25%, transparent 25%), 
                    linear-gradient(225deg, rgba(16, 185, 129, 0.1) 25%, transparent 25%), 
                    linear-gradient(45deg, rgba(16, 185, 129, 0.1) 25%, transparent 25%), 
                    linear-gradient(315deg, rgba(16, 185, 129, 0.1) 25%, #0f172a 25%);
  background-size: 20px 20px;
  position: relative;
  overflow: hidden;
}

.chat-map-label {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(15, 23, 42, 0.75);
  color: #10b981;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.chat-map-crosshair {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-full);
  transform: translate(-50%, -50%);
}

.chat-map-crosshair::before, .chat-map-crosshair::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
}

.chat-map-crosshair::before {
  top: 50%;
  left: -5px;
  right: -5px;
  height: 1px;
}

.chat-map-crosshair::after {
  left: 50%;
  top: -5px;
  bottom: -5px;
  width: 1px;
}

.chat-map-scanning-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: scan-line 2.5s infinite linear;
}

@keyframes scan-line {
  0% { top: 0; }
  50% { top: 100%; }
  100% { top: 0; }
}

.chat-map-polygon {
  position: absolute;
  top: 30%;
  left: 35%;
  width: 35%;
  height: 40%;
  background: rgba(16, 185, 129, 0.25);
  border: 2px solid #10b981;
  clip-path: polygon(20% 0%, 80% 10%, 100% 80%, 0% 100%);
  animation: pulse-polygon 2s infinite ease-in-out;
}

@keyframes pulse-polygon {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 0.9; }
}

.chat-map-pulse {
  position: absolute;
  top: 48%;
  left: 51%;
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: var(--radius-full);
  box-shadow: 0 0 10px 4px #10b981;
}

.chat-map-info {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-color);
}

.chat-map-address {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-map-sqft {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--navy);
}

.chat-map-slider-wrapper {
  padding: 10px 12px;
}

.chat-map-slider-wrapper label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 6px;
}

.chat-map-slider-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-map-slider {
  flex: 1;
  accent-color: var(--secondary);
  height: 6px;
  cursor: pointer;
}

.chat-map-slider-val {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--navy);
  min-width: 65px;
  text-align: right;
}

.chat-map-confirm-btn {
  width: 100%;
  background: var(--navy);
  color: #ffffff;
  border: none;
  outline: none;
  padding: 12px;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.chat-map-confirm-btn:hover {
  opacity: 0.95;
}

/* ==========================================================================
   IMAGE GALLERY CAROUSEL SHOWCASE STYLES
   ========================================================================== */

.gallery-carousel-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gallery-viewport {
  position: relative;
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  background-color: var(--card-bg);
}

.gallery-slides-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s ease;
  z-index: 1;
}

.gallery-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-caption-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  color: white;
  z-index: 3;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
}

.gallery-slide.active .gallery-caption-card {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.gallery-caption-card h4 {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 6px;
  font-family: var(--font-headings);
}

.gallery-caption-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.45;
  margin: 0;
}

.gallery-tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
  outline: none;
}

.gallery-arrow:hover {
  background: #ffffff;
  color: var(--accent);
  transform: translateY(-50%) scale(1.08);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.gallery-arrow svg {
  width: 20px;
  height: 20px;
}

.arrow-left {
  left: 20px;
}

.arrow-right {
  right: 20px;
}

.gallery-thumbnails {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.gallery-thumb {
  width: 90px;
  height: 60px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  background-color: var(--border-color);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb:hover {
  transform: translateY(-3px);
  border-color: var(--primary-light);
}

.gallery-thumb.active {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.thumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.35);
  transition: opacity var(--transition-fast);
}

.gallery-thumb.active .thumb-overlay,
.gallery-thumb:hover .thumb-overlay {
  opacity: 0;
}

@media (max-width: 768px) {
  .gallery-viewport {
    height: 360px;
  }
  .gallery-caption-card {
    bottom: 16px;
    left: 16px;
    right: 16px;
    padding: 14px 18px;
  }
  .gallery-caption-card h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
  }
  .gallery-caption-card p {
    font-size: 0.82rem;
  }
  .gallery-arrow {
    width: 38px;
    height: 38px;
  }
  .gallery-arrow svg {
    width: 16px;
    height: 16px;
  }
  .arrow-left {
    left: 12px;
  }
  .arrow-right {
    right: 12px;
  }
  .gallery-thumb {
    width: 70px;
    height: 48px;
  }
}

/* ==========================================================================
   COMMERCIAL SERVICES PAGE STYLES
   ========================================================================== */

.commercial-page {
  background-color: var(--bg-main);
}

.commercial-hero {
  position: relative;
  overflow: hidden;
  padding: 132px 0 96px;
  background: radial-gradient(circle at 12% 18%, rgba(56, 189, 248, 0.18) 0, transparent 32%),
              linear-gradient(135deg, var(--sky-blue-light) 0%, var(--primary-soft) 58%, #ffffff 100%);
}

.commercial-hero::before,
.commercial-hero::after {
  content: '';
  position: absolute;
  border-radius: var(--radius-full);
  pointer-events: none;
  z-index: 1;
}

.commercial-hero::before {
  width: 320px;
  height: 320px;
  right: -120px;
  top: 110px;
  background-color: rgba(245, 158, 11, 0.14);
}

.commercial-hero::after {
  width: 220px;
  height: 220px;
  left: -80px;
  bottom: -70px;
  background-color: rgba(26, 73, 128, 0.08);
}

.commercial-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 54px;
  align-items: center;
}

.commercial-hero-content {
  max-width: 640px;
}

.commercial-hero h1 {
  font-size: clamp(2.65rem, 5vw, 4.7rem);
  line-height: 1.06;
  letter-spacing: -1.8px;
  margin-bottom: 22px;
}

.commercial-hero h1 span,
.commercial-section-heading span {
  color: var(--accent);
}

.commercial-hero-text {
  color: var(--text-muted);
  font-size: 1.22rem;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 590px;
}

.commercial-hero-actions,
.commercial-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.commercial-hero-actions .btn:focus-visible,
.commercial-cta-actions .btn:focus-visible,
.commercial-card-link:focus-visible,
.commercial-service-card:focus-within,
.commercial-property-card:focus-within,
.commercial-faq-link:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 4px;
}

.commercial-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.commercial-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(226, 232, 240, 0.9);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.commercial-trust-pill svg,
.commercial-check-list svg {
  width: 18px;
  height: 18px;
  color: var(--success);
  flex: 0 0 auto;
}

.commercial-hero-media {
  position: relative;
}

.commercial-hero-image-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 8px solid #ffffff;
  background-color: var(--card-bg);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.commercial-hero-image-card:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 26px 45px -16px rgba(26, 73, 128, 0.22);
}

.commercial-hero-image-card img,
.commercial-feature-image img,
.commercial-image-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.commercial-hero-image-card img {
  min-height: 470px;
}

.commercial-hero-stat {
  position: absolute;
  left: -18px;
  bottom: 26px;
  max-width: 260px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
}

.commercial-hero-stat strong {
  display: block;
  color: var(--primary);
  font-family: var(--font-headings);
  font-size: 1.05rem;
  line-height: 1.2;
  margin-bottom: 4px;
}

.commercial-hero-stat span {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.commercial-section {
  padding: 96px 0;
}

.commercial-section-white {
  background-color: #ffffff;
}

.commercial-section-soft {
  background-color: var(--primary-soft);
}

.commercial-section-header {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.commercial-section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.commercial-section-lede {
  color: var(--text-muted);
  font-size: 1.13rem;
  line-height: 1.7;
}

.commercial-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.commercial-service-card,
.commercial-property-card {
  position: relative;
  height: 100%;
  border-radius: var(--radius-lg);
  background-color: var(--card-bg);
  border: 1.5px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal), background-color var(--transition-normal);
}

.commercial-service-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
}

.commercial-service-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--sky-blue), var(--secondary));
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.commercial-service-card:hover,
.commercial-property-card:hover,
a.commercial-service-card:focus-visible,
a.commercial-property-card:focus-visible {
  transform: translateY(-7px);
  border-color: rgba(56, 189, 248, 0.55);
  box-shadow: var(--shadow-lg);
  background-color: #ffffff;
}

.commercial-service-card:hover::before,
a.commercial-service-card:focus-visible::before {
  opacity: 1;
}

.commercial-service-icon,
.commercial-property-icon,
.commercial-process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.commercial-service-icon {
  width: 66px;
  height: 66px;
  margin-bottom: 22px;
  border-radius: var(--radius-md);
  background-color: var(--sky-blue-light);
  color: var(--primary);
  transition: transform var(--transition-normal), background-color var(--transition-normal), color var(--transition-normal);
}

.commercial-service-card:hover .commercial-service-icon,
a.commercial-service-card:focus-visible .commercial-service-icon {
  background-color: var(--primary);
  color: #ffffff;
  transform: rotate(-5deg) scale(1.06);
}

.commercial-service-icon svg,
.commercial-property-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  fill: none;
}

.commercial-service-card h3,
.commercial-property-card h3,
.commercial-process-card h3,
.commercial-feature-copy h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.commercial-service-card p,
.commercial-property-card p,
.commercial-process-card p,
.commercial-feature-copy p,
.commercial-cta-card p {
  color: var(--text-muted);
}

.commercial-service-card p {
  margin-bottom: 22px;
  flex-grow: 1;
}

.commercial-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--primary);
  font-weight: 800;
  border-radius: var(--radius-full);
  transition: color var(--transition-fast), gap var(--transition-fast);
}

.commercial-card-link:hover {
  color: var(--accent);
  gap: 12px;
}

.commercial-property-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.commercial-property-card {
  padding: 26px 22px;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-main) 100%);
}

.commercial-property-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: var(--radius-full);
  background-color: var(--secondary-light);
  color: var(--primary);
}

.commercial-property-card:hover .commercial-property-icon,
a.commercial-property-card:focus-visible .commercial-property-icon {
  background-color: var(--secondary);
  transform: scale(1.05);
}

.commercial-process-wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.commercial-process-wrap::before {
  content: '';
  position: absolute;
  left: 7%;
  right: 7%;
  top: 35px;
  height: 3px;
  background: linear-gradient(90deg, var(--sky-blue-light), var(--primary), var(--secondary));
  border-radius: var(--radius-full);
  z-index: 1;
}

.commercial-process-card {
  position: relative;
  z-index: 2;
  padding: 0 4px;
}

.commercial-process-number {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background-color: var(--card-bg);
  border: 4px solid var(--sky-blue-light);
  box-shadow: var(--shadow-md);
  color: var(--primary);
  font-family: var(--font-headings);
  font-size: 1.3rem;
  font-weight: 800;
}

.commercial-feature-stack {
  display: grid;
  gap: 34px;
}

.commercial-feature-block {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius-lg);
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.commercial-feature-block.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.commercial-feature-block.reverse .commercial-feature-image {
  order: 2;
}

.commercial-feature-image,
.commercial-image-panel {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background-color: var(--bg-main);
  box-shadow: var(--shadow-sm);
}

.commercial-feature-image {
  min-height: 330px;
}

.commercial-feature-copy {
  padding: 8px 6px;
}

.commercial-check-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin-top: 24px;
}

.commercial-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-dark);
  font-weight: 700;
}

.commercial-safety-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
  padding: 38px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary) 0%, var(--navy) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.commercial-safety-band h2,
.commercial-safety-band h3 {
  color: #ffffff;
}

.commercial-safety-band p {
  color: rgba(255, 255, 255, 0.84);
}

.commercial-safety-band .badge {
  background-color: rgba(255, 255, 255, 0.14);
  color: var(--secondary-light);
}

.commercial-safety-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
}

.commercial-safety-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.commercial-faq-section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.commercial-faq-section .faq-accordion {
  max-width: 900px;
}

.commercial-faq-link {
  color: var(--primary);
  font-weight: 800;
  border-radius: var(--radius-sm);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.commercial-faq-link:hover {
  color: var(--accent);
}

.commercial-cta-section {
  padding: 86px 0 104px;
  background: linear-gradient(180deg, var(--bg-main) 0%, #ffffff 100%);
}

.commercial-cta-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 34px;
  align-items: center;
  padding: 44px;
  border-radius: var(--radius-lg);
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

.commercial-cta-card::after {
  content: '';
  position: absolute;
  right: -55px;
  top: -55px;
  width: 190px;
  height: 190px;
  border-radius: var(--radius-full);
  background-color: var(--secondary-light);
  opacity: 0.75;
}

.commercial-cta-card h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.12;
  margin-bottom: 14px;
}

.commercial-cta-card > * {
  position: relative;
  z-index: 2;
}

.commercial-cta-card .commercial-image-panel {
  min-height: 260px;
}

@media (max-width: 1100px) {
  .commercial-hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 36px;
  }
  .commercial-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .commercial-property-grid,
  .commercial-process-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .commercial-process-wrap::before {
    display: none;
  }
}

@media (max-width: 992px) {
  .commercial-hero {
    padding: 116px 0 76px;
  }
  .commercial-hero-grid,
  .commercial-safety-band,
  .commercial-cta-card {
    grid-template-columns: 1fr;
  }
  .commercial-hero-content {
    max-width: 760px;
  }
  .commercial-hero-media {
    max-width: 620px;
    margin: 0 auto;
    width: 100%;
  }
  .commercial-feature-block,
  .commercial-feature-block.reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .commercial-feature-block.reverse .commercial-feature-image {
    order: 0;
  }
  .commercial-feature-image {
    min-height: 300px;
  }
  .commercial-cta-card .commercial-image-panel {
    min-height: 240px;
  }
}

@media (max-width: 768px) {
  .commercial-hero {
    padding: 104px 0 62px;
  }
  .commercial-hero h1 {
    letter-spacing: -1px;
  }
  .commercial-hero-text,
  .commercial-section-lede {
    font-size: 1.03rem;
  }
  .commercial-hero-actions,
  .commercial-cta-actions {
    align-items: stretch;
  }
  .commercial-hero-actions .btn,
  .commercial-cta-actions .btn {
    width: 100%;
  }
  .commercial-hero-image-card {
    border-width: 6px;
    transform: none;
  }
  .commercial-hero-image-card img {
    min-height: 340px;
  }
  .commercial-hero-stat {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: none;
    margin: -28px 18px 0;
    transform: none;
  }
  .commercial-section,
  .commercial-faq-section {
    padding: 64px 0;
  }
  .commercial-section-header {
    margin-bottom: 36px;
  }
  .commercial-services-grid,
  .commercial-property-grid,
  .commercial-process-wrap,
  .commercial-safety-list {
    grid-template-columns: 1fr;
  }
  .commercial-service-card,
  .commercial-property-card {
    padding: 24px;
  }
  .commercial-process-card {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    align-items: start;
    padding: 0;
  }
  .commercial-process-number {
    width: 58px;
    height: 58px;
    margin-bottom: 0;
    font-size: 1.05rem;
  }
  .commercial-feature-block,
  .commercial-safety-band,
  .commercial-cta-card {
    padding: 24px;
  }
  .commercial-feature-image,
  .commercial-cta-card .commercial-image-panel {
    min-height: 230px;
  }
  .commercial-cta-section {
    padding: 62px 0 76px;
  }
}

@media (max-width: 480px) {
  .commercial-hero {
    padding-top: 96px;
  }
  .commercial-trust-row {
    flex-direction: column;
  }
  .commercial-trust-pill {
    width: 100%;
  }
  .commercial-hero-image-card img {
    min-height: 280px;
  }
  .commercial-service-icon {
    width: 58px;
    height: 58px;
  }
  .commercial-service-icon svg,
  .commercial-property-icon svg {
    width: 28px;
    height: 28px;
  }
  .commercial-feature-block,
  .commercial-safety-band,
  .commercial-cta-card {
    padding: 20px;
    border-radius: var(--radius-md);
  }
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 88px 0 104px;
  background: radial-gradient(circle at 12% 18%, rgba(56, 189, 248, 0.22) 0, transparent 34%),
              linear-gradient(135deg, var(--primary) 0%, var(--navy) 100%);
  color: #ffffff;
}

.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  border-radius: var(--radius-full);
  pointer-events: none;
  z-index: 1;
}

.cta-section::before {
  width: 260px;
  height: 260px;
  right: -90px;
  top: -80px;
  background-color: rgba(245, 158, 11, 0.2);
}

.cta-section::after {
  width: 190px;
  height: 190px;
  left: -70px;
  bottom: -70px;
  background-color: rgba(255, 255, 255, 0.08);
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section .cta-content,
.cta-section .cta-card {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.cta-section h1,
.cta-section h2,
.cta-section h3,
.cta-section .section-title {
  color: #ffffff;
}

.cta-section h2,
.cta-section .section-title {
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.12;
  margin-bottom: 18px;
}

.cta-section p,
.cta-section .section-subtitle,
.cta-section .cta-text {
  max-width: 720px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.13rem;
  line-height: 1.7;
}

.cta-section .cta-actions,
.cta-section .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.cta-section .btn-outline {
  border-color: rgba(255, 255, 255, 0.72);
  color: #ffffff;
}

.cta-section .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
}

.cta-section .btn:focus-visible,
.cta-section a:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 4px;
}

@media (max-width: 768px) {
  .cta-section {
    padding: 66px 0 78px;
  }
  .cta-section p,
  .cta-section .section-subtitle,
  .cta-section .cta-text {
    font-size: 1.02rem;
    margin-bottom: 24px;
  }
  .cta-section .cta-actions,
  .cta-section .cta-buttons {
    align-items: stretch;
  }
  .cta-section .cta-actions .btn,
  .cta-section .cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 56px 0 68px;
  }
}

