/* Preference Cleaning LLC - Global Styles */
:root {
  --pc-primary: #168dd2;
  --pc-primary-soft: #5999b4;
  --pc-accent: #4783a7;
  --pc-dark: #111111;
  --pc-light: #f7fbff;
  --pc-muted: #6c757d;
  --primary-gold: #efb54b;
  --primary-blue: #0f70b7;
  --white: #ffffff;
  --dark-text: #333333;
  --light-text: #666666;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #212529;
  background-color: #ffffff;
}

a {
  color: var(--pc-primary);
}

a:hover {
  color: #0f6da2;
}

.topbar {
  font-size: 0.85rem;
}

.topbar a {
  color: #ffffff;
  text-decoration: none;
}

.topbar a:hover {
  text-decoration: underline;
}

.navbar-logo {
  height: 150px;
  width: auto;
}

.navbar {
  font-size: 0.95rem;
}

.nav-link {
  font-weight: 500;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pc-primary) 0%, var(--pc-accent) 100%);
  border-color: transparent;
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #0f6da2 0%, #2a5673 100%);
}

.btn-outline-primary {
  color: var(--pc-primary);
  border-color: var(--pc-primary);
}

.btn-outline-primary:hover {
  background-color: var(--pc-primary);
  color: #ffffff;
}

.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
}

.hero-home {
  background-image: url('../images/cleaning-services/modern-kitchen-domestic-life.webp');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(22, 141, 210, 0.65), rgba(0, 0, 0, 0.75));
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.badge-icon {
  width: 2rem;
  height: 2rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.hero-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-cta .btn {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.hero-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Enhanced Google Reviews Styling */
.hero-reviews {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.google-review-badge {
  padding: 0.75rem;
}

.google-icon {
  width: 1.5rem;
  height: 1.5rem;
  background: #4285f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
}

.review-platform {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.review-stars-container .review-stars {
  color: #ffd700;
  font-size: 1.1rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.review-rating {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
}

.review-count {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.business-badge {
  padding: 0.75rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-icon-small {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #ffd700;
}

.badge-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  line-height: 1.2;
}

.badge-subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.2;
}

/* Hero Image Styling */
.hero-image-container {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-main-image {
  border-radius: 1.5rem;
  transition: transform 0.3s ease;
}

.hero-image-container:hover .hero-main-image {
  transform: scale(1.02);
}

.hero-image-overlay {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.quality-badge {
  background: rgba(255, 255, 255, 0.95);
  color: var(--pc-primary);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.badge-soft {
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.section-padding {
  padding: 4rem 0;
}

.section-title {
  font-size: 1.9rem;
  font-weight: 700;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: var(--pc-primary);
}

.bg-light-soft {
  background-color: var(--pc-light);
}

.service-card {
  border-radius: 1rem;
  border: 1px solid #e5edf5;
  box-shadow: 0 18px 40px rgba(15, 52, 96, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0.9rem;
}

.blog-card-thumb {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(15, 52, 96, 0.14);
  border-color: rgba(22, 141, 210, 0.35);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 141, 210, 0.07);
  color: var(--pc-primary);
}

.check-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.check-list i {
  margin-top: 0.15rem;
  color: var(--pc-primary);
}

.review-card {
  border-radius: 1rem;
  background-color: #ffffff;
  border: 1px solid #e5edf5;
  box-shadow: 0 16px 35px rgba(20, 53, 101, 0.08);
}

.review-name {
  font-weight: 600;
}

.review-stars {
  color: #f4c419;
}

.badge-5star {
  background-color: rgba(244, 196, 25, 0.1);
  color: #f4c419;
}

/* Elegant Footer */
.footer-elegant {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1419 100%);
  color: #e2e8f0;
  overflow: hidden;
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(22, 141, 210, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(22, 141, 210, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.footer-main {
  position: relative;
  z-index: 1;
}

.footer-logo {
  height: 200px;
  width: auto;
  filter: brightness(1.1);
}

.footer-brand-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.footer-brand-tagline {
  font-size: 0.9rem;
  color: #94a3b8;
  font-weight: 500;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.footer-section-title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.footer-section-title i {
  color: var(--pc-primary);
  font-size: 1.1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--pc-primary);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 1rem;
  text-decoration: none;
}

.footer-links a:hover::before {
  opacity: 1;
}

/* Location Tags */
.location-tag {
  background: rgba(22, 141, 210, 0.1);
  border: 1px solid rgba(22, 141, 210, 0.3);
  color: #7dd3fc;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.location-tag:hover {
  background: rgba(22, 141, 210, 0.2);
  border-color: rgba(22, 141, 210, 0.5);
  transform: translateY(-1px);
}

/* Contact Section */
.footer-contact {
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.contact-item i {
  color: var(--pc-primary);
  font-size: 1rem;
  width: 1.2rem;
}

.contact-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #ffffff;
  text-decoration: none;
}

/* Social Links */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.social-link:hover {
  color: #ffffff;
  background: rgba(22, 141, 210, 0.2);
  border-color: rgba(22, 141, 210, 0.4);
  transform: translateY(-2px);
  text-decoration: none;
}

.social-link i {
  font-size: 1.1rem;
}

/* Reviews Link */
.reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(244, 196, 25, 0.1) 0%, rgba(244, 196, 25, 0.05) 100%);
  border: 1px solid rgba(244, 196, 25, 0.3);
  color: #fbbf24;
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.reviews-link:hover {
  background: linear-gradient(135deg, rgba(244, 196, 25, 0.2) 0%, rgba(244, 196, 25, 0.1) 100%);
  border-color: rgba(244, 196, 25, 0.5);
  color: #ffffff;
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(244, 196, 25, 0.2);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  margin: 0 1.5rem;
  border-radius: 1.5rem;
  padding: 2rem 2.5rem !important;
}

.footer-copyright {
  font-size: 0.9rem;
  color: #94a3b8;
  font-weight: 500;
}

.footer-tagline {
  font-size: 0.9rem;
  color: #cbd5e1;
  font-weight: 500;
}

.badge-location {
  border-radius: 999px;
  border: 1px solid rgba(22, 141, 210, 0.25);
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--pc-primary);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(247, 251, 255, 0.9) 100%);
  box-shadow: 0 2px 8px rgba(22, 141, 210, 0.1);
  transition: all 0.2s ease;
}

.badge-location:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(22, 141, 210, 0.15);
  border-color: rgba(22, 141, 210, 0.4);
}

.page-hero {
  background: radial-gradient(circle at top left, rgba(22, 141, 210, 0.16), rgba(89, 153, 180, 0.05));
  padding: 4.5rem 0 3.5rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 2.2vw + 1.4rem, 2.8rem);
  font-weight: 700;
}

.page-hero p {
  max-width: 40rem;
}

.page-hero img {
  border-radius: 1.3rem;
  box-shadow: 0 18px 40px rgba(15, 52, 96, 0.2);
}

/* Elegant How It Works Section */
.how-it-works-section {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, 
    rgba(240, 248, 255, 0.95) 0%, 
    rgba(255, 255, 255, 1) 50%, 
    rgba(247, 251, 255, 0.95) 100%);
  overflow: hidden;
}

.how-it-works-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(22, 141, 210, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(22, 141, 210, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

/* Header Styling */
.how-it-works-badge {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(22, 141, 210, 0.15);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(22, 141, 210, 0.1);
}

.process-icon {
  width: 2rem;
  height: 2rem;
  background: var(--pc-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
}

.how-it-works-eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pc-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.steps-indicator {
  background: rgba(22, 141, 210, 0.1);
  border: 1px solid rgba(22, 141, 210, 0.2);
  border-radius: 25px;
  padding: 0.4rem 0.8rem;
}

.steps-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pc-primary);
}

.how-it-works-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--pc-dark);
  line-height: 1.2;
}

.how-it-works-subtitle {
  font-size: 1.1rem;
  color: var(--pc-muted);
  line-height: 1.6;
  max-width: 650px;
}

/* Process Steps Container */
.process-steps-container {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
}

.process-step-elegant {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(22, 141, 210, 0.08);
  border-radius: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 35px rgba(22, 141, 210, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.process-step-elegant::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pc-primary), var(--pc-accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.process-step-elegant:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(22, 141, 210, 0.15);
  border-color: rgba(22, 141, 210, 0.15);
}

.process-step-elegant:hover::before {
  opacity: 1;
}

/* Step Image */
.step-image-container {
  position: relative;
}

.step-image-wrapper {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(22, 141, 210, 0.12);
  transition: transform 0.3s ease;
}

.step-image-wrapper:hover {
  transform: scale(1.02);
}

.step-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 1.5rem;
}

.step-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.step-number-badge {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, var(--pc-primary), var(--pc-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(22, 141, 210, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.9);
}

.step-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
}

/* Step Content */
.step-content {
  padding: 0.5rem 0;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.step-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(22, 141, 210, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pc-primary);
  font-size: 1.2rem;
}

.step-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pc-dark);
  margin: 0;
}

.step-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 1.5rem;
}

.step-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.feature-tag {
  background: rgba(22, 141, 210, 0.08);
  border: 1px solid rgba(22, 141, 210, 0.15);
  color: var(--pc-primary);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.feature-tag:hover {
  background: rgba(22, 141, 210, 0.15);
  border-color: rgba(22, 141, 210, 0.3);
  transform: translateY(-1px);
}

/* Step Connector */
.step-connector {
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 3rem;
  background: linear-gradient(180deg, var(--pc-primary), transparent);
  opacity: 0.3;
}

.process-step-elegant:last-child .step-connector {
  display: none;
}

/* Call to Action */
.how-it-works-cta {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(22, 141, 210, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
  border: 1px solid rgba(22, 141, 210, 0.1);
  border-radius: 2rem;
  backdrop-filter: blur(10px);
}

.cta-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--pc-dark);
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--pc-muted);
  max-width: 500px;
  margin: 0 auto;
}

.btn-how-it-works-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--pc-primary) 0%, var(--pc-accent) 100%);
  color: white;
  text-decoration: none;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 12px 35px rgba(22, 141, 210, 0.3);
  transition: all 0.3s ease;
  border: none;
}

.btn-how-it-works-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(22, 141, 210, 0.4);
  color: white;
  text-decoration: none;
}

/* Legacy Process Step Support */
.process-step {
  border-radius: 0.9rem;
  border: 1px solid rgba(22, 141, 210, 0.15);
  padding: 1.5rem 1.3rem;
  background: linear-gradient(135deg, rgba(247, 251, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  box-shadow: 0 8px 25px rgba(22, 141, 210, 0.08);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(22, 141, 210, 0.15);
  border-color: rgba(22, 141, 210, 0.3);
}

.process-step-image {
  height: 120px;
  overflow: hidden;
  border-radius: 0.7rem;
}

.process-step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-step {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--pc-primary);
  color: #ffffff;
  font-size: 0.9rem;
}

.form-control,
.form-select {
  border-radius: 0.7rem;
  border-color: #ced4da;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(22, 141, 210, 0.75);
  box-shadow: 0 0 0 0.15rem rgba(22, 141, 210, 0.15);
}

.booking-form {
  background-color: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 16px 40px rgba(20, 53, 101, 0.12);
  max-width: 960px;
  margin: 0 auto;
}

.text-booking {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  background-color: rgba(22, 141, 210, 0.08);
  color: var(--pc-primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.book-button {
  background: linear-gradient(135deg, var(--pc-primary) 0%, var(--pc-accent) 100%);
  border: none;
  color: #ffffff;
  padding: 0.75rem 2.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
}

.book-button:hover,
.book-button:focus {
  background: linear-gradient(135deg, #0f6da2 0%, #2a5673 100%);
}

.panel-list-btn {
  border-radius: 0.9rem;
  border: 1px solid rgba(22, 141, 210, 0.25);
  background-color: #ffffff;
}

.panel-list-btn input {
  display: none;
}

.panel-list-btn label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0.75rem 0.9rem;
  gap: 0.1rem;
  width: 100%;
  cursor: pointer;
}

.panel-list-btn input:checked + label {
  border-radius: 0.9rem;
  border: 1px solid var(--pc-primary);
  box-shadow: 0 0 0 0.1rem rgba(22, 141, 210, 0.2);
}

.m-b-5 {
  margin-bottom: 0.75rem;
}

.select {
  width: 100%;
  border-radius: 0.7rem;
  border: 1px solid #ced4da;
  padding: 0.5rem 0.75rem;
}

.select:focus {
  border-color: rgba(22, 141, 210, 0.75);
  box-shadow: 0 0 0 0.15rem rgba(22, 141, 210, 0.15);
  outline: none;
}

.badge-channel {
  border-radius: 999px;
  background-color: #111827;
  color: #f9fafb;
}

.image-gallery {
  position: relative;
}

.image-stack {
  position: relative;
}

.image-stack img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-stack img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(22, 141, 210, 0.15);
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--pc-primary) 0%, var(--pc-accent) 100%);
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Feature Cards */
.feature-card {
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(22, 141, 210, 0.1);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 15px 40px rgba(22, 141, 210, 0.15);
  border-color: rgba(22, 141, 210, 0.2);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(22, 141, 210, 0.1) 0%, rgba(22, 141, 210, 0.05) 100%);
  color: var(--pc-primary);
  font-size: 1.5rem;
  margin: 0 auto;
}

/* Elegant Service Areas Section */
.service-areas-section {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, 
    rgba(247, 251, 255, 0.95) 0%, 
    rgba(255, 255, 255, 1) 50%, 
    rgba(240, 248, 255, 0.95) 100%);
  overflow: hidden;
}

.service-areas-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 25%, rgba(22, 141, 210, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(22, 141, 210, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.service-areas-content {
  position: relative;
  z-index: 1;
}

/* Header Styling */
.service-areas-badge {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(22, 141, 210, 0.15);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(22, 141, 210, 0.1);
}

.location-icon {
  width: 2rem;
  height: 2rem;
  background: var(--pc-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
}

.service-areas-eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pc-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.coverage-indicator {
  background: rgba(22, 141, 210, 0.1);
  border: 1px solid rgba(22, 141, 210, 0.2);
  border-radius: 25px;
  padding: 0.4rem 0.8rem;
}

.coverage-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pc-primary);
}

.service-areas-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--pc-dark);
  line-height: 1.2;
}

.service-areas-subtitle {
  font-size: 1.1rem;
  color: var(--pc-muted);
  line-height: 1.6;
  max-width: 500px;
}

/* Location Cards */
.location-cards-grid {
  display: grid;
  gap: 1.5rem;
}

.location-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(22, 141, 210, 0.1);
  border-radius: 1.5rem;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(22, 141, 210, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pc-primary), var(--pc-accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(22, 141, 210, 0.15);
  border-color: rgba(22, 141, 210, 0.2);
}

.location-card:hover::before {
  opacity: 1;
}

.location-card-featured {
  background: linear-gradient(135deg, rgba(22, 141, 210, 0.05) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-color: rgba(22, 141, 210, 0.2);
}

.location-card-featured::before {
  opacity: 1;
}

.location-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.location-card-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--pc-primary), var(--pc-accent));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(22, 141, 210, 0.2);
}

.location-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--pc-dark);
  margin: 0;
  flex: 1;
}

.location-count {
  font-size: 0.8rem;
  color: var(--pc-muted);
  background: rgba(22, 141, 210, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 15px;
  font-weight: 500;
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.location-tag-elegant {
  background: rgba(22, 141, 210, 0.08);
  border: 1px solid rgba(22, 141, 210, 0.15);
  color: var(--pc-primary);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.location-tag-elegant:hover {
  background: rgba(22, 141, 210, 0.15);
  border-color: rgba(22, 141, 210, 0.3);
  transform: translateY(-1px);
}

/* Info Card */
.service-areas-info {
  margin-top: 2rem;
}

.info-card {
  background: rgba(22, 141, 210, 0.05);
  border: 1px solid rgba(22, 141, 210, 0.1);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #374151;
}

.info-card i {
  color: var(--pc-primary);
  margin-top: 0.1rem;
}

.info-link {
  color: var(--pc-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.info-link:hover {
  color: var(--pc-accent);
  text-decoration: underline;
}

/* Call to Action Buttons */
.service-areas-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-service-areas-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--pc-primary) 0%, var(--pc-accent) 100%);
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 8px 25px rgba(22, 141, 210, 0.3);
  transition: all 0.3s ease;
  border: none;
}

.btn-service-areas-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(22, 141, 210, 0.4);
  color: white;
  text-decoration: none;
}

.btn-service-areas-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--pc-primary);
  color: var(--pc-primary);
  text-decoration: none;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-service-areas-secondary:hover {
  background: var(--pc-primary);
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(22, 141, 210, 0.3);
}

/* Image Styling */
.service-areas-image-container {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(22, 141, 210, 0.15);
  transition: transform 0.3s ease;
}

.image-wrapper:hover {
  transform: translateY(-8px);
}

.service-areas-image {
  width: 100%;
  height: auto;
  border-radius: 2rem;
  transition: transform 0.3s ease;
}

.image-overlay {
  position: absolute;
  top: 2rem;
  left: 2rem;
  right: 2rem;
  display: flex;
  justify-content: center;
}

.coverage-badge {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.5rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  max-width: 280px;
}

.coverage-badge-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.coverage-badge-content i {
  font-size: 1.5rem;
  color: var(--pc-primary);
}

.coverage-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pc-dark);
  margin-bottom: 0.25rem;
}

.coverage-subtitle {
  font-size: 0.85rem;
  color: var(--pc-muted);
  font-weight: 500;
}

/* Floating Elements */
.image-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite;
}

.floating-element-1 {
  top: 20%;
  right: 10%;
  color: #fbbf24;
  animation-delay: 0s;
}

.floating-element-2 {
  bottom: 30%;
  left: 8%;
  color: #ef4444;
  animation-delay: 2s;
}

.floating-element-3 {
  top: 60%;
  right: 15%;
  color: var(--pc-primary);
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Location Groups - Legacy Support */
.location-group {
  padding: 1rem;
  border-radius: 0.8rem;
  background: rgba(247, 251, 255, 0.7);
  border: 1px solid rgba(22, 141, 210, 0.1);
}

.location-group h5 {
  font-weight: 600;
}

/* Elegant Reviews Section */
.reviews-section {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, 
    rgba(247, 251, 255, 0.9) 0%, 
    rgba(255, 255, 255, 0.95) 50%, 
    rgba(240, 248, 255, 0.9) 100%);
  overflow: hidden;
}

.reviews-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(22, 141, 210, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(22, 141, 210, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.reviews-header-badge {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(22, 141, 210, 0.15);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(22, 141, 210, 0.1);
}

.google-icon-small {
  width: 2rem;
  height: 2rem;
  background: #4285f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
}

.reviews-eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pc-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.reviews-rating-badge {
  background: rgba(244, 196, 25, 0.1);
  border: 1px solid rgba(244, 196, 25, 0.2);
  border-radius: 25px;
  padding: 0.4rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.reviews-stars {
  color: #f4c419;
  font-size: 0.9rem;
}

.reviews-score {
  font-weight: 700;
  color: #f4c419;
  font-size: 0.9rem;
}

.reviews-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--pc-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.reviews-subtitle {
  font-size: 1.1rem;
  color: var(--pc-muted);
  max-width: 600px;
  line-height: 1.6;
}

/* Featured Image */
.featured-image-container {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(22, 141, 210, 0.15);
  transition: transform 0.3s ease;
}

.featured-image-container:hover {
  transform: translateY(-5px);
}

.featured-image {
  border-radius: 2rem;
  transition: transform 0.3s ease;
}

.featured-image-overlay {
  position: absolute;
  top: 2rem;
  right: 2rem;
}

.quality-indicator {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pc-primary);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.review-card-elegant {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(22, 141, 210, 0.08);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(22, 141, 210, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.review-card-elegant::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pc-primary), var(--pc-accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.review-card-elegant:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(22, 141, 210, 0.15);
  border-color: rgba(22, 141, 210, 0.2);
}

.review-card-elegant:hover::before {
  opacity: 1;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pc-primary), var(--pc-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(22, 141, 210, 0.2);
}

.reviewer-details {
  flex: 1;
}

.reviewer-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pc-dark);
  margin-bottom: 0.25rem;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-stars-elegant {
  color: #f4c419;
  font-size: 1rem;
  text-shadow: 0 1px 3px rgba(244, 196, 25, 0.3);
}

.review-source {
  font-size: 0.85rem;
  color: var(--pc-muted);
  font-weight: 500;
}

.review-rating-badge {
  background: rgba(244, 196, 25, 0.1);
  border: 1px solid rgba(244, 196, 25, 0.2);
  color: #f4c419;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 50px;
  min-width: 3rem;
  text-align: center;
}

.review-content {
  position: relative;
}

.review-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
  margin: 0;
  font-style: italic;
  position: relative;
  padding-left: 1.5rem;
}

.review-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-size: 3rem;
  color: rgba(22, 141, 210, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

/* Reviews CTA */
.reviews-cta {
  margin-top: 3rem;
}

.btn-reviews-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--pc-primary) 0%, var(--pc-accent) 100%);
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 8px 25px rgba(22, 141, 210, 0.3);
  transition: all 0.3s ease;
  border: none;
}

.btn-reviews-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(22, 141, 210, 0.4);
  color: white;
  text-decoration: none;
}

@media (max-width: 767.98px) {
  .topbar {
    text-align: center;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-reviews {
    padding: 1rem;
  }

  .reviews-container {
    flex-direction: column;
    gap: 1rem !important;
  }

  .business-badge {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    text-align: center;
  }

  .stat-number {
    font-size: 2rem;
  }

  .feature-card {
    padding: 1.5rem 1rem;
  }

  .feature-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.2rem;
  }

  /* Reviews Section Mobile */
  .reviews-section {
    padding: 3rem 0;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .review-card-elegant {
    padding: 1.5rem;
  }

  .reviewer-avatar {
    width: 3rem;
    height: 3rem;
    font-size: 0.9rem;
  }

  .reviewer-name {
    font-size: 1rem;
  }

  .review-text {
    font-size: 0.95rem;
    padding-left: 1rem;
  }

  .review-text::before {
    font-size: 2.5rem;
    top: -0.3rem;
  }

  .reviews-header-badge {
    padding: 0.5rem 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .featured-image-overlay {
    top: 1rem;
    right: 1rem;
  }

  .quality-indicator {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  /* Footer Mobile Styles */
  .footer-logo {
    height: 65px;
  }

  .footer-brand-name {
    font-size: 1.2rem;
  }

  .footer-section-title {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  .social-links {
    gap: 0.75rem;
  }

  .social-link {
    padding: 0.4rem 0.6rem;
    font-size: 0.85rem;
  }

  .location-tag {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }

  .contact-link {
    font-size: 0.9rem;
  }

  .reviews-link {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
  }

  .footer-copyright,
  .footer-tagline {
    font-size: 0.85rem;
    text-align: center;
  }

  .footer-bottom {
    margin: 0 1rem;
    padding: 1.5rem 1.5rem !important;
    border-radius: 1rem;
  }

  .footer-bottom .row {
    text-align: center;
  }

  .footer-bottom .col-md-6:last-child {
    margin-top: 0.5rem;
  }

  /* Service Areas Mobile Styles */
  .service-areas-section {
    padding: 3rem 0;
  }

  .service-areas-badge {
    padding: 0.5rem 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .service-areas-title {
    font-size: 2rem;
  }

  .service-areas-subtitle {
    font-size: 1rem;
    max-width: none;
  }

  .location-card {
    padding: 1.25rem;
  }

  .location-card-header {
    gap: 0.75rem;
  }

  .location-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }

  .location-card-title {
    font-size: 1.1rem;
  }

  .location-tag-elegant {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }

  .service-areas-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-service-areas-primary,
  .btn-service-areas-secondary {
    text-align: center;
    justify-content: center;
  }

  .image-overlay {
    top: 1rem;
    left: 1rem;
    right: 1rem;
  }

  .coverage-badge {
    padding: 1rem 1.25rem;
    max-width: none;
  }

  .coverage-title {
    font-size: 1rem;
  }

  .coverage-subtitle {
    font-size: 0.8rem;
  }

  .floating-element {
    width: 2.5rem;
    height: 2.5rem;
  }

  .floating-element-1 {
    top: 15%;
    right: 5%;
  }

  .floating-element-2 {
    bottom: 25%;
    left: 5%;
  }

  .floating-element-3 {
    top: 55%;
    right: 8%;
  }

  /* How It Works Mobile Styles */
  .how-it-works-section {
    padding: 3rem 0;
  }

  .how-it-works-badge {
    padding: 0.5rem 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .how-it-works-title {
    font-size: 2rem;
  }

  .how-it-works-subtitle {
    font-size: 1rem;
    max-width: none;
  }

  .process-steps-container {
    gap: 2rem;
  }

  .process-step-elegant {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .step-image {
    height: 180px;
  }

  .step-number-badge {
    width: 3rem;
    height: 3rem;
  }

  .step-number {
    font-size: 1rem;
  }

  .step-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }

  .step-title {
    font-size: 1.2rem;
  }

  .step-description {
    font-size: 0.95rem;
  }

  .feature-tag {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }

  .step-connector {
    display: none;
  }

  .how-it-works-cta {
    padding: 2rem 1.5rem;
    margin-top: 3rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-subtitle {
    font-size: 1rem;
  }

  .btn-how-it-works-cta {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* Contact Widget Styles */
.contact-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  transition: all 0.3s ease;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.contact-widget-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, #d4a853 100%);
  color: var(--white);
  padding: 15px 20px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(239, 181, 75, 0.3);
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 16px;
  border: none;
  animation: pulse-shadow 3s infinite;
}

.contact-widget-trigger:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 30px rgba(239, 181, 75, 0.5);
  background: linear-gradient(135deg, #d4a853 0%, var(--primary-gold) 100%);
}

.contact-widget-trigger i {
  font-size: 18px;
}

@keyframes pulse-shadow {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(239, 181, 75, 0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(239, 181, 75, 0.5);
  }
}

.contact-widget.show .contact-widget-trigger {
  display: none;
}

.contact-widget.show {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  bottom: auto;
  right: auto;
}

.contact-widget-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  z-index: 10000;
}

.contact-widget.show .contact-widget-overlay {
  display: block;
}

.contact-widget-content {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  border-radius: 20px;
  max-width: 450px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideInUp 0.4s ease-out;
  z-index: 10001;
  scrollbar-width: thin;
  scrollbar-color: rgba(239, 181, 75, 0.3) transparent;
}

.contact-widget.show .contact-widget-content {
  display: block;
}

.contact-widget-content::-webkit-scrollbar {
  width: 6px;
}

.contact-widget-content::-webkit-scrollbar-track {
  background: transparent;
}

.contact-widget-content::-webkit-scrollbar-thumb {
  background: rgba(239, 181, 75, 0.3);
  border-radius: 3px;
}

.contact-widget-content::-webkit-scrollbar-thumb:hover {
  background: rgba(239, 181, 75, 0.5);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translate(-50%, -30%) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.contact-widget-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--dark-text);
  z-index: 1;
}

.contact-widget-close:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: rotate(90deg);
}

.contact-widget-header {
  text-align: center;
  padding: 1.5rem 1.5rem 1rem;
  background: linear-gradient(135deg, var(--primary-blue), #027bf3);
  border-radius: 20px 20px 0 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-widget-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

.contact-widget-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
  border: 3px solid rgba(255, 255, 255, 0.3);
  padding: 10px;
  position: relative;
  z-index: 1;
}

.contact-widget-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.1);
}

.contact-widget-company-name {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.contact-widget-header h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.contact-widget-header p {
  opacity: 0.9;
  margin: 0;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.contact-widget-body {
  padding: 1.5rem;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: rgba(239, 181, 75, 0.05);
  border-radius: 12px;
  text-decoration: none;
  color: var(--dark-text);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.contact-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.contact-option-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-option.phone .contact-option-icon {
  background: linear-gradient(135deg, #28a745, #20c997);
}

.contact-option.email .contact-option-icon {
  background: linear-gradient(135deg, #dc3545, #fd7e14);
}

.contact-option.facebook .contact-option-icon {
  background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.contact-option.instagram .contact-option-icon {
  background: linear-gradient(135deg, #e4405f, #fd1d1d, #fccc63);
}

.contact-option-info {
  flex: 1;
}

.contact-option-label {
  display: block;
  font-weight: 600;
  color: var(--dark-text);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.contact-option-value {
  display: block;
  color: var(--light-text);
  font-size: 0.85rem;
}

.contact-widget-cta {
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1rem;
  margin-top: 1rem;
}

.contact-widget-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary-gold) 0%, #d4a853 100%);
  color: var(--white);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(239, 181, 75, 0.2);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  font-size: 0.9rem;
  pointer-events: auto;
  border: none;
}

.contact-widget-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition);
}

.contact-widget-btn:hover::before {
  left: 100%;
}

.contact-widget-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(239, 181, 75, 0.4);
}

.contact-widget-guarantee {
  margin: 0.75rem 0 0;
  color: var(--light-text);
  font-size: 0.8rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .contact-widget {
    bottom: 20px;
    right: 20px;
  }

  .contact-widget-trigger {
    padding: 12px 16px;
    font-size: 14px;
  }

  .contact-widget-trigger span {
    display: none;
  }

  .contact-widget-trigger i {
    font-size: 20px;
  }

  .contact-widget-content {
    max-width: 95%;
    margin: 1rem;
    max-height: 80vh;
  }

  .contact-widget-header,
  .contact-widget-body {
    padding: 1rem;
  }

  .contact-widget-icon {
    width: 70px;
    height: 70px;
    padding: 8px;
  }

  .contact-widget-company-name {
    font-size: 1.4rem;
  }

  .contact-widget-header h4 {
    font-size: 1.1rem;
  }

  .contact-options {
    gap: 0.5rem;
  }

  .contact-option {
    padding: 0.6rem;
  }

  .contact-widget-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .contact-widget-guarantee {
    font-size: 0.75rem;
  }
}

/* Elegant Brand Styling */
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-family: 'Georgia', 'Garamond', serif;
}

.brand-preference {
  font-size: 2rem;
  font-weight: 600;
  color: #168dd2;
  letter-spacing: 9px;
  font-style: italic;
}

.brand-cleaning {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  letter-spacing: 7px;
  font-style: italic;
}

.brand-llc {
  font-size: 0.7rem;
  font-weight: 400;
  color: #7f8c8d;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: -2px;
}

.navbar-brand:hover .brand-preference,
.navbar-brand:hover .brand-cleaning {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

/* Mobile Responsive Brand Styling */
@media (max-width: 768px) {
  .brand-preference {
    font-size: 1.3rem;
    letter-spacing: 4px;
  }

  .brand-cleaning {
    font-size: 1.2rem;
    letter-spacing: 3px;
  }
}

@media (max-width: 480px) {
  .brand-preference {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }

  .brand-cleaning {
    font-size: 1rem;
    letter-spacing: 2px;
  }
}
