/* Color scheme */
:root {
  --primary: #EF6438;
  --secondary: #203A67;
  --black: #000000;
  --white: #FFFFFF;
  --cta: var(--primary);
  --cta-hover: #d94e1f;
  --bg: var(--white);
  --text: var(--secondary);
  --accent-bg: #f8f8f8;
  --border: #e0e0e0;
}

/* Base styles */
html { box-sizing: border-box; font-size: 16px; }
*, *:before, *:after { box-sizing: inherit; }
body { margin: 0; font-family: 'Segoe UI', Arial, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }
a { color: #0077cc; text-decoration: none; }
a:hover { text-decoration: underline; }

header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 2rem; background: var(--accent-bg); border-bottom: 1px solid var(--border); }
.logo { height: 48px; width: auto; }
nav ul { list-style: none; display: flex; gap: 2rem; margin: 0; padding: 0; }
nav li { display: inline; }
#hamburger { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; }
#hamburger span { display: block; width: 28px; height: 3px; background: var(--primary); border-radius: 2px; }

.hero {
  position: relative;
  background-size: cover;
  background-position: 10% 80%; /* Focus further left and down, avoid blank space */
  background-repeat: no-repeat;
  min-height: 420px;
  padding: 3rem 0 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  z-index: 1;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  box-sizing: border-box;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(32,58,103,0.68) 0%, rgba(32,58,103,0.38) 100%);
  z-index: 0;
}
.hero h1, .hero p {
  text-shadow: 0 2px 16px rgba(32,58,103,0.32), 0 1px 8px rgba(0,0,0,0.18);
}
.hero .cta-buttons {
  position: relative;
  z-index: 1;
}
.hero .parallax {
  will-change: transform;
  transition: transform 0.2s cubic-bezier(.22,1,.36,1);
}
.hero h1 {
  font-size: 2.12rem; /* increased by 80% from 1.18rem */
  font-weight: 800;
  margin-bottom: 1.1rem;
  color: #fff;
  text-shadow: 0 2px 12px rgba(32,58,103,0.18);
  line-height: 1.2;
}

/* Service page hero styling */
.window-cleaning .hero h1,
.pressure-washing .hero h1,
.soft-washing .hero h1,
.christmas-light-installation .hero h1 {
  font-size: 2.5rem;
  color: var(--primary);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

/* Schedule appointment hero styling - match service page font size */
.schedule-appt .hero h1 {
  font-size: 2.5rem;
  color: var(--primary);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

/* Fix parallax overflow for service pages */
.window-cleaning .hero,
.pressure-washing .hero,
.soft-washing .hero,
.christmas-light-installation .hero {
  overflow: visible;
  min-height: 520px; /* Increased to accommodate parallax movement */
  padding-bottom: 60px; /* Add extra padding to prevent overflow */
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

/* Ensure CTA buttons stay within bounds */
.window-cleaning .hero .cta-buttons,
.pressure-washing .hero .cta-buttons,
.soft-washing .hero .cta-buttons,
.christmas-light-installation .hero .cta-buttons {
  position: relative;
  z-index: 2;
  margin-bottom: 20px; /* Add margin to prevent overlap */
  transform: translateZ(0); /* Force hardware acceleration */
}

/* Additional safety measures for hero overflow */
.window-cleaning .hero,
.pressure-washing .hero,
.soft-washing .hero,
.christmas-light-installation .hero {
  position: relative;
  z-index: 1;
}

/* Ensure next section doesn't get overlapped */
.window-cleaning .services-overview,
.pressure-washing .services-overview,
.soft-washing .services-overview,
.christmas-light-installation .services-overview {
  position: relative;
  z-index: 1;
  margin-top: 40px; /* Add extra space from hero */
}

@media (max-width: 700px) {
  .window-cleaning .hero h1,
  .pressure-washing .hero h1,
  .soft-washing .hero h1,
  .christmas-light-installation .hero h1 {
    font-size: 2rem;
  }
  
  .schedule-appt .hero h1 {
    font-size: 2rem;
  }
  
  /* Fix hero section to reach edge-to-edge on mobile */
  .hero {
    padding: 3rem 0 3rem 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
  }
}
.hero h1 .brand-orange.fancy-underline.white-underline {
  display: block;
  font-family: 'Titillium Web', sans-serif;
  font-size: 4.68rem; /* increased by 80% from 2.6rem */
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
@media (min-width: 900px) {
  .hero h1 {
    font-size: 1.18rem; /* match paragraph text size */
    font-weight: 800;
  }
  .hero h1 .brand-orange.fancy-underline.white-underline {
    font-family: 'Titillium Web', sans-serif;
    font-size: 5.76rem; /* increased by 80% from 3.2rem */
    font-weight: 600;
    letter-spacing: 0.02em;
  }
}
.hero p {
  font-size: 1.18rem;
  margin-bottom: 2rem;
  color: #eaf6ff;
  text-shadow: 0 1px 8px rgba(32,58,103,0.13);
}
.cta-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1.5rem; }
.cta { background: var(--cta); color: var(--white); padding: 0.75rem 2rem; border-radius: 4px; font-weight: bold; border: 2px solid var(--cta); transition: background 0.2s, color 0.2s; }
.cta.secondary { background: var(--white); color: var(--cta); border: 2px solid var(--cta); }
.cta:hover { background: var(--cta-hover); color: var(--white); }

/* Mobile CTA button improvements */
@media (max-width: 700px) {
  .cta {
    padding: 1rem 2.5rem; /* Increased padding for better touch target */
    font-size: 1.1rem; /* Slightly larger text */
    min-height: 48px; /* Ensure minimum touch target size */
  }
  .hero .cta-buttons {
    gap: 1.5rem; /* More spacing between buttons */
  }
}

/* Additional mobile hero fixes for smaller screens */
@media (max-width: 600px) {
  .hero {
    padding: 2rem 0 2rem 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    left: 0 !important;
    right: 0 !important;
    position: relative !important;
    overflow: hidden !important;
  }
  
  .hero-content {
    padding: 0 1rem;
    max-width: 100%;
  }
}

/* Ultra-aggressive hero section mobile fix */
@media (max-width: 900px) {
  section.hero,
  section.hero.fade-in-up,
  section.hero.fade-in-up.visible {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    left: 0 !important;
    right: 0 !important;
    position: relative !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }
  
  .hero-content {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
  }
}

/* Nuclear option - force hero section to full width */
section.hero,
section.hero.fade-in-up,
section.hero.fade-in-up.visible {
  width: 100vw !important;
  max-width: 100vw !important;
  min-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  left: 0 !important;
  right: 0 !important;
  position: relative !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  transform: translateX(0) !important;
}

/* Force main element to allow hero section to break out */
main {
  overflow: visible !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* Force body to allow hero section to break out */
body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
}

.gallery { padding: 2rem 1rem; max-width: 1100px; margin: 0 auto; }
.gallery h2 { text-align: center; margin-bottom: 1.5rem; }
.gallery-images { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.gallery-images img { width: 220px; height: 150px; object-fit: cover; border-radius: 6px; border: 1px solid #e0e0e0; }

.faq { background: #f8f8f8; padding: 2rem 1rem; }
.faq h2 { text-align: center; }
.accordion { max-width: 700px; margin: 2rem auto 0; }
.accordion-item { border-bottom: 1px solid #e0e0e0; }
.accordion-title { cursor: pointer; padding: 1rem; font-weight: bold; background: #fff; transition: background 0.2s; }
.accordion-title.active, .accordion-title:hover { background: #eaf6ff; }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; background: #fff; padding: 0 1rem; }
.accordion-content.open { padding: 1rem; max-height: 300px; }

.reviews { padding: 2rem 1rem; background: #fff; }
.reviews h2 { text-align: center; }
.reviews-list { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
.review { background: #f8f8f8; border-radius: 6px; padding: 1rem; max-width: 320px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.review .stars { color: #f5b301; font-size: 1.2rem; }

.services { padding: 2rem 1rem; background: #eaf6ff; }
.services h2 { text-align: center; }
.services ul { max-width: 600px; margin: 1rem auto 0; padding: 0; list-style: none; }
.services li { padding: 0.5rem 0; font-size: 1.1rem; }

.map { padding: 2rem 1rem; }
.map h2 { text-align: center; }
.map-embed { display: flex; justify-content: center; margin-top: 1rem; }
.map-embed iframe { border: 0; border-radius: 8px; width: 100%; max-width: 600px; height: 300px; }

.contact-hero { text-align: center; padding: 2rem 1rem 1rem; }

.about-hero {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 3rem 1rem;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(32,58,103,0.75) 0%, rgba(32,58,103,0.45) 100%);
  z-index: 0;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.about-hero h1 {
  font-size: 2.12rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
  color: #fff;
  text-shadow: 0 2px 12px rgba(32,58,103,0.18);
  line-height: 1.2;
}

.about-hero p {
  font-size: 1.1rem;
  color: #fff;
  text-shadow: 0 2px 16px rgba(32,58,103,0.32), 0 1px 8px rgba(0,0,0,0.18);
  line-height: 1.5;
  margin: 0;
}
.contact-form-section { display: flex; justify-content: center; padding: 2rem 1rem; }
#contact-form { background: #f8f8f8; padding: 2rem; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); max-width: 400px; width: 100%; display: flex; flex-direction: column; gap: 1rem; }
#contact-form label { font-weight: bold; }
#contact-form input, #contact-form textarea { padding: 0.5rem; border: 1px solid #ccc; border-radius: 4px; font-size: 1rem; }

/* Mobile form improvements */
@media (max-width: 700px) {
  #contact-form input,
  #contact-form textarea {
    padding: 0.75rem; /* Increase from 0.5rem */
    font-size: 1.1rem; /* Increase from 1rem */
    min-height: 44px; /* Minimum touch target */
  }
}
#contact-form button { background: #0077cc; color: #fff; border: none; padding: 0.75rem; border-radius: 4px; font-weight: bold; cursor: pointer; }
#contact-form button:hover { background: #005fa3; }

footer { background: var(--secondary); color: var(--white); text-align: center; padding: 1.5rem 1rem 1rem; margin-top: 2rem; }
footer a { color: var(--white); text-decoration: underline; }

/* Exit-intent popup */
#exit-intent-popup { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; z-index: 1000; }
#exit-intent-popup.hidden { display: none; }
#exit-intent-form { background: #fff; padding: 2rem; border-radius: 8px; box-shadow: 0 2px 16px rgba(0,0,0,0.12); display: flex; flex-direction: column; gap: 1rem; min-width: 280px; }
#exit-intent-form label { font-weight: bold; }
#exit-intent-form input { padding: 0.5rem; border: 1px solid #ccc; border-radius: 4px; font-size: 1rem; }
#exit-intent-form button { background: #0077cc; color: #fff; border: none; padding: 0.75rem; border-radius: 4px; font-weight: bold; cursor: pointer; }
#exit-intent-form button:hover { background: #005fa3; }

#exit-intent-popup .exit-popup-content {
  position: relative;
  background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
  padding: 3rem 2.5rem 2.5rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 48px rgba(32,58,103,0.25);
  min-width: 280px;
  max-width: 420px;
  width: 90vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid rgba(32,58,103,0.08);
}
.exit-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(32,58,103,0.05);
  border: none;
  font-size: 1.8rem;
  color: var(--secondary);
  cursor: pointer;
  line-height: 1;
  padding: 0.4em 0.6em;
  border-radius: 50%;
  transition: all 0.2s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exit-close:hover, .exit-close:focus {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}
#exit-intent-form h3 {
  margin: 0 0 0.8rem 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  line-height: 1.2;
}
#exit-intent-form p {
  margin: 0 0 1.5rem 0;
  color: #3a4a6b;
  font-size: 1rem;
  text-align: center;
  line-height: 1.6;
  max-width: 320px;
}
#exit-intent-form label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
  color: var(--secondary);
  font-size: 0.95rem;
}
#exit-intent-form input {
  width: 100%;
  margin-bottom: 1.5rem;
  padding: 0.8rem 1rem;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s ease;
  background: #fff;
}
#exit-intent-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(239,100,56,0.1);
}
#exit-intent-form button {
  width: 100%;
  font-size: 1.1rem;
  padding: 0.9rem 1.5rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(239,100,56,0.3);
}
#exit-intent-form button:hover {
  background: #d55a2e;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(239,100,56,0.4);
}

@media (max-width: 480px) {
  #exit-intent-popup .exit-popup-content {
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 95vw;
    min-width: 260px;
  }
  #exit-intent-form h3 {
    font-size: 1.3rem;
  }
  #exit-intent-form p {
    font-size: 0.95rem;
  }
  .exit-close {
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    font-size: 1.6rem;
  }
}

/* Gallery image hover effect */
.gallery-images img, .services img {
  transition: transform 0.3s cubic-bezier(.22,1,.36,1), box-shadow 0.3s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}
.gallery-images img:hover, .services img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(32,58,103,0.10);
}

/* Entrance animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s cubic-bezier(.22,1,.36,1), transform 0.6s cubic-bezier(.22,1,.36,1);
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}

/* Responsive styles */
@media (max-width: 900px) {
  .gallery-images { flex-direction: column; align-items: center; }
  .reviews-list { flex-direction: column; align-items: center; }
}
@media (max-width: 700px) {
  /* Ensure header takes full width */
  header, .site-header { 
    flex-direction: column; 
    align-items: flex-start; 
    padding: 1rem; 
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .header-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0.75rem 1rem !important;
  }
  
  nav ul { 
    flex-direction: column; 
    gap: 1rem; 
    background: #f8f8f8; 
    position: absolute; 
    top: 64px; 
    right: 0; 
    width: 200px; 
    padding: 1rem; 
    border-radius: 0 0 8px 8px; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.04); 
    display: none; 
  }
  
  nav ul.open { display: flex; }
  #hamburger { display: flex; margin-left: auto; }
}
@media (max-width: 500px) {
  /* Ensure full width on very small screens */
  body, html {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden;
  }
  
  /* All sections full width */
  .hero {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Mobile hero text size adjustments */
  .hero h1 {
    font-size: 1.2rem !important; /* Reduced by 40% from ~2rem */
  }
  
  .hero h1 .brand-orange.fancy-underline.white-underline {
    font-size: 1.68rem !important; /* Increased by 40% from ~1.2rem */
  }
  
  .customer-stats-section, 
  .how-it-works-section, .before-after-gallery, 
  .cta-contact-section, .trust-social-proof, .about-why,
  .gallery, .faq, .reviews, .services, .map {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  
  /* Special handling for services-overview to reduce spacing */
  .services-overview {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0.3rem 0.3rem 0.3rem 0.3rem !important;
  }
  
  /* Streamlined spacing fixes for schedule appointment page */
  .cta-contact-form-embed {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  
  /* Reduce spacing above the Jobber form container */
  .cta-contact-container {
    gap: 0.2rem !important;
  }
  
  /* Reduce spacing in the form info section */
  .cta-contact-info {
    margin-bottom: 0.1rem !important;
    padding-bottom: 0.1rem !important;
  }
  
  /* Target Jobber form container specifically */
  .cta-contact-form-embed > div {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  
  /* Target any iframe or embedded content */
  .cta-contact-form-embed iframe,
  .cta-contact-form-embed #3904be7c-e777-49de-82fc-f3f88076721c {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  
  /* Reduce spacing in the entire contact section */
  .cta-contact-section {
    padding: 0.5rem 0 0.5rem 0 !important;
  }
  
  .cta-contact-container {
    gap: 0 !important;
  }
  
  /* Target Jobber form's internal elements that get created dynamically */
  .cta-contact-form-embed iframe,
  .cta-contact-form-embed #3904be7c-e777-49de-82fc-f3f88076721c,
  .cta-contact-form-embed div[id*="3904be7c"],
  .cta-contact-form-embed .work-request-form,
  .cta-contact-form-embed .form-container,
  .cta-contact-form-embed .form-header,
  .cta-contact-form-embed .form-title {
    margin-top: 0 !important;
    padding-top: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  /* Target any dynamically created Jobber elements */
  [id*="3904be7c"] {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  
  /* Reduce form info spacing even more */
  .cta-contact-info {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  
  .cta-contact-heading {
    margin-bottom: 0 !important;
  }
  
  .cta-contact-subtext {
    margin-bottom: 0 !important;
  }
  
  .cta-contact-info {
    margin-bottom: 0.2rem !important;
  }
  
  .cta-contact-heading {
    margin-bottom: 0.1rem !important;
  }
  
  .cta-contact-subtext {
    margin-bottom: 0.2rem !important;
  }
  
  .service-card {
    padding: 0.3rem 0.3rem 0.2rem 0.3rem !important;
    margin-bottom: 0.1rem !important;
  }
  
  .service-cta {
    margin-top: 0.2rem !important;
    margin-bottom: 0 !important;
    padding: 0.3em 0.6em !important;
  }
  
  .services-heading {
    margin-bottom: 0.2rem !important;
  }
  
  .services-heading h2 {
    margin-bottom: 0.1rem !important;
  }
  
  .services-grid {
    gap: 0.2rem !important;
  }
  
  .hero h1 { 
    font-size: 2.12rem; /* increased by 80% from 1.18rem */
    font-weight: 800;
    line-height: 1.3;
  }
  
  .hero h1 .brand-orange.fancy-underline.white-underline {
    font-family: 'Titillium Web', sans-serif;
    font-size: 1.8rem; /* Add specific mobile size for brand name */
    font-weight: 600;
    letter-spacing: 0.02em;
  }
  
  .hero p {
    font-size: 1rem; /* Slightly smaller for better fit */
  }
  
  .gallery-images img { width: 100%; height: 120px; }

/* About page specific styling */
.about-content-section {
  padding: 4rem 0;
  background: var(--white);
}

.about-content-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-text-content {
  margin-bottom: 3rem;
}

.about-text-content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 1.1rem;
  color: var(--secondary);
}

.about-cta-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}

.about-cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(239,100,56,0.3);
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}

.about-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239,100,56,0.4);
  background: var(--cta-hover);
  border-color: var(--cta-hover);
}

.about-photo-section {
  padding: 4rem 0;
  background: var(--accent-bg);
  margin-top: 0;
  border-top: 1px solid var(--border);
  clear: both;
  display: block;
  position: relative;
  z-index: 1;
}

.about-photo-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-photo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-timmy-photo {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(32,58,103,0.2);
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-timmy-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(32,58,103,0.3);
}
  
  /* Mobile responsive for about hero */
  @media (max-width: 700px) {
    .about-hero {
      min-height: 300px;
      padding: 2rem 1rem;
    }
    
    .about-hero h1 {
      font-size: 2rem;
    }
    
    .about-hero p {
      font-size: 1rem;
    }
    
    .about-content-section {
      padding: 2rem 0;
    }
    
    .about-content-section .container {
      padding: 0 1rem;
    }
    
    .about-text-content p {
      font-size: 1rem;
      line-height: 1.5;
    }
    
    .about-cta-wrapper {
      margin-bottom: 1.5rem;
    }
    
    .about-cta-button {
      padding: 0.875rem 1.75rem;
      font-size: 1rem;
    }
    
    .about-photo-section {
      padding: 2rem 0;
    }
    
    .about-photo-section .container {
      padding: 0 1rem;
    }
    
    .about-timmy-photo {
      max-width: 100%;
      border-radius: 12px;
    }
  }

@media (min-width: 900px) {
  .about-content-section {
    padding: 5rem 0;
  }
  
  .about-content-section .container {
    padding: 0 3rem;
  }
  
  .about-text-content {
    margin-bottom: 4rem;
  }
  
  .about-text-content p {
    font-size: 1.2rem;
  }
  
  .about-cta-wrapper {
    margin-bottom: 3rem;
  }
  
  .about-cta-button {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
  }
  
  .about-photo-section {
    padding: 5rem 0;
  }
  
  .about-photo-section .container {
    padding: 0 3rem;
  }
  
  .about-timmy-photo {
    max-width: 700px;
  }
}
  
  #contact-form { 
    padding: 1rem; 
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Premium glowing underline with orange-to-white gradient */
.fancy-underline {
  position: relative;
  display: inline-block;
  z-index: 1;
  padding: 0 6px;
  border-radius: 3px;
}
.fancy-underline::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: -210%;
  width: 520%;
  height: 16px;
  background-image: url("data:image/svg+xml;utf8,<svg width='100%' height='100%' viewBox='0 0 1560 64' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M62 48 Q 416 20 780 40 Q 1144 60 1498 24' stroke='%23fff' stroke-width='28' stroke-linecap='round' fill='none'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
@keyframes fancy-underline-draw {
  to { transform: scaleX(1); }
}
@media (prefers-reduced-motion: reduce) {
  .fancy-underline::after { animation: none !important; transform: scaleX(1) !important; }
}

/* Premium Header Styles */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(32,58,103,0.07);
  z-index: 100;
  transition: box-shadow 0.2s;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
  gap: 2rem;
}
.header-inner.full-width {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2.5vw;
  box-sizing: border-box;
}
.header-left {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: flex-end;
  flex: 1 1 auto;
}
.logo-link { display: flex; align-items: center; }
.logo { height: 56px; width: auto; display: block; }
.main-nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: var(--secondary);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  padding: 0.25em 0.5em;
  border-radius: 3px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--primary);
  color: var(--white);
}
.header-cta.cta {
  margin-left: 2rem;
  font-size: 1.1rem;
  padding: 0.6em 1.4em;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  border: none;
  box-shadow: 0 2px 8px rgba(239,100,56,0.08);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  text-decoration: none;
  display: inline-block;
}
.header-cta.cta:hover, .header-cta.cta:focus {
  background: var(--cta-hover);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(239,100,56,0.13);
}
#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 1.5rem;
  z-index: 110;
}
#hamburger span {
  display: block;
  width: 30px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s;
}
main { min-height: 60vh; z-index: 1; position: relative; }
body { position: relative; z-index: 0; }
@media (max-width: 900px) {
  .header-inner.full-width { padding: 0.75rem 1vw; }
  .header-right { gap: 1rem; }
  .main-nav ul { gap: 1.5rem; }
  .header-cta.cta { margin-left: 1rem; font-size: 1rem; padding: 0.5em 1em; }
}
@media (max-width: 700px) {
  .header-inner { flex-wrap: wrap; gap: 1rem; }
  .header-right { flex-direction: row; gap: 0.5rem; }
  .main-nav ul {
    flex-direction: column;
    gap: 1.2rem;
    background: var(--white);
    position: absolute;
    top: 70px;
    right: 1rem;
    width: 220px;
    padding: 1.2rem 1rem;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 32px rgba(32,58,103,0.10);
    display: none;
    z-index: 120;
  }
  .main-nav ul.open { display: flex; }
  #hamburger { 
    display: flex; 
    padding: 8px; /* Add padding for larger touch target */
    min-width: 44px; /* Minimum touch target size */
    min-height: 44px;
  }
}

/* Premium Footer Styles */
.site-footer {
  background: #203A67;
  color: #fff;
  padding: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: 0 -2px 18px rgba(32,58,103,0.10);
  font-family: inherit;
  position: relative;
  z-index: 0;
}
.site-footer::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0; right: 0; height: 8px;
  background: linear-gradient(90deg, rgba(32,58,103,0.12) 0%, rgba(239,100,56,0.18) 50%, rgba(32,58,103,0.12) 100%);
  z-index: 2;
  pointer-events: none;
}
.footer-main {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 32px 24px 32px;
}
.footer-col {
  flex: 1 1 0;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.footer-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5em;
}
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  color: #eaf6ff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.18s;
}
.footer-contact-link:hover {
  color: #EF6438;
  text-decoration: underline;
}
.footer-phone {
  color: #EF6438 !important;
}
.footer-phone:hover {
  color: #fff !important;
  text-decoration: underline;
}
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
.footer-links-list a {
  color: #eaf6ff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-links-list a:hover {
  color: #EF6438;
  text-decoration: underline;
}

.footer-col.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-social-icons {
  display: flex;
  flex-direction: row;
  gap: 36px;
  margin-bottom: 18px;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.footer-social-icons a, .footer-social-icons a .footer-social-img {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  font-size: 2.1rem;
  border-radius: 50%;
  background: #fff0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s, box-shadow 0.3s, filter 0.3s;
  box-shadow: none;
  position: relative;
  overflow: visible;
  padding: 0;
}
.footer-social-icons a .footer-social-img {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  filter: brightness(0) invert(1);
}
.footer-social-icons svg {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
}
.footer-social-icons a::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #EF6438 0%, #fff 100%);
  border-radius: 2px;
  opacity: 0;
  transition: width 0.28s cubic-bezier(.22,1,.36,1), opacity 0.18s;
  pointer-events: none;
  z-index: 1;
}
.footer-social-icons a:hover::after, .footer-social-icons a:focus::after {
  width: 70%;
  left: 15%;
  opacity: 1;
}
.footer-social-icons a:hover, .footer-social-icons a:focus {
  transform: scale(1.18);
  background: #eaf6ff22;
  box-shadow: 0 2px 12px #EF643822, 0 0 18px 3px #EF643855;
  filter: drop-shadow(0 0 12px #EF643855);
}
.footer-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.98rem;
  color: #ffe082;
  margin-top: 2px;
}
.footer-star svg {
  vertical-align: middle;
  margin-right: 2px;
}
.footer-reviews {
  color: #eaf6ff;
  font-size: 0.98rem;
  opacity: 0.85;
  font-weight: 500;
}
.footer-bar {
  background: #18294b;
  padding: 12px 0 8px 0;
  border-radius: 0;
  box-shadow: 0 -1px 8px rgba(32,58,103,0.10);
  width: 100%;
}
.footer-bar-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.footer-copyright {
  font-size: 0.98rem;
  color: #eaf6ffcc;
  opacity: 0.7;
  text-align: center;
}
.footer-evolve {
  font-size: 0.98rem;
  color: #eaf6ffcc;
  opacity: 0.7;
  text-align: center;
}
.footer-evolve a {
  color: #EF6438;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.18s;
}
.footer-evolve a:hover {
  color: #fff;
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    gap: 32px;
    padding: 36px 12px 18px 12px;
    align-items: center;
    text-align: center;
  }
  .footer-bar-content {
    padding: 0 12px;
  }
  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-contact-list {
    align-items: center;
    text-align: center;
  }
  .footer-links-list {
    align-items: center;
    text-align: center;
  }
  .footer-social-icons {
    justify-content: center;
  }
  .footer-trust {
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 600px) {
  /* Ensure full width on mobile */
  body, html {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden;
  }
  
  /* Main sections full width */
  .hero, .services-overview, .customer-stats-section, 
  .how-it-works-section, .before-after-gallery, 
  .cta-contact-section, .trust-social-proof, .about-why {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Container elements full width */
  .hero-content, .services-grid, .customer-stats-grid,
  .how-stepper, .before-after-sliders, .cta-contact-container,
  .trust-container, .about-why-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }
  
  /* Footer full width */
  .site-footer {
    border-radius: 0;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .footer-main {
    padding: 24px 1rem 10px 1rem !important;
    gap: 18px;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .footer-title {
    font-size: 1.1rem; /* Ensure readable size */
  }
  
  .footer-links-list {
    gap: 2px !important;
  }
  
  .footer-links-list a,
  .footer-contact-list,
  .footer-reviews {
    font-size: 1rem; /* Ensure readable size */
  }
  
  .footer-bar {
    border-radius: 0;
    padding: 8px 1rem 4px 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .footer-bar-content {
    width: 100% !important;
    max-width: 100% !important;
  }
}

.exit-popup-content.small {
  min-width: 0;
  max-width: 380px;
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(32,58,103,0.18);
  gap: 0.8rem;
}
.exit-title {
  color: var(--secondary);
  font-size: 1.18rem;
  font-weight: 800;
  margin: 0 0 0.3rem 0;
  letter-spacing: 0.01em;
  text-align: center;
}
.exit-title {
  color: var(--secondary);
}
.exit-title strong {
  color: var(--primary);
}
.exit-desc {
  color: var(--secondary);
  font-size: 0.98rem;
  margin-bottom: 0.7rem;
  text-align: center;
}
#exit-intent-form label {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}
#exit-intent-form input {
  font-size: 1rem;
  padding: 0.5rem 0.7rem;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  margin-bottom: 0.7rem;
}
#exit-intent-form button {
  width: 100%;
  font-size: 1.05rem;
  font-weight: 700;
  background: var(--secondary);
  color: #fff;
  border-radius: 6px;
  padding: 0.7rem 0;
  margin-top: 0.2rem;
  box-shadow: 0 2px 8px rgba(32,58,103,0.08);
  border: none;
  transition: background 0.18s, color 0.18s;
}
#exit-intent-form button:hover, #exit-intent-form button:focus {
  background: var(--primary);
  color: #fff;
}
@media (min-width: 900px) {
  .hero {
    min-height: 520px;
    padding: 4.5rem 2rem 4rem 2rem;
    background-position: 10% 80%;
  }
  .hero p {
    font-size: 1.25rem;
  }
}

.brand-orange {
  color: var(--primary);
  display: inline-block;
  position: relative;
}

.hero-content {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-content {
    max-width: 100%;
    padding: 0 1rem;
  }
}
/* White brush stroke is now handled in the main .fancy-underline::after rule */

/* Premium Trust & Social Proof Section */
.trust-social-proof {
  background: linear-gradient(120deg, #f8f8f8 60%, #eaf6ff 100%);
  padding: 2.5rem 1rem 2.5rem 1rem;
  border-top: none;
  border-bottom: none;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.trust-social-proof::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  width: 700px; height: 340px;
  background: radial-gradient(circle at 30% 40%, #eaf6ff 0%, #f8f8f8 80%, transparent 100%);
  opacity: 0.45;
  z-index: 0;
  transform: translateX(-50%);
  pointer-events: none;
}
.trust-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.trust-headline {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 1.1rem;
  text-align: center;
  letter-spacing: 0.01em;
  max-width: 700px;
}
.trust-rating-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  justify-content: center;
}
.trust-stars svg {
  vertical-align: middle;
  margin-right: 0.2rem;
  filter: drop-shadow(0 2px 6px #f5b30133);
  width: 140px !important;
  height: 28px !important;
}
.trust-rating-text {
  font-size: 1.18rem;
  color: var(--primary);
  font-weight: 700;
}
.trust-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem 1.5rem;
  width: 100%;
  margin-top: 0.5rem;
  z-index: 1;
}
.trust-review {
  background: linear-gradient(135deg, #fff 80%, #f3f7fa 100%);
  border-radius: 18px;
  border: 1px solid rgba(32,58,103,0.07);
  box-shadow: 0 6px 32px rgba(32,58,103,0.10), 0 1.5px 6px rgba(239,100,56,0.07);
  padding: 1.5rem 1.3rem 1.2rem 1.3rem;
  font-size: 1.13rem;
  color: var(--secondary);
  line-height: 1.7;
  border-left: 5px solid var(--primary);
  min-height: 120px;
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.7s cubic-bezier(.22,1,.36,1) forwards;
  transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
}
.trust-review:hover {
  box-shadow: 0 12px 48px rgba(32,58,103,0.16), 0 2px 8px rgba(239,100,56,0.10);
  border-left: 5px solid #f5b301;
  transform: translateY(-6px) scale(1.035);
}
.trust-review .review-author {
  display: block;
  font-size: 0.97rem;
  font-style: italic;
  color: #3a4a6b;
  margin-top: 0.7em;
  margin-bottom: 0.1em;
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.01em;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.trust-review:nth-child(1) { animation-delay: 0.1s; }
.trust-review:nth-child(2) { animation-delay: 0.2s; }
.trust-review:nth-child(3) { animation-delay: 0.3s; }
.trust-review:nth-child(4) { animation-delay: 0.4s; }
.trust-review:nth-child(5) { animation-delay: 0.5s; }
.trust-review:nth-child(6) { animation-delay: 0.6s; }
@media (max-width: 900px) {
  .trust-headline { font-size: 1.5rem; }
  .trust-reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .trust-headline { font-size: 1.2rem; }
  .trust-reviews-grid { grid-template-columns: 1fr; }
  .trust-social-proof { padding: 1.5rem 0.5rem 1.5rem 0.5rem; }
  /* Limit to 3 reviews on mobile - hide reviews 4, 5, and 6 */
  .trust-review:nth-child(4),
  .trust-review:nth-child(5),
  .trust-review:nth-child(6) {
    display: none !important;
  }
  /* Increase star rating size for better visibility */
  .trust-stars svg {
    width: 140px; /* Increase from 120px */
    height: 28px; /* Increase from 24px */
  }
}

/* About Us / Why Choose Us Section */
.about-why {
  background: linear-gradient(120deg, #fff 70%, #f8f8f8 100%);
  padding: 3.5rem 1rem 3.5rem 1rem;
  margin-bottom: 2.5rem;
  border-radius: 18px;
  box-shadow: 0 2px 24px rgba(32,58,103,0.06);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.about-why-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.5rem;
  flex-wrap: wrap;
}
.about-why-text {
  flex: 1 1 340px;
  min-width: 260px;
}
.about-why-text h2 {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
}
.about-why-text p {
  color: var(--secondary);
  font-size: 1.13rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.about-why-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.about-why-benefits li {
  background: #fff7f2;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: 8px;
  padding: 0.7em 1.2em;
  box-shadow: 0 1px 6px rgba(239,100,56,0.07);
  transition: box-shadow 0.18s, background 0.18s;
  cursor: default;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeInUp 0.7s cubic-bezier(.22,1,.36,1) forwards;
}
.about-why-benefits li:nth-child(1) { animation-delay: 0.15s; }
.about-why-benefits li:nth-child(2) { animation-delay: 0.3s; }
.about-why-benefits li:nth-child(3) { animation-delay: 0.45s; }
.about-why-benefits li:hover {
  background: #ffe5d1;
  box-shadow: 0 4px 18px rgba(239,100,56,0.13);
}
.about-why-photo {
  flex: 0 0 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.9s cubic-bezier(.22,1,.36,1) forwards;
  animation-delay: 0.2s;
}
.about-why-photo img {
  width: 220px;
  height: 320px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 6px 32px rgba(32,58,103,0.13);
  border: 4px solid #fff;
  background: #f8f8f8;
  display: block;
}
@media (max-width: 900px) {
  .about-why-photo img {
    width: 180px;
    height: 260px;
  }
  /* Improve about section text readability on mobile */
  .about-why-text p {
    font-size: 1.1rem; /* Increase from 1.13rem */
    line-height: 1.8; /* Increase line height */
  }
  .about-why-benefits li {
    font-size: 1rem; /* Increase from 1.08rem */
    padding: 0.8em 1.4em; /* More padding */
  }
}
@media (max-width: 600px) {
  .about-why-photo {
    display: none; /* Hide photo on mobile */
  }
}

/* Services Overview Section */
.services-overview {
  background: #fff;
  padding: 1.5rem 1rem 1rem 1rem;
  margin-bottom: 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch;
  justify-items: center;
  max-width: 800px;
  margin: 0 auto;
}
.service-card {
  width: 100%;
  max-width: 350px;
  background: #f8fafd;
  border-radius: 22px;
  box-shadow: 0 4px 32px rgba(32,58,103,0.09);
  padding: 2.2rem 1.5rem 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  transition: box-shadow 0.18s, transform 0.18s;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.service-card img {
  width: 100%;
  height: 252px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 12px rgba(32,58,103,0.07);
  background: #eaf6ff;
}

/* Christmas Light Installation image focus adjustment for desktop */
@media (min-width: 701px) {
  .service-card:nth-child(4) img {
    object-position: center 60%;
  }
}
@media (max-width: 700px) {
  .service-card img {
    height: 320px !important; /* Doubled from 160px for better visual appeal */
    min-height: 320px !important;
    max-height: none !important;
    object-fit: cover;
    width: 100%;
    display: block;
  }
  
  /* Window cleaning image (first service card) - shift focus down 5% */
  .service-card:nth-child(1) img {
    object-position: center 10% !important; /* Shift focus down 5% from previous 5% */
  }
  
  /* Christmas light installation image (fourth service card) - shift focus down 75% */
  .service-card:nth-child(4) img {
    object-position: center 75% !important; /* Shift focus down 75% from center (moved down 40% from previous 35%) */
  }

}
.service-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.7rem;
  margin-top: 0.2rem;
}
.service-card ul {
  margin: 0 0 1.2rem 0;
  padding-left: 1.1em;
  color: #3a4a6b;
  font-size: 1.05rem;
  line-height: 1.6;
}
.service-card ul li {
  margin-bottom: 0.3em;
}

/* Reduce spacing between description text and CTA buttons */
.service-card p {
  margin-bottom: 0.1rem;
  margin-top: 0.1rem;
}
.service-cta {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  padding: 0.6em 1.4em;
  text-decoration: none;
  font-size: 1.07rem;
  box-shadow: 0 2px 8px rgba(32,58,103,0.07);
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  margin-top: auto;
  align-self: flex-start;
}
.service-cta:hover, .service-cta:focus {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px rgba(32,58,103,0.13);
}
.service-card:hover {
  box-shadow: 0 8px 36px rgba(32,58,103,0.15);
  transform: translateY(-4px) scale(1.025);
  z-index: 1;
}
@media (max-width: 700px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    justify-items: stretch;
  }
  .service-card {
    max-width: 100%;
    padding: 1.2rem 0.7rem 0.8rem 0.7rem;
    height: 100%;
  }
  .service-card img {
    height: 320px;
  }
  .service-card h3 {
    font-size: 1.25rem;
  }
  .service-card ul {
    font-size: 1rem;
  }
  .service-card ul li {
    margin-bottom: 0.5em;
  }
  
  /* Reduce spacing above CTA buttons in service cards */
  .service-card p {
    margin-bottom: 0;
    margin-top: 0.1rem;
  }
  
  /* Reduce spacing for services heading on mobile */
  .services-heading {
    margin-bottom: 0.5rem;
  }

}

.services-heading {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 2.1rem;
  text-align: center;
  letter-spacing: 0.01em;
}

.customer-stats-section {
  background: linear-gradient(120deg, #f8f8f8 60%, #eaf6ff 100%);
  padding: 4rem 1rem 3.2rem 1rem;
  max-width: 1100px;
  margin: 0 auto 3.5rem auto;
  border-radius: 24px;
  box-shadow: 0 6px 32px rgba(32,58,103,0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.customer-stats-section::before {
  display: none !important;
}
.customer-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.8rem;
  width: 100%;
  margin-bottom: 2.2rem;
  position: relative;
  z-index: 1;
}
.customer-stat-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(32,58,103,0.10);
  border: 1.5px solid #eaf6ff;
  padding: 2.7rem 1.7rem 2.2rem 1.7rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  min-width: 0;
  transition: box-shadow 0.18s, transform 0.18s, border 0.18s;
  position: relative;
  overflow: hidden;
  justify-content: flex-start;
  flex-direction: column;
}
.customer-stat-card:hover {
  box-shadow: 0 12px 40px rgba(32,58,103,0.16);
  border: 1.5px solid var(--primary);
  transform: translateY(-4px) scale(1.03);
  z-index: 2;
}
.stat-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(32,58,103,0.08);
  margin-bottom: 0.7rem;
  font-size: 2.86rem;
}
.stat-icon svg polygon, .stat-icon svg path {
  fill: #EF6438 !important;
}
.stat-headline {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.5rem;
  margin-top: 0;
  letter-spacing: 0.01em;
  position: relative;
  display: inline-block;
}
.stat-headline::after {
  content: '';
  display: block;
  width: 44px;
  height: 5px;
  margin-top: 0.3em;
  background: linear-gradient(90deg, #EF6438 60%, #ffb347 100%);
  border-radius: 3px;
  opacity: 0.7;
  animation: fadeInUnderline 1.2s 0.2s both;
}
@keyframes fadeInUnderline {
  from { width: 0; opacity: 0; }
  to { width: 44px; opacity: 0.7; }
}
.stat-subtext {
  color: #3a4a6b;
  font-size: 1.09rem;
  opacity: 0.88;
  margin-bottom: 0.2em;
}
.customer-stats-cta {
  margin-top: 1.2rem;
  text-align: center;
  z-index: 1;
}
.read-reviews-link {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.13rem;
  text-decoration: none;
  background: var(--primary);
  border-radius: 10px;
  padding: 0.7em 1.7em 0.7em 1.3em;
  box-shadow: 0 2px 12px rgba(32,58,103,0.10);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
  gap: 0.7em;
}
.read-reviews-link:hover, .read-reviews-link:focus {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 8px 32px rgba(32,58,103,0.13);
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 900px) {
  .customer-stats-section {
    padding: 2.2rem 0.5rem 2.2rem 0.5rem;
    max-width: 99vw;
  }
  .customer-stats-grid {
    gap: 1.2rem;
  }
  .customer-stat-card {
    padding: 1.5rem 0.7rem 1.2rem 0.7rem;
  }
}
@media (max-width: 700px) {
  .customer-stats-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .customer-stat-card {
    flex-direction: row;
    align-items: flex-start;
    padding: 1.3rem 0.7rem 1.1rem 0.7rem;
  }
  .stat-icon {
    width: 57px;
    height: 57px;
    font-size: 1.69rem;
  }
  .stat-headline::after {
    width: 32px;
  }
}

.customer-stats-heading {
  font-size: 2rem;
  font-weight: 800;
  color: #EF6438;
  margin-bottom: 2.2rem;
  text-align: center;
  letter-spacing: 0.01em;
}

.how-it-works-section {
  background: linear-gradient(120deg, #f8f8f8 60%, #eaf6ff 100%);
  padding: 4rem 1rem 3.2rem 1rem;
  max-width: 1100px;
  margin: 0 auto 3.5rem auto;
  border-radius: 24px;
  box-shadow: 0 6px 32px rgba(32,58,103,0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.how-it-works-heading {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 2.2rem;
  text-align: center;
  letter-spacing: 0.01em;
}
.how-step-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(32,58,103,0.08);
  margin-bottom: 1.1rem;
  font-size: 2.2rem;
}
.how-it-works-cta {
  margin-top: 1.2rem;
  margin-bottom: 3rem;
  text-align: center;
  z-index: 1;
}
.how-cta-btn {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.13rem;
  text-decoration: none;
  background: var(--primary);
  border-radius: 10px;
  padding: 0.7em 1.7em 0.7em 1.3em;
  box-shadow: 0 2px 12px rgba(32,58,103,0.10);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
  gap: 0.7em;
}
.how-cta-btn:hover, .how-cta-btn:focus {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 8px 32px rgba(32,58,103,0.13);
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 900px) {
  .how-it-works-section {
    padding: 2.2rem 0.5rem 2.2rem 0.5rem;
    max-width: 99vw;
  }
}
@media (max-width: 700px) {
  .how-step-card {
    max-width: 100%;
    min-height: 240px;
    padding: 2rem 1.2rem 2rem 1.2rem;
    margin: 0 auto 1rem auto;
  }
  .how-step-icon {
    width: 56px;
    height: 56px;
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .how-step-content h3 {
    font-size: 1.2rem;
  }
  .how-step-content p {
    font-size: 1rem;
  }
  .how-it-works-cta {
    margin-bottom: 2rem;
  }
}

.how-stepper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  gap: 0;
  width: 100%;
  max-width: 520px;
  margin: 0 auto 2.5rem auto;
}
.how-step-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(32,58,103,0.10);
  border: 1.5px solid #eaf6ff;
  padding: 2.2rem 1.5rem 2.2rem 1.5rem;
  width: 100%;
  max-width: 450px;
  min-height: 280px;
  box-sizing: border-box;
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 0 auto 0.5rem auto;
  position: relative;
  z-index: 2;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.how-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(32,58,103,0.15);
}
.how-step-icon {
  width: 64px;
  height: 64px;
  font-size: 2rem;
  margin-bottom: 1.1rem;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaf6ff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(32,58,103,0.07);
}
.how-step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
  margin-top: 0;
  font-weight: 800;
  color: var(--primary);
}
.how-step-content p {
  font-size: 1.12rem;
  line-height: 1.8;
  margin-bottom: 0;
  margin-top: 0;
  color: #3a4a6b;
}
.how-step-connector {
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, #eaf6ff 60%, #f8f8f8 100%);
  margin: 0 auto 0.5rem auto;
  border-radius: 2px;
  z-index: 1;
}
@media (min-width: 900px) {
  .how-stepper {
    max-width: 1200px;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 1rem;
  }
  .how-step-card {
    max-width: 380px;
    min-height: 320px;
    margin: 0;
    padding: 2.5rem 1.5rem 2.5rem 1.5rem;
    flex: 1;
  }
  .how-step-connector {
    width: 24px;
    height: 4px;
    background: linear-gradient(90deg, #eaf6ff 60%, #f8f8f8 100%);
    margin: 0 0.5rem;
    align-self: center;
  }
}

.site-header, header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(32,58,103,0.07);
  transition: box-shadow 0.18s;
}

.before-after-gallery {
  background: linear-gradient(120deg, #f8f8f8 60%, #eaf6ff 100%);
  padding: 4rem 1rem 3.2rem 1rem;
  max-width: 1100px;
  margin: 0 auto 3.5rem auto;
  border-radius: 24px;
  box-shadow: 0 6px 32px rgba(32,58,103,0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.before-after-heading {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 2.2rem;
  text-align: center;
  letter-spacing: 0.01em;
  display: block;
}
.before-after-sliders {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.before-after-slider {
  max-width: 520px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.2rem;
  padding: 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(32,58,103,0.10);
  border: 1.5px solid #eaf6ff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.slider-container {
  max-width: 520px;
  width: 100%;
  aspect-ratio: 16/9;
  margin-left: auto;
  margin-right: auto;
  border-radius: 14px;
  overflow: hidden;
  background: #eaf6ff;
  box-shadow: 0 2px 12px rgba(32,58,103,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Service page slider - beautiful design */
.window-cleaning .slider-container,
.pressure-washing .slider-container,
.soft-washing .slider-container,
.christmas-light-installation .slider-container {
  max-width: 400px !important;
  width: 100% !important;
  aspect-ratio: 16/10;
  margin: 3rem auto 2rem auto !important;
  position: relative !important;
  overflow: hidden !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 32px rgba(32,58,103,0.15) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.window-cleaning .slider-container:hover,
.pressure-washing .slider-container:hover,
.soft-washing .slider-container:hover,
.christmas-light-installation .slider-container:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 40px rgba(32,58,103,0.2) !important;
}

/* Beautiful service page before/after sections */
.window-cleaning .before-after-gallery,
.pressure-washing .before-after-gallery,
.soft-washing .before-after-gallery,
.christmas-light-installation .before-after-gallery {
  padding: 4rem 2rem 4rem 2rem !important;
  background: linear-gradient(135deg, #f8fafd 0%, #eaf6ff 100%) !important;
  border-radius: 24px !important;
  margin: 2rem auto !important;
  max-width: 1200px !important;
  box-shadow: 0 4px 20px rgba(32,58,103,0.08) !important;
}

.window-cleaning .before-after-heading,
.pressure-washing .before-after-heading,
.soft-washing .before-after-heading,
.christmas-light-installation .before-after-heading {
  margin-bottom: 3rem !important;
  text-align: center !important;
  width: 100% !important;
  position: static !important;
  z-index: auto !important;
}

.window-cleaning .before-after-heading h2,
.pressure-washing .before-after-heading h2,
.soft-washing .before-after-heading h2,
.christmas-light-installation .before-after-heading h2 {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  color: var(--primary) !important;
  margin-bottom: 1.5rem !important;
  text-shadow: 0 2px 8px rgba(32,58,103,0.1) !important;
  text-align: center !important;
}

.window-cleaning .before-after-heading p,
.pressure-washing .before-after-heading p,
.soft-washing .before-after-heading p,
.christmas-light-installation .before-after-heading p {
  font-size: 1.1rem !important;
  color: #4a5568 !important;
  line-height: 1.6 !important;
  max-width: 600px !important;
  margin: 0 auto !important;
  text-align: center !important;
}

.window-cleaning .before-after-sliders,
.pressure-washing .before-after-sliders,
.soft-washing .before-after-sliders,
.christmas-light-installation .before-after-sliders {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  position: static !important;
  align-items: center !important;
}

.window-cleaning .before-after-slider,
.pressure-washing .before-after-slider,
.soft-washing .before-after-slider,
.christmas-light-installation .before-after-slider {
  background: white !important;
  border-radius: 20px !important;
  padding: 2rem !important;
  box-shadow: 0 4px 16px rgba(32,58,103,0.1) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  max-width: 500px !important;
  width: 100% !important;
}

.window-cleaning .before-after-slider:hover,
.pressure-washing .before-after-slider:hover,
.soft-washing .before-after-slider:hover,
.christmas-light-installation .before-after-slider:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(32,58,103,0.15) !important;
}

.window-cleaning .before-after-slider h3,
.pressure-washing .before-after-slider h3,
.soft-washing .before-after-slider h3,
.christmas-light-installation .before-after-slider h3 {
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  color: var(--primary) !important;
  text-align: center !important;
  margin-bottom: 1.5rem !important;
}
.slider-container img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  user-select: none;
  pointer-events: none;
}
.slider-container .before-img {
  z-index: 1;
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.05s;
}
.slider-container .after-img {
  z-index: 2;
  clip-path: inset(0 0 0 50%);
  transition: clip-path 0.05s;
}
.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: #fff;
  border: 4px solid #EF6438;
  border-radius: 50%;
  z-index: 3;
  cursor: ew-resize;
  box-shadow: 0 4px 20px rgba(32,58,103,0.2);
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.slider-handle:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 24px rgba(32,58,103,0.25);
  border-color: #d94a1f;
}
.slider-handle:focus {
  border: 4px solid #203A67;
  box-shadow: 0 4px 18px rgba(32,58,103,0.18);
}
.slider-handle::before, .slider-handle::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.slider-handle::before {
  border-right: 14px solid #203A67;
  margin-right: 4px;
}
.slider-handle::after {
  border-left: 14px solid #203A67;
  margin-left: 4px;
}
@media (max-width: 900px) {
  .before-after-gallery {
    padding: 2.2rem 0.5rem 2.2rem 0.5rem;
    max-width: 99vw;
  }
  .before-after-sliders {
    gap: 1.5rem;
  }
  .before-after-slider {
    max-width: 99vw;
  }
  .slider-container {
    max-width: 99vw;
    aspect-ratio: 16/10;
  }
}
.before-after-gallery {
  margin-top: 0 !important;
  padding-top: 0 !important;
  min-height: 0 !important;
}
.before-after-sliders {
  min-height: 0 !important;
}
.how-it-works-section {
  margin-bottom: 1.5rem !important;
  padding-bottom: 0 !important;
}

.before-after-label {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1rem;
  padding: 0 0.5rem;
}

.before-after-label span {
  background: rgba(239, 100, 56, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.before-after-label span:hover {
  background: rgba(239, 100, 56, 0.15);
  transform: translateY(-1px);
}

.before-after-gallery h3 {
  margin-top: 0 !important;
  margin-bottom: 0.1rem !important;
  font-size: 1.25rem;
  color: #EF6438;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.before-after-slider,
.slider-container,
figure.before-after-slider {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* CTA / Contact Section - Premium Design */
.cta-contact-section {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  position: relative !important;
  z-index: 1 !important;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 25%, #eaf6ff 75%, #d1e7ff 100%) !important;
  padding: 50px 0 30px 0 !important;
  margin: 0 auto !important;
  border-radius: 32px !important;
  max-width: 1200px !important;
  box-shadow: 0 8px 32px rgba(32,58,103,0.08), 0 2px 8px rgba(32,58,103,0.04), inset 0 1px 0 rgba(255,255,255,0.8) !important;
}

.cta-contact-container {
  display: flex !important;
  flex-direction: row !important;
  gap: 56px !important;
  align-items: flex-start !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 0 32px !important;
  position: relative !important;
  z-index: 1 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Ensure mobile overrides work properly */
@media (max-width: 900px) {
  .cta-contact-container {
    flex-direction: column !important;
    align-items: center !important;
  }
}

.cta-contact-info {
  flex: 0 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  min-width: 320px !important;
  position: relative !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.cta-contact-form-embed {
  flex: 1 1 420px !important;
  min-width: 320px !important;
  max-width: 520px !important;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%) !important;
  border-radius: 24px !important;
  box-shadow: 0 8px 32px rgba(32,58,103,0.08), 0 2px 8px rgba(32,58,103,0.04), inset 0 1px 0 rgba(255,255,255,0.8) !important;
  padding: 40px 24px 32px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  min-height: 1687px !important;
  height: 1687px !important;
  margin: 0 auto !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  position: relative !important;
  overflow: visible !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.cta-contact-form-embed iframe,
.cta-contact-form-embed #3904be7c-e777-49de-82fc-f3f88076721c {
  width: 100% !important;
  min-height: 1687px !important;
  height: 1687px !important;
  border: none !important;
  background: transparent !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

/* Target all Jobber form containers across the site */
#3904be7c-e777-49de-82fc-f3f88076721c {
  min-height: 1687px !important;
  height: 1687px !important;
  width: 100% !important;
  border: none !important;
  background: transparent !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  margin: 0 auto !important;
}

/* Ensure Jobber form is always centered */
.cta-contact-form-embed,
.cta-contact-form-embed > div,
.cta-contact-form-embed iframe,
.cta-contact-form-embed #3904be7c-e777-49de-82fc-f3f88076721c {
  margin: 0 auto !important;
  display: block !important;
}

/* Remove any animation delays that might hide elements */
.cta-contact-section.fade-in-up,
.cta-contact-info,
.cta-contact-form-embed {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

.cta-contact-heading {
  font-size: 2.4rem;
  font-weight: 800;
  color: #EF6438;
  margin-bottom: 0.1em;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 2px rgba(239,100,56,0.1);
}
.cta-contact-subtext {
  font-size: 1.2rem;
  color: #203A67;
  margin-bottom: 0.2em;
  line-height: 1.5;
  font-weight: 500;
}
.cta-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-contact-list li {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  color: #203A67;
  gap: 12px;
  font-weight: 500;
}
.cta-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
}
.cta-contact-link {
  color: #203A67;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.18s;
}
.cta-contact-link:hover {
  color: #EF6438;
  text-decoration: underline;
}
.cta-contact-hours {
  color: #203A67;
  font-weight: 500;
}
.cta-contact-btn {
  background: linear-gradient(135deg, #EF6438 0%, #e55a2e 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  border-radius: 36px;
  padding: 16px 40px;
  margin: 20px 0 0 0;
  box-shadow: 
    0 4px 16px rgba(239,100,56,0.25),
    0 2px 8px rgba(32,58,103,0.12),
    inset 0 1px 0 rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cta-contact-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: left 0.5s;
}
.cta-contact-btn:hover, .cta-contact-btn:focus {
  background: linear-gradient(135deg, #203A67 0%, #1a2f4f 100%);
  color: #fff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 8px 24px rgba(32,58,103,0.25),
    0 4px 12px rgba(32,58,103,0.15);
}

.cta-contact-btn:hover::before {
  left: 100%;
}
.cta-contact-photo {
  margin-top: 18px;
  max-width: 260px;
  min-height: 340px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 8px 24px rgba(32,58,103,0.12),
    0 2px 8px rgba(32,58,103,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-contact-photo:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 12px 32px rgba(32,58,103,0.18),
    0 4px 12px rgba(32,58,103,0.08);
}
.cta-contact-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.cta-contact-photo:hover img {
  transform: scale(1.05);
}
@media (max-width: 900px) {
  .cta-contact-photo {
    max-width: 180px;
    min-height: 220px;
  }
}
@media (max-width: 600px) {
  .cta-contact-photo {
    max-width: 120px;
    min-height: 120px;
  }
}
.cta-contact-form-embed {
  flex: 1 1 420px;
  min-width: 320px;
  max-width: 520px;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 24px;
  box-shadow: 
    0 8px 32px rgba(32,58,103,0.08),
    0 2px 8px rgba(32,58,103,0.04),
    inset 0 1px 0 rgba(255,255,255,0.8);
  padding: 40px 24px 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-height: 2000px;
  height: auto;
  margin: 0 auto;
  margin-top: 0;
  margin-bottom: 0;
  animation: fadeInUp 0.7s cubic-bezier(.23,1.01,.32,1) 0.1s both;
  position: relative;
  overflow: visible;
}

.cta-contact-form-embed::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 90%, rgba(239,100,56,0.02) 0%, transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(32,58,103,0.01) 0%, transparent 50%);
  pointer-events: none;
}
.cta-contact-form-embed iframe,
.cta-contact-form-embed #3904be7c-e777-49de-82fc-f3f88076721c {
  width: 100% !important;
  min-height: 2000px !important;
  height: auto !important;
  border: none !important;
  background: transparent !important;
}
@media (max-width: 900px) {
  .cta-contact-container {
    flex-direction: column !important;
    gap: 36px;
    padding: 0 8px;
    align-items: center !important;
  }
  .cta-contact-info {
    min-width: 0;
    max-width: 100%;
    width: 100% !important;
    text-align: center;
  }
  .cta-contact-form-embed {
    min-width: 0;
    max-width: 100%;
    width: 100% !important;
    padding: 24px 4px 18px 4px;
    flex: none !important;
    margin: 0 auto !important;
  }
  .cta-contact-photo {
    max-width: 120px;
    margin-left: 0;
    margin-right: auto;
  }
}
@media (max-width: 600px) {
  .cta-contact-section {
    padding: 24px 0 16px 0;
    border-radius: 0;
  }
  .cta-contact-container {
    flex-direction: column !important;
    padding: 0 2px;
    gap: 12px;
    align-items: center !important;
  }
  .cta-contact-info {
    gap: 0.5rem;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center;
  }
  .cta-contact-heading {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
  }
  .cta-contact-subtext {
    margin-bottom: 0.5rem;
  }
  .cta-contact-form-embed {
    padding: 5px 0 5px 0;
    min-height: 1687px;
    height: 1687px;
    margin: 0 auto;
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
  }
  .cta-contact-photo {
    display: none !important; /* Hide photo on mobile only */
  }
}
/* Fade-in animation for section */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.cta-contact-section.fade-in-up, .cta-contact-info, .cta-contact-form-embed {
  animation: fadeInUp 0.7s cubic-bezier(.23,1.01,.32,1) 0.1s both;
}

.footer-col.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.7em;
  max-width: 180px;
  height: auto;
}

/* Footer Spacing Overrides - Consolidated from footer-overrides.css */
/* Drastically reduce gap between footer column elements */
.footer-col.footer-links {
  gap: 0px !important;
}

.footer-col.footer-social {
  gap: 0px !important;
  align-items: center !important;
  text-align: center !important;
}

.footer-col.footer-contact {
  gap: 0px !important;
}

/* Drastically reduce all footer spacing */
.footer-main {
  gap: 8px !important;
  padding: 24px 32px 12px 32px !important;
}

.footer-title {
  margin-bottom: 0.2em !important;
  margin-top: 0 !important;
}

.footer-contact-list {
  gap: 2px !important;
}

.footer-social-icons {
  margin-bottom: 8px !important;
}

/* Improve clickability and spacing for footer links */
.footer-links-list a {
  line-height: 1.4 !important;
  padding: 2px 0 !important;
  display: block !important;
  min-height: 24px !important;
  display: flex !important;
  align-items: center !important;
}

/* Improve social media icons for better mobile experience */
.footer-social-icons a {
  min-width: 44px !important;
  min-height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Ensure list items have minimal spacing */
.footer-links-list li {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.4 !important;
}

/* Mobile-specific overrides for tighter spacing */
@media (max-width: 600px) {
  .footer-col.footer-links {
    gap: 0px !important;
    text-align: center !important;
    align-items: center !important;
  }
  
  .footer-col.footer-social {
    gap: 0px !important;
    align-items: center !important;
    text-align: center !important;
  }
  
  .footer-col.footer-contact {
    gap: 0px !important;
    text-align: center !important;
    align-items: center !important;
  }
  
  .footer-main {
    gap: 4px !important;
    padding: 16px 20px 8px 20px !important;
    justify-content: center !important;
    align-items: center !important;
  }
  
  .footer-title {
    margin-bottom: 0.1em !important;
    margin-top: 0 !important;
  }
  
  .footer-contact-list {
    gap: 1px !important;
  }
  
  .footer-social-icons {
    margin-bottom: 4px !important;
  }
  
  /* Mobile-specific link improvements */
  .footer-links-list a {
    padding: 4px 0 !important;
    min-height: 28px !important;
    font-size: 0.95rem !important;
  }
  
  .footer-links-list li {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.3 !important;
  }
  
  /* Mobile social icon improvements */
  .footer-social-icons a {
    min-width: 48px !important;
    min-height: 48px !important;
  }
  
  .footer-social-icons svg,
  .footer-social-icons img {
    width: 32px !important;
    height: 32px !important;
  }
  
  /* Force grid layout on mobile with higher specificity */
  .site-footer .footer-main .footer-col.footer-links .footer-links-list {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px 16px !important;
    align-items: center !important;
    justify-items: center !important;
    flex-direction: unset !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }
  
  .site-footer .footer-main .footer-col.footer-links .footer-links-list li {
    width: auto !important;
    text-align: center !important;
    margin-bottom: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .site-footer .footer-main .footer-col.footer-links .footer-links-list a {
    display: block !important;
    width: auto !important;
    text-align: center !important;
    padding: 4px 0 !important;
    min-height: 28px !important;
    font-size: 0.95rem !important;
  }
}

/* ===== ROBUST MOBILE RESPONSIVENESS ===== */

/* Base mobile-first approach */
@media (max-width: 600px) {
  /* Ensure proper viewport handling */
  body, html {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }
  
  /* Prevent any horizontal scrolling */
  * {
    max-width: 100%;
    box-sizing: border-box;
  }
  
  /* Ensure images scale properly */
  img {
    height: auto;
    max-width: 100%;
  }
  
  /* Fix any remaining overflow issues */
  .hero, .services-overview, .customer-stats-section,
  .how-it-works-section, .before-after-gallery,
  .cta-contact-section, .trust-social-proof, .about-why {
    overflow: hidden;
  }
  
  /* Container and layout fixes */
  .hero, .customer-stats-section, 
  .how-it-works-section, .before-after-gallery, 
  .cta-contact-section, .trust-social-proof, .about-why,
  .gallery, .faq, .reviews, .services, .map,
  .services-overview {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    box-sizing: border-box;
  }
  
  /* Hero section improvements */
  .hero {
    min-height: 400px;
    padding: 2rem 1rem;
    background-position: center center;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background-size: cover !important;
    background-repeat: no-repeat !important;
  }
  
  .hero h1 {
    font-size: 1.8rem !important;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .hero h1 .brand-orange.fancy-underline.white-underline {
    font-size: 1.6rem !important;
    font-weight: 600;
  }
  
  .hero p {
    font-size: 1rem;
    line-height: 1.4;
  }
  
  /* Service page hero adjustments */
  .window-cleaning .hero h1,
  .pressure-washing .hero h1,
  .soft-washing .hero h1,
  .christmas-light-installation .hero h1,
  .gutter-cleaning .hero h1 {
    font-size: 2rem !important;
    color: var(--primary);
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  }
  
  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 280px;
    margin: 1.5rem auto 0;
  }
  
  .cta {
    width: 100% !important;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    text-align: center;
  }
  
  /* Services grid */
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    padding: 0 0.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
    margin-bottom: 0;
  }
  
  .service-card img {
    height: 200px;
    object-fit: cover;
    object-position: center;
  }
  
  .service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  
  .service-card ul {
    margin: 1rem 0;
  }
  
  .service-card ul li {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
  }
  
  .service-cta {
    width: 100% !important;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    margin-top: 1rem;
  }
  
  /* Customer stats */
  .customer-stats-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  
  .customer-stat-card {
    padding: 1.5rem;
  }
  
  .stat-icon {
    width: 48px;
    height: 48px;
  }
  
  .stat-headline {
    font-size: 1.3rem;
  }
  
  .stat-subtext {
    font-size: 0.9rem;
  }
  
  /* Contact section */
  .cta-contact-section {
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #f7fafc 0%, #eaf6ff 100%);
  }
  
  .cta-contact-container {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  
  .cta-contact-info {
    text-align: center;
    max-width: 100%;
    width: 100%;
  }
  
  .cta-contact-heading {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
  }
  
  .cta-contact-subtext {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }
  
  .cta-contact-list {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .cta-contact-list li {
    justify-content: center;
    font-size: 0.95rem;
    gap: 0.75rem;
  }
  
  .cta-contact-icon {
    width: 20px;
    height: 20px;
  }
  
  .cta-contact-link {
    font-size: 1rem;
    font-weight: 600;
  }
  
  .cta-contact-hours {
    font-size: 0.9rem;
    font-weight: 500;
  }
  
  .cta-contact-btn {
    width: 100% !important;
    max-width: 280px;
    margin: 1.5rem auto 0;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 700;
  }
  
  .cta-contact-form-embed {
    width: 100% !important;
    min-height: 600px;
    padding: 1rem 0;
    margin: 0 auto !important;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(32,58,103,0.1);
  }
  
  .cta-contact-photo {
    display: none !important;
  }
  
  /* Reviews section */
  .trust-reviews-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  
  .trust-review:nth-child(4),
  .trust-review:nth-child(5),
  .trust-review:nth-child(6) {
    display: none !important;
  }
  
  .trust-headline {
    font-size: 1.3rem;
  }
  
  .trust-stars svg {
    width: 16px;
    height: 16px;
  }
  
  /* About section */
  .about-why-photo {
    display: none !important;
  }
  
  .about-why-text {
    text-align: center;
    width: 100%;
  }
  
  .about-why-text h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  
  .about-why-text p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
  
  .about-why-benefits {
    gap: 1rem;
  }
  
  .about-why-benefits li {
    font-size: 0.95rem;
    padding: 1rem;
  }
  
  /* Header improvements */
  .header-inner {
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
  }
  
  .header-right {
    flex-direction: row;
    gap: 0.5rem;
  }
  
  /* Mobile Menu Template Styles */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(32,58,103,0.98);
    backdrop-filter: blur(15px);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
  }
  
  .mobile-menu-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    position: relative;
  }
  
  .mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    color: var(--white);
    cursor: pointer;
    padding: 1rem;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }
  
  .mobile-menu-close:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
  }
  
  .mobile-menu-nav {
    width: 100%;
    max-width: 400px;
  }
  
  .mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .mobile-menu-item {
    width: 100%;
  }
  
  .mobile-menu-link {
    display: block;
    padding: 1.5rem 2rem;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-menu-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  }
  
  .mobile-menu-cta {
    background: var(--primary);
    border-color: var(--primary);
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(239,100,56,0.3);
  }
  
  .mobile-menu-cta:hover {
    background: var(--cta-hover);
    border-color: var(--cta-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(239,100,56,0.4);
  }
  
  /* Hide desktop nav on mobile */
  .main-nav ul {
    display: none;
  }
  
  #hamburger {
    display: flex;
    margin-left: auto;
    z-index: 1001;
    position: relative;
  }
  
  /* Footer improvements */
  .footer-main {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-col {
    width: 100%;
  }
  
  .footer-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .footer-contact-list,
  .footer-links-list {
    gap: 0.75rem;
  }
  
  .footer-contact-link,
  .footer-links-list a {
    font-size: 0.9rem;
  }
  
  .footer-social-icons {
    justify-content: center;
    gap: 1rem;
  }
  
  .footer-social-icons svg {
    width: 20px;
    height: 20px;
  }
  
  /* Gallery and images */
  .gallery-images {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .gallery-images img {
    width: 100%;
    max-width: 400px;
    height: 200px;
  }
  
  /* Before/after sliders */
  .before-after-sliders {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .before-after-slider {
    width: 100%;
    max-width: 400px;
  }
  
  .slider-container {
    height: 250px;
  }
  
  /* Form improvements */
  #contact-form {
    padding: 1.5rem;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  #contact-form input,
  #contact-form textarea {
    padding: 0.75rem;
    font-size: 1rem;
  }
  
  /* Exit intent popup */
  #exit-intent-popup .exit-popup-content {
    width: 90% !important;
    max-width: 400px;
    margin: 1rem;
  }
  
  #exit-intent-form h3 {
    font-size: 1.3rem;
  }
  
  #exit-intent-form p {
    font-size: 0.9rem;
  }
  
  .exit-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 32px;
    height: 32px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem !important;
  }
  
  .hero h1 .brand-orange.fancy-underline.white-underline {
    font-size: 1.4rem !important;
  }
  
  .cta-contact-heading {
    font-size: 1.4rem;
  }
  
  .service-card h3 {
    font-size: 1.2rem;
  }
  
  .cta-contact-form-embed {
    min-height: 500px;
  }
  
  .slider-container {
    height: 200px;
  }
}

/* Small devices */
@media (max-width: 400px) {
  .hero {
    min-height: 350px;
    padding: 1.5rem 0.75rem;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background-size: cover !important;
    background-repeat: no-repeat !important;
  }
  
  .hero h1 {
    font-size: 1.4rem !important;
  }
  
  .hero h1 .brand-orange.fancy-underline.white-underline {
    font-size: 1.2rem !important;
  }
  
  .cta-contact-section {
    padding: 1.5rem 0.75rem;
  }
  
  .cta-contact-heading {
    font-size: 1.3rem;
  }
  
  .service-card {
    padding: 1rem;
  }
  
  .service-card img {
    height: 180px;
  }
  
  .cta-contact-form-embed {
    min-height: 450px;
  }
}

/* Additional mobile robustness */
@media screen and (max-width: 600px) {
  /* Force proper scaling */
  body {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }
  
  /* Prevent horizontal scrolling */
  * {
    max-width: 100%;
  }
  
  /* Ensure images scale properly */
  img {
    height: auto;
    max-width: 100%;
  }
  
  /* Fix any remaining overflow issues */
  .hero, .services-overview, .customer-stats-section,
  .how-it-works-section, .before-after-gallery,
  .cta-contact-section, .trust-social-proof, .about-why {
    overflow: hidden;
  }
  
  /* Ensure proper touch targets */
  button, a, input, select, textarea {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Improve form usability */
  input, textarea, select {
    font-size: 16px !important; /* Prevents zoom on iOS */
  }
  
  /* Ensure proper spacing for touch interfaces */
  .cta, .service-cta, .cta-contact-btn {
    padding: 12px 24px;
    min-height: 44px;
  }
  
  /* Fix any potential layout shifts */
  .hero-content, .services-grid, .customer-stats-grid {
    width: 100%;
    max-width: 100%;
  }
  
  /* Ensure proper container behavior */
  .container, .wrapper, main, section {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
  }
  
  /* Override for hero section to remove padding on mobile */
  .hero {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100vw !important;
  }
}

.service-card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.service-card-icon svg {
  width: 48px;
  height: 48px;
  color: var(--primary);
}

/* Remove any debugging borders or outlines */
.services-grid {
  border: none !important;
  outline: none !important;
  background: transparent !important;
}

.service-card {
  border: none !important;
  outline: none !important;
  background: transparent !important;
}

.service-card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  border: none !important;
  outline: none !important;
  background: transparent !important;
}

.service-card-icon svg {
  width: 48px;
  height: 48px;
  color: var(--primary);
  border: none !important;
  outline: none !important;
  background: transparent !important;
}

/* Comprehensive removal of debugging borders and outlines */
.services-grid,
.service-card,
.service-card-icon,
.service-card-icon *,
.service-card h3,
.service-card p,
.service-card svg {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* Ensure service-cta buttons maintain their styling */
.service-card .service-cta {
  background: var(--primary) !important;
  border: none !important;
  outline: none !important;
  box-shadow: 0 2px 8px rgba(32,58,103,0.07) !important;
}

/* Ensure service cards have proper styling without debugging artifacts */
.service-card {
  background: #fff !important;
  border-radius: 12px !important;
  padding: 2rem !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.service-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
}

.service-card-icon {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-bottom: 1rem !important;
  border: none !important;
  outline: none !important;
  background: transparent !important;
}

.service-card-icon svg {
  width: 48px !important;
  height: 48px !important;
  color: var(--primary) !important;
  border: none !important;
  outline: none !important;
  background: transparent !important;
}

.service-card h3 {
  color: var(--primary) !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  margin-bottom: 1rem !important;
  text-align: center !important;
  border: none !important;
  outline: none !important;
  background: transparent !important;
}

.service-card p {
  color: var(--text) !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
  margin-bottom: 1.5rem !important;
  text-align: center !important;
  border: none !important;
  outline: none !important;
  background: transparent !important;
}

.service-cta {
  display: inline-block !important;
  background: var(--primary) !important;
  color: white !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  text-align: center !important;
  transition: background-color 0.3s ease !important;
  border: none !important;
  outline: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  z-index: 1 !important;
}

.service-cta:hover {
  background: var(--cta-hover) !important;
  text-decoration: none !important;
}

/* Ensure service card buttons are always visible */
.service-card .service-cta {
  opacity: 1 !important;
  visibility: visible !important;
  display: inline-block !important;
  position: relative !important;
  z-index: 1 !important;
}

/* Ensure service card buttons are visible when parent card is visible */
.service-card.fade-in-up.visible .service-cta {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Override any inherited opacity from fade-in-up animation */
.service-card .service-cta {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Force service card buttons to always be visible, overriding any animation states */
.service-card.fade-in-up .service-cta,
.service-card .service-cta {
  opacity: 1 !important;
  visibility: visible !important;
  display: inline-block !important;
}

/* Results image container styling */
.results-showcase {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.results-image-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.results-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(32,58,103,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.results-image:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(32,58,103,0.2);
}

@media (max-width: 700px) {
  .results-showcase {
    padding: 1rem 0.5rem;
  }
  
  .results-image-container {
    max-width: 100%;
  }
  
  .results-image {
    max-height: 400px;
  }
}

@media (max-width: 700px) {
  /* Increase 'Streakers Window Cleaning' by 40% on mobile */
  .hero h1 .brand-orange.fancy-underline.white-underline {
    font-size: 2.36rem !important;
  }
  /* Decrease 'Streak-Free Window Cleaning...' by 40% on mobile */
  .hero h1 {
    font-size: 1.27rem !important;
  }
}






