/* ===================================
   Ecogloo Cleaning Theme - Sections CSS
   =================================== */

/* Value Props Section */
.value-props {
  padding: 4rem 0;
  background: linear-gradient(135deg, #F0F9FF, #E0F2FE);
}

.value-props-header {
  text-align: center;
  margin-bottom: 3rem;
}

.value-props-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.value-props-subheader {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.value-props-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.value-prop-card {
  width: 100%;
}

@media (min-width: 768px) {
  .value-props-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

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

.value-prop-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background-color: var(--white);
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0, 157, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 157, 255, 0.1);
}

.value-prop-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-prop-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--brand-lime), #6BA32F);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: transform 0.3s ease;
}

.value-prop-card:hover .value-prop-icon {
  transform: scale(1.1);
}

.value-prop-icon-svg {
  font-size: 1.5rem;
}

.value-prop-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.value-prop-desc {
  color: var(--text-light);
  line-height: 1.6;
}

/* Service Grid Section */
.service-grid-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #F7FEF5, #F0FDF4);
}

.service-grid-header {
  text-align: center;
  margin-bottom: 3rem;
}

.service-grid-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.service-grid-card {
  width: 100%;
}

@media (min-width: 768px) {
  .service-grid-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .service-grid-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.service-grid-card {
  background-color: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.service-grid-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: rgba(139, 197, 63, 0.2);
  text-decoration: none;
  color: inherit;
}

.service-grid-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-grid-card:hover .service-grid-img {
  transform: scale(1.05);
}

.service-grid-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: calc(100% - 200px);
}

.service-grid-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.service-grid-card-description {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-grid-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-lime);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
  margin-top: auto;
}

.service-grid-cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-lime);
  transition: width 0.3s ease;
}

.service-grid-card:hover .service-grid-cta::after {
  width: 100%;
}

.service-grid-arrow {
  width: 1rem;
  height: 1rem;
  stroke-width: 2.5;
  transition: transform 0.3s ease;
}

.service-grid-card:hover .service-grid-arrow {
  transform: translateX(4px);
}

/* Process Steps Section */
.process-steps {
  padding: 4rem 0;
  background: linear-gradient(135deg, #F8FAFC, #F1F5F9);
}

.process-steps-header {
  text-align: center;
  margin-bottom: 3rem;
}

.process-steps-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.process-steps-subheader {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.process-steps-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.process-steps-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .process-steps-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: stretch;
    max-width: 800px;
    margin: 0 auto;
  }
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background-color: var(--white);
  border-radius: 1.25rem;
  box-shadow: 0 8px 25px rgba(139, 197, 63, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 1px solid rgba(139, 197, 63, 0.08);
  flex: 1;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(139, 197, 63, 0.15);
  border-color: rgba(139, 197, 63, 0.2);
}

.process-step-number {
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--brand-lime);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  z-index: 10;
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.process-step-icon-fa {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--brand-sky), #0088E6);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.process-step-icon-fa i {
  font-size: 1.75rem;
}

.process-step:hover .process-step-icon-fa,
.process-step:hover .process-step-number {
  transform: scale(1.1);
}

.process-step-content {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process-step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.process-step-desc {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.9375rem;
}



/* CTA Banner Section */
.cta-banner {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-sky));
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.cta-banner-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-banner-description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .cta-banner-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }
}

.cta-banner-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--white);
  color: var(--brand-blue);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 160px;
  justify-content: center;
}

.cta-banner-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  background-color: var(--white);
  color: var(--brand-blue);
}

.cta-banner-arrow {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.cta-banner-button:hover .cta-banner-arrow {
  transform: translateX(4px);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  /* Value Props Mobile */
  .value-props {
    padding: 3rem 0;
  }
  
  .value-props-title {
    font-size: 2rem;
  }
  
  .value-prop-card {
    padding: 2rem 1.5rem;
  }
  
  /* Service Grid Mobile */
  .service-grid-section {
    padding: 3rem 0;
  }
  
  .service-grid-title {
    font-size: 2rem;
  }
  
  .service-grid-image {
    height: 160px;
  }
  
  .service-grid-content {
    padding: 1.25rem;
  }
  
  .service-grid-card-title {
    font-size: 1.125rem;
  }
  
  .service-grid-card-description {
    font-size: 0.8125rem;
  }
  
  /* Process Steps Mobile */
  .process-steps {
    padding: 3rem 0;
  }
  
  .process-steps-title {
    font-size: 2rem;
  }
  
  .process-step {
    padding: 1.5rem 1rem;
    max-width: 100%;
  }
  
  .process-step-number {
    width: 3rem;
    height: 3rem;
    font-size: 1.125rem;
  }
  
  .process-step-title {
    font-size: 1rem;
  }
  
  .process-step-desc {
    font-size: 0.875rem;
  }
  
  /* CTA Banner Mobile */
  .cta-banner {
    padding: 3rem 0;
  }
  
  .cta-banner-title {
    font-size: 2rem;
  }
  
  .cta-banner-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .cta-banner-buttons {
    gap: 0.75rem;
  }
  
  .cta-banner-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 0.875rem 1.5rem;
  }
  
  /* FAQ Mobile */
  .faq {
    padding: 3rem 0;
  }
  
  .faq-title {
    font-size: 2rem;
  }
  
  .faq-question {
    padding: 1.25rem;
    font-size: 1rem;
  }
  
  /* Testimonials Mobile */
  .testimonials {
    padding: 3rem 0;
  }
  
  .testimonials-title {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonial-quote-svg {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .testimonial-quote {
    font-size: 1rem;
  }
}

/* FAQ Section */
.faq {
  padding: 4rem 0;
  background: linear-gradient(135deg, #F0FDFA, #CCFBF1);
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.faq-subheader {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.faq-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.6;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  background-color: var(--white);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(139, 197, 63, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(139, 197, 63, 0.1);
  margin-bottom: 1rem;
  position: relative;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(139, 197, 63, 0.15);
  transform: translateY(-2px);
}

.faq-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 1.5rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: var(--bg-light);
}

/* Active/expanded question styling */
details[open] .faq-question {
  background-color: rgba(139, 197, 63, 0.05);
  border-left: 4px solid var(--brand-lime);
  font-weight: 700;
  color: var(--text-dark);
}

.faq-arrow {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
  color: var(--brand-lime);
}

/* Hide default summary arrow */
.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  display: none;
}

/* Rotate arrow when details is open */
details[open] .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 0;
  background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 1px solid rgba(251, 191, 36, 0.2);
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-quote-icon {
  position: absolute;
  top: -1rem;
  left: 2rem;
  color: var(--brand-sky);
  opacity: 0.15;
  z-index: 1;
}

.testimonial-quote-svg {
  width: 3rem;
  height: 3rem;
}

.testimonial-content {
  position: relative;
  z-index: 2;
}

.testimonial-quote {
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--brand-sky);
  font-size: 1rem;
}

/* Google Reviews Section */
.google-reviews {
  padding: 4rem 0;
  background: linear-gradient(135deg, #F0FDF4, #DCFCE7);
}

.google-reviews-header {
  text-align: center;
  margin-bottom: 3rem;
}

.google-reviews-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.google-reviews-subheader {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.google-reviews-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Service Areas Section */
.service-areas {
  padding: 4rem 0;
  background: linear-gradient(135deg, #F8FAFC, #F1F5F9);
}

.service-areas-header {
  text-align: center;
  margin-bottom: 3rem;
}

.service-areas-headline {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-areas-subheader {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.service-areas-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
  align-items: start;
}

@media (min-width: 768px) {
  .service-areas-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Map Section */
.service-areas-map {
  position: relative;
}

.service-areas-map-container {
  width: 100%;
  height: 400px;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

@media (min-width: 768px) {
  .service-areas-map-container {
    height: 500px;
  }
}

/* Google Maps Info Window Styling */
.gm-style .gm-style-iw-c {
  border-radius: 0.75rem !important;
  padding: 0 !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.gm-style .gm-style-iw-d {
  overflow: hidden !important;
  border-radius: 0.75rem !important;
}

.gm-style .gm-style-iw-t::after {
  background: linear-gradient(135deg, var(--brand-sky), var(--brand-blue)) !important;
}

.service-area-info-window {
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, var(--brand-sky), var(--brand-blue));
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  min-width: 120px;
}

/* Service Areas List */
.service-areas-list-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-areas-groups {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-area-group {
  border: 1px solid rgba(0, 157, 255, 0.1);
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 157, 255, 0.05);
  transition: box-shadow 0.3s ease;
}

.service-area-group:hover {
  box-shadow: 0 4px 15px rgba(0, 157, 255, 0.1);
}

.service-area-group-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  font-family: inherit;
}

.service-area-group-toggle:hover {
  background: rgba(0, 157, 255, 0.02);
}

.service-area-group-toggle:focus {
  outline: none;
  background: rgba(0, 157, 255, 0.05);
  box-shadow: inset 0 0 0 2px rgba(0, 157, 255, 0.2);
}

.service-area-group-toggle[aria-expanded="true"] {
  background: rgba(0, 157, 255, 0.05);
}

.service-area-group-toggle[aria-expanded="true"] .service-area-group-icon {
  transform: rotate(180deg);
}

.service-area-group-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.service-area-group-icon {
  color: var(--brand-sky);
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.service-area-group-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.service-area-group-content.expanded {
  max-height: 1000px;
  padding: 1.25rem;
}

.service-areas-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  width: 100%;
}

@media (min-width: 480px) {
  .service-areas-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .service-areas-list {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

@media (min-width: 1024px) {
  .service-areas-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* Ensure consistent grid item heights */
.service-area-item {
  position: relative;
  display: flex;
  min-height: 3rem;
}

.service-area-pill {
  width: 100%;
  background: var(--white);
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  border: 2px solid rgba(0, 157, 255, 0.1);
  box-shadow: 0 2px 8px rgba(0, 157, 255, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 3rem;
}

.service-area-pill::before {
  content: '📍';
  margin-right: 0.75rem;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.service-area-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 157, 255, 0.15);
  border-color: rgba(0, 157, 255, 0.3);
  background: linear-gradient(135deg, rgba(0, 157, 255, 0.05), rgba(0, 157, 255, 0.02));
}

.service-area-pill:hover::before {
  transform: scale(1.2);
}

.service-area-pill:focus {
  outline: none;
  border-color: var(--brand-sky);
  box-shadow: 0 0 0 3px rgba(0, 157, 255, 0.2);
}

.service-area-pill.active {
  background: linear-gradient(135deg, var(--brand-sky), var(--brand-blue));
  border-color: var(--brand-sky);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(0, 157, 255, 0.3);
}

.service-area-pill.active::before {
  transform: scale(1.2);
}

.service-area-name {
  font-weight: 600;
  color: inherit;
  font-size: 0.95rem;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  flex: 1;
}

/* List CTA Section */
.service-areas-list-cta {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(0, 157, 255, 0.05), rgba(0, 157, 255, 0.02));
  border-radius: 1rem;
  border: 1px solid rgba(0, 157, 255, 0.1);
}

.service-areas-list-cta-text {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 500;
}

.service-areas-list-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--brand-sky), var(--brand-blue));
  color: var(--white);
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.service-areas-list-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 157, 255, 0.3);
  color: var(--white);
  text-decoration: none;
}

/* CTA Section */
.service-areas-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-areas-cta-text {
  font-size: 1.125rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.service-areas-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, var(--brand-sky), var(--brand-blue));
  color: var(--white);
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.service-areas-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 157, 255, 0.3);
  color: var(--white);
  text-decoration: none;
}

/* CTA Banner Section */
.cta-banner {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-sky));
  color: var(--white);
  text-align: center;
}

.cta-banner-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.cta-banner-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-banner-text {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-banner-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-banner-title {
    font-size: 2rem;
  }
  
  .cta-banner-text {
    font-size: 1rem;
  }
  
  .cta-banner-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Service Grid Section */
.service-grid {
  padding: 4rem 0;
  background-color: var(--white);
}

.service-grid-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.service-grid-header {
  text-align: center;
  margin-bottom: 3rem;
}

.service-grid-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.service-grid-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.6;
}



.service-grid-item {
  background-color: var(--white);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-grid-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.service-grid-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  position: relative;
}

.service-grid-content-inner {
  padding: 1.5rem;
}

.service-grid-item-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-grid-item-description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-grid-item-features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-grid-item-features li {
  padding: 0.5rem 0;
  color: var(--text-light);
  position: relative;
  padding-left: 1.5rem;
}

.service-grid-item-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-lime);
  font-weight: bold;
}

/* CTA Hero Section */
.cta-hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 0;
  overflow: hidden;
}

.cta-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 54, 112, 0.85), rgba(0, 157, 255, 0.75));
  z-index: 1;
}

.cta-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .cta-hero-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Content Area */
.cta-hero-content {
  color: var(--white);
  text-align: center;
}

@media (min-width: 1024px) {
  .cta-hero-content {
    text-align: left;
  }
}

.cta-hero-kicker {
  font-size: 0.875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-lime);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.cta-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--white);
}

@media (min-width: 768px) {
  .cta-hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .cta-hero-title {
    font-size: 4rem;
  }
}

.cta-hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
  .cta-hero-subtitle {
    font-size: 1.25rem;
  }
}

.cta-hero-benefits {
  margin-bottom: 2rem;
}

.cta-hero-benefit {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .cta-hero-benefit {
    justify-content: flex-start;
  }
}

.cta-hero-benefit:before {
  content: "✓";
  color: var(--brand-lime);
  font-weight: bold;
  margin-right: 0.5rem;
  font-size: 1.125rem;
}

.cta-hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}

/* CTA Hero Button Styling - Consistent Design */
.cta-hero-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid transparent;
  cursor: pointer;
}

/* Primary Button (Book a Call) */
.cta-hero-buttons .btn-primary {
  background: var(--brand-blue);
  color: var(--white);
  border-color: var(--brand-blue);
  box-shadow: 0 4px 12px rgba(30, 54, 112, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-hero-buttons .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.cta-hero-buttons .btn-primary:hover {
  color: var(--white);
  background: var(--brand-sky);
  border-color: var(--brand-sky);
  transform: translateX(4px);
  box-shadow: 0 6px 16px rgba(0, 157, 255, 0.4);
}

.cta-hero-buttons .btn-primary:hover::before {
  left: 100%;
}

/* Secondary Button (Give us a call) */
.cta-hero-buttons .btn-secondary {
  background: var(--white);
  color: var(--brand-blue);
  border-color: var(--brand-blue);
  box-shadow: 0 4px 12px rgba(30, 54, 112, 0.1);
  position: relative;
  overflow: hidden;
}

.cta-hero-buttons .btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.cta-hero-buttons .btn-secondary:hover {
  color: var(--white);
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  transform: translateX(4px);
  box-shadow: 0 6px 16px rgba(30, 54, 112, 0.4);
}

.cta-hero-buttons .btn-secondary:hover::before {
  left: 100%;
}

/* Book a Call Button Specific Styling */
.cta-hero-book-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand-blue);
  color: var(--white);
  border: 2px solid var(--brand-blue);
  padding: 0.875rem 1.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(30, 54, 112, 0.2);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cta-hero-book-call-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.cta-hero-book-call-btn:hover {
  color: var(--white);
  background: var(--brand-sky);
  border-color: var(--brand-sky);
  transform: translateX(4px);
  box-shadow: 0 6px 16px rgba(0, 157, 255, 0.4);
  text-decoration: none;
}

.cta-hero-book-call-btn:hover::before {
  left: 100%;
}

.cta-hero-book-call-btn:active {
  transform: translateX(2px);
}

.cta-hero-book-call-btn i,
.cta-hero-call-btn i {
  font-size: 0.875rem;
}

/* Call Button Specific Styling */
.cta-hero-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--brand-blue);
  border: 2px solid var(--brand-blue);
  padding: 0.875rem 1.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(30, 54, 112, 0.1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cta-hero-call-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.cta-hero-call-btn:hover {
  color: var(--white);
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  transform: translateX(4px);
  box-shadow: 0 6px 16px rgba(30, 54, 112, 0.4);
  text-decoration: none;
}

.cta-hero-call-btn:hover::before {
  left: 100%;
}

.cta-hero-call-btn:active {
  transform: translateX(2px);
}

/* Mobile Button Layout Improvements */
@media (max-width: 1023px) {
  .cta-hero-buttons {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  
  .cta-hero-buttons .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .cta-hero-book-call-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .cta-hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .cta-hero-buttons {
    justify-content: flex-start;
  }
}

/* Form Area */
.cta-hero-form-area {
  width: 100%;
}

/* Desktop Form */
.cta-hero-form-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .cta-hero-form-desktop {
    display: block;
  }
}

.cta-hero-form-wrapper {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-hero-form-wrapper h3 {
  color: var(--brand-blue);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.cta-hero-form-wrapper .wpcf7-form {
  display: grid;
  gap: 0.75rem;
}

.cta-hero-form-wrapper .wpcf7-form p {
  margin: 0;
}



/* Show labels for dropdown and radio buttons */
.cta-hero-form-wrapper .wpcf7-form p:has(select) label,
.cta-hero-form-wrapper .wpcf7-form p:has(input[type="radio"]) label {
  display: inline-block;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.125rem;
  font-size: 0.875rem;
}

.cta-hero-form-wrapper .wpcf7-form input[type="text"],
.cta-hero-form-wrapper .wpcf7-form input[type="email"],
.cta-hero-form-wrapper .wpcf7-form input[type="tel"],
.cta-hero-form-wrapper .wpcf7-form input[type="url"],
.cta-hero-form-wrapper .wpcf7-form textarea,
.cta-hero-form-wrapper .wpcf7-form select {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 2px solid var(--border-light);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: var(--white);
}

.cta-hero-form-wrapper .wpcf7-form input[type="text"]:focus,
.cta-hero-form-wrapper .wpcf7-form input[type="email"]:focus,
.cta-hero-form-wrapper .wpcf7-form input[type="tel"]:focus,
.cta-hero-form-wrapper .wpcf7-form input[type="url"]:focus,
.cta-hero-form-wrapper .wpcf7-form textarea:focus,
.cta-hero-form-wrapper .wpcf7-form select:focus {
  outline: none;
  border-color: var(--brand-sky);
  box-shadow: 0 0 0 3px rgba(0, 157, 255, 0.1);
}

.cta-hero-form-wrapper .wpcf7-form textarea {
  min-height: 80px;
  resize: vertical;
}

.cta-hero-form-wrapper .wpcf7-form .wpcf7-radio {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-hero-form-wrapper .wpcf7-form .wpcf7-radio .wpcf7-list-item {
  margin: 0;
  display: flex;
  align-items: center;
}

.cta-hero-form-wrapper .wpcf7-form .wpcf7-radio .wpcf7-list-item input[type="radio"] {
  width: auto;
  margin-right: 0.5rem;
}

.cta-hero-form-wrapper .wpcf7-form .wpcf7-radio .wpcf7-list-item-label {
  font-size: 0.875rem;
  color: var(--text-dark);
}

.cta-hero-form-wrapper .wpcf7-form .wpcf7-submit {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-sky));
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cta-hero-form-wrapper .wpcf7-form .wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 157, 255, 0.3);
}

.cta-hero-form-wrapper .wpcf7-form .wpcf7-submit:active {
  transform: translateY(0);
}

/* Mobile Form */
.cta-hero-form-mobile {
  display: block;
}

@media (min-width: 1024px) {
  .cta-hero-form-mobile {
    display: none;
  }
}

.cta-hero-mobile-toggle {
  width: 100%;
  max-width: 300px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-sky));
  color: var(--white);
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 8px 25px rgba(30, 54, 112, 0.3);
  margin: 0 auto;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  position: relative;
  z-index: 10;
}

.cta-hero-mobile-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(139, 197, 63, 0.4);
}

.cta-hero-mobile-toggle.active {
  border-radius: 0.75rem 0.75rem 0 0;
}

.cta-hero-mobile-text {
  font-size: 1.125rem;
  font-weight: 600;
}

.cta-hero-mobile-arrow {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.cta-hero-mobile-toggle.active .cta-hero-mobile-arrow {
  transform: rotate(180deg);
}

.cta-hero-mobile-form {
  background-color: var(--white);
  border-radius: 0 0 0.75rem 0.75rem;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  position: relative;
  z-index: 9;
}

.cta-hero-mobile-form.active {
  max-height: 2000px;
}

.cta-hero-mobile-form .cta-hero-form-wrapper {
  padding: 1.25rem;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Form Grid Layout */
.cta-hero-form-wrapper .wpcf7-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .cta-hero-form-wrapper .wpcf7-form .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.cta-hero-form-wrapper .wpcf7-form .form-row .wpcf7-form-control-wrap {
  grid-column: span 1;
}

.cta-hero-form-wrapper .wpcf7-form .form-row .wpcf7-form-control-wrap.full-width {
  grid-column: span 2;
}

@media (max-width: 767px) {
  .cta-hero-form-wrapper .wpcf7-form .form-row .wpcf7-form-control-wrap.full-width {
    grid-column: span 1;
  }
}

/* Enhanced Radio Button Styling */
.cta-hero-form-wrapper .wpcf7-form .wpcf7-radio {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.125rem;
}

.cta-hero-form-wrapper .wpcf7-form .wpcf7-radio .wpcf7-list-item {
  margin: 0;
  display: flex;
  align-items: center;
  background-color: #f8fafc;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  border: 2px solid var(--border-light);
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-hero-form-wrapper .wpcf7-form .wpcf7-radio .wpcf7-list-item:hover {
  border-color: var(--brand-sky);
  background-color: #f0f9ff;
}

.cta-hero-form-wrapper .wpcf7-form .wpcf7-radio .wpcf7-list-item input[type="radio"] {
  width: auto;
  margin-right: 0.5rem;
  accent-color: var(--brand-sky);
}

.cta-hero-form-wrapper .wpcf7-form .wpcf7-radio .wpcf7-list-item-label {
  font-size: 0.875rem;
  color: var(--text-dark);
  font-weight: 500;
  cursor: pointer;
  margin-left: 0.25rem;
}

/* Form validation styling */
.cta-hero-form-wrapper .wpcf7-form .wpcf7-not-valid-tip {
  color: #dc2626;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.cta-hero-form-wrapper .wpcf7-form .wpcf7-not-valid {
  border-color: #dc2626 !important;
}

.cta-hero-form-wrapper .wpcf7-form .wpcf7-response-output {
  margin: 1rem 0 0 0;
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}

.cta-hero-form-wrapper .wpcf7-form .wpcf7-mail-sent-ok {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.cta-hero-form-wrapper .wpcf7-form .wpcf7-validation-errors {
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .cta-hero-section {
    min-height: 70vh;
    padding: 3rem 0;
  }
  
  .cta-hero-title {
    font-size: 2rem;
  }
  
  .cta-hero-subtitle {
    font-size: 1rem;
  }
  
  .cta-hero-benefit {
    font-size: 0.875rem;
  }
  
  /* Mobile radio button adjustments */
  .cta-hero-form-wrapper .wpcf7-form .wpcf7-radio {
    gap: 1rem;
  }
  
  .cta-hero-form-wrapper .wpcf7-form .wpcf7-radio .wpcf7-list-item {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }
}

/* Before & After Gallery Section */
.before-after-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #F0FDF4, #F7FEF5);
}

.before-after-header {
  text-align: center;
  margin-bottom: 3rem;
}

.before-after-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.before-after-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.before-after-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .before-after-gallery {
    gap: 4rem;
  }
}

/* Before After Item */
.before-after-item {
  background-color: var(--white);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
}

/* Slider Container */
.before-after-slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background-color: #f8f9fa;
}

@media (min-width: 768px) {
  .before-after-slider {
    height: 500px;
  }
}

@media (min-width: 1024px) {
  .before-after-slider {
    height: 600px;
  }
}

.before-after-container {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: col-resize;
}

/* Before and After Images */
.before-after-before,
.before-after-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.before-after-after {
  width: 50%;
  border-right: 3px solid var(--white);
  position: absolute;
}

.before-after-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

/* Ensure images maintain aspect ratio and don't get distorted */
.before-after-before .before-after-img,
.before-after-after .before-after-img {
  object-fit: cover;
  object-position: center;
  min-height: 100%;
  min-width: 100%;
}

/* Labels */
.before-after-label {
  position: absolute;
  top: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10;
  transition: opacity 0.3s ease;
}

.before-label {
  left: 1rem;
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--white);
}

.after-label {
  right: 1rem;
  background-color: rgba(139, 197, 63, 0.9);
  color: var(--white);
  position: absolute;
  z-index: 15;
  top: 1rem;
}

/* Slider Handle */
.before-after-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background-color: var(--white);
  transform: translateX(-50%);
  z-index: 20;
  cursor: col-resize;
}

.handle-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background-color: var(--white);
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3rem;
  height: 3rem;
  background-color: var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 2px solid var(--brand-lime);
}

.handle-circle svg {
  color: var(--brand-lime);
  width: 1.25rem;
  height: 1.25rem;
}

/* Project Info */
.before-after-info {
  padding: 2rem;
}

.before-after-project-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.before-after-service-type {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-lime);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.before-after-description {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* Mobile Optimizations */
@media (max-width: 767px) {
  .before-after-slider {
    height: 300px;
  }
  
  .before-after-img {
    object-position: center;
  }
  
  .before-after-title {
    font-size: 2rem;
  }
  
  .before-after-subtitle {
    font-size: 1rem;
  }
  
  .before-after-info {
    padding: 1.5rem;
  }
  
  .before-after-project-title {
    font-size: 1.25rem;
  }
  
  .handle-circle {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .handle-circle svg {
    width: 1rem;
    height: 1rem;
  }
}

/* ===================================
   Contact Sections
   =================================== */

/* Contact Info Section */
.contact-info-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #F7FEF5, #F0FDF4);
}

.contact-info-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-info-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.contact-info-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--text-light);
  line-height: 1.6;
  font-size: 1.125rem;
}


.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Desktop: 2 columns, make the last card (Service Areas) span both columns */
@media (min-width: 1024px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .contact-info-card--wide {
    grid-column: 1 / -1; /* Span both columns */
  }
}

.contact-info-card {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(139, 197, 63, 0.1);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.contact-info-card-clickable {
  cursor: pointer;
}

.contact-info-card-clickable:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

.contact-info-card-clickable:hover .contact-info-icon {
  transform: scale(1.1);
}

.contact-info-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.contact-info-card-link:hover {
  text-decoration: none;
  color: inherit;
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  background: var(--brand-lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.contact-info-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-info-content {
  flex: 1;
}

.contact-info-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.contact-info-link {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-info-link:hover {
  color: var(--brand-sky);
}

.contact-info-action {
  display: block;
  font-size: 0.75rem;
  color: var(--brand-lime);
  font-weight: 500;
  margin-top: 0.25rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.contact-info-card-clickable:hover .contact-info-action {
  opacity: 1;
}

.contact-info-phone:hover .contact-info-action {
  content: "📞 Call Now";
}

.contact-info-email:hover .contact-info-action {
  content: "✉️ Send Email";
}

.contact-info-directions {
  margin-top: 0.75rem;
  display: inline-block;
}

.contact-info-directions:hover .contact-info-action {
  content: "🗺️ Get Directions";
}

.contact-info-address {
  font-style: normal;
  color: var(--brand-blue);
  line-height: 1.5;
}

.contact-info-address div {
  margin-bottom: 0.25rem;
}

.contact-info-hours {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-info-hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.contact-info-hour-row:last-child {
  border-bottom: none;
}

.contact-info-day {
  font-weight: 500;
  color: var(--text-dark);
  flex: 1;
}

.contact-info-time {
  color: var(--text-light);
  font-size: 0.875rem;
  text-align: right;
  min-width: 80px;
}



.contact-info-areas {
  color: var(--text-dark);
  line-height: 1.5;
}

/* Contact Form Section */
.contact-form-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #F0F9FF, #E0F2FE);
}

.contact-form-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .contact-form-layout {
    display: grid;
    grid-template-columns: 0.38fr 0.62fr;
    gap: 3rem;
    align-items: start;
  }

  .contact-form-content {
    background-color: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-light);
    align-self: start;
  }

  .contact-form-form {
    padding-left: 0;
  }

  /* Tighter vertical rhythm on desktop */
  .contact-form-header { margin-bottom: 1rem; }
  .contact-form-intro { margin-bottom: 1rem; }
}

/* Contact Highlights */
.contact-form-highlights {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.contact-highlights-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.contact-highlights-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.contact-highlight-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-lime);
  flex-shrink: 0;
}

@media (max-width: 1023px) {
  .contact-form-highlights {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
  
  .contact-highlights-title {
    text-align: center;
  }
  
  .contact-highlights-list {
    gap: 0.5rem;
  }
  
  .contact-highlight-item {
    justify-content: center;
  }
}

.contact-form-content {
  flex: 1;
}

@media (min-width: 1024px) {
  .contact-form-content {
    flex: 0 0 40%;
  }
}

.contact-form-form {
  flex: 1;
}

@media (min-width: 1024px) {
  .contact-form-form {
    flex: 0 0 50%;
  }
}

.contact-form-header {
  text-align: left;
  margin-bottom: 2rem;
}

@media (max-width: 1023px) {
  .contact-form-header {
    text-align: center;
  }
}

.contact-form-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.contact-form-intro {
  text-align: left;
  color: var(--text-light);
  line-height: 1.6;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

@media (max-width: 1023px) {
  .contact-form-intro {
    text-align: center;
  }
}

.contact-form-additional {
  text-align: left;
  color: var(--text-light);
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (max-width: 1023px) {
  .contact-form-additional {
    text-align: center;
    margin-top: 2rem;
  }
}

/* Desktop Form */
.contact-form-desktop {
  display: block;
}

@media (max-width: 1023px) {
  .contact-form-desktop {
    display: none;
  }
}

/* Mobile Form */
.contact-form-mobile {
  display: none;
}

@media (max-width: 1023px) {
  .contact-form-mobile {
    display: block;
  }
}

/* Mobile Toggle Button */
.contact-form-mobile-toggle {
  width: 100%;
  background: linear-gradient(135deg, var(--brand-lime), #6BA32F);
  color: var(--white);
  border: none;
  padding: 1.25rem 2rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 8px 25px rgba(139, 197, 63, 0.3);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  position: relative;
  z-index: 10;
}

.contact-form-mobile-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(139, 197, 63, 0.4);
}

.contact-form-mobile-toggle.active {
  border-radius: 0.75rem 0.75rem 0 0;
}

.contact-form-mobile-text {
  font-size: 1.125rem;
  font-weight: 600;
}

.contact-form-mobile-arrow {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.contact-form-mobile-toggle.active .contact-form-mobile-arrow {
  transform: rotate(180deg);
}

/* Mobile Form Container */
.contact-form-mobile-form {
  background-color: var(--white);
  border-radius: 0 0 0.75rem 0.75rem;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 9;
}

.contact-form-mobile-form.active {
  max-height: 2000px;
}

.contact-form-mobile-form .contact-form-wrapper {
  padding: 1.25rem;
  border-radius: 0;
  box-shadow: none;
}

.contact-form-wrapper {
  background-color: var(--bg-light);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-light);
}

/* Calendly Booking Section */
.calendly-booking-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.calendly-booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.calendly-booking-content {
  padding-right: 2rem;
}

.calendly-booking-header {
  margin-bottom: 2.5rem;
}

.calendly-booking-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.calendly-booking-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.calendly-booking-benefits {
  margin-bottom: 2.5rem;
}

.calendly-benefits-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.calendly-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.calendly-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.calendly-benefit-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.calendly-benefit-icon {
  width: 2rem;
  height: 2rem;
  color: var(--brand-lime);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.calendly-benefit-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.5rem 0;
}

.calendly-benefit-content p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.calendly-booking-cta {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-sky));
  border-radius: 1rem;
  color: var(--white);
}

.calendly-cta-text {
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}

.calendly-booking-calendar {
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: fit-content;
}

.calendly-booking-calendar .calendly-inline-container {
  margin: 0;
  border-radius: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .calendly-booking-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .calendly-booking-content {
    padding-right: 0;
  }
  
  .calendly-booking-title {
    font-size: 2rem;
  }
  
  .calendly-benefit-item {
    padding: 1rem;
  }
  
  .calendly-benefit-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

/* Contact Calendly Section */
.contact-calendly-section {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-sky));
  border-radius: 1rem;
  color: var(--white);
  text-align: center;
}

.contact-calendly-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.contact-calendly-description {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.contact-calendly-section .calendly-inline-container {
  margin: 0;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Contact Form Field Styling */
.contact-form-wrapper .wpcf7-form {
  display: grid;
  gap: 1.5rem;
}

.contact-form-wrapper .wpcf7-form p {
  margin: 0;
}

/* Labels */
.contact-form-wrapper .wpcf7-form label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

/* Form Fields */
.contact-form-wrapper .wpcf7-form input[type="text"],
.contact-form-wrapper .wpcf7-form input[type="email"],
.contact-form-wrapper .wpcf7-form input[type="tel"],
.contact-form-wrapper .wpcf7-form input[type="url"],
.contact-form-wrapper .wpcf7-form textarea,
.contact-form-wrapper .wpcf7-form select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border-light);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: var(--white);
  color: var(--text-dark);
  font-family: inherit;
}

.contact-form-wrapper .wpcf7-form input[type="text"]:focus,
.contact-form-wrapper .wpcf7-form input[type="email"]:focus,
.contact-form-wrapper .wpcf7-form input[type="tel"]:focus,
.contact-form-wrapper .wpcf7-form input[type="url"]:focus,
.contact-form-wrapper .wpcf7-form textarea:focus,
.contact-form-wrapper .wpcf7-form select:focus {
  outline: none;
  border-color: var(--brand-sky);
  box-shadow: 0 0 0 3px rgba(0, 157, 255, 0.1);
  background-color: var(--white);
}

.contact-form-wrapper .wpcf7-form textarea {
  min-height: 60px;
  resize: vertical;
}

/* Radio Buttons */
.contact-form-wrapper .wpcf7-form .wpcf7-radio {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.contact-form-wrapper .wpcf7-form .wpcf7-radio .wpcf7-list-item {
  margin: 0;
  display: flex;
  align-items: center;
  background-color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 2px solid var(--border-light);
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 120px;
}

.contact-form-wrapper .wpcf7-form .wpcf7-radio .wpcf7-list-item:hover {
  border-color: var(--brand-sky);
  background-color: #f0f9ff;
  transform: translateY(-1px);
}

.contact-form-wrapper .wpcf7-form .wpcf7-radio .wpcf7-list-item input[type="radio"] {
  width: auto;
  margin-right: 0.75rem;
  accent-color: var(--brand-sky);
}

.contact-form-wrapper .wpcf7-form .wpcf7-radio .wpcf7-list-item-label {
  font-size: 0.875rem;
  color: var(--text-dark);
  font-weight: 500;
  cursor: pointer;
}

/* Submit Button */
.contact-form-wrapper .wpcf7-form .wpcf7-submit {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-sky));
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}

.contact-form-wrapper .wpcf7-form .wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 157, 255, 0.3);
  background: linear-gradient(135deg, var(--brand-sky), var(--brand-blue));
}

.contact-form-wrapper .wpcf7-form .wpcf7-submit:active {
  transform: translateY(0);
}

/* Form Validation */
.contact-form-wrapper .wpcf7-form .wpcf7-not-valid-tip {
  color: #dc2626;
  font-size: 0.75rem;
  margin-top: 0.25rem;
  font-weight: 500;
}

.contact-form-wrapper .wpcf7-form .wpcf7-not-valid {
  border-color: #dc2626 !important;
  background-color: #fef2f2;
}

.contact-form-wrapper .wpcf7-form .wpcf7-response-output {
  margin: 1.5rem 0 0 0;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.contact-form-wrapper .wpcf7-form .wpcf7-mail-sent-ok {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.contact-form-wrapper .wpcf7-form .wpcf7-validation-errors {
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
}

.contact-form-wrapper .wpcf7-form .wpcf7-spam-blocked {
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
}

/* Form Grid Layout */
.contact-form-wrapper .wpcf7-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .contact-form-wrapper .wpcf7-form .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form-wrapper .wpcf7-form .form-row .wpcf7-form-control-wrap {
  grid-column: span 1;
}

.contact-form-wrapper .wpcf7-form .form-row .wpcf7-form-control-wrap.full-width {
  grid-column: span 2;
}

@media (max-width: 767px) {
  .contact-form-wrapper .wpcf7-form .form-row .wpcf7-form-control-wrap.full-width {
    grid-column: span 1;
  }
}

/* Required Field Indicator */
.contact-form-wrapper .wpcf7-form .wpcf7-form-control-wrap.required label::after {
  content: " *";
  color: #dc2626;
  font-weight: 700;
}

/* Placeholder Styling */
.contact-form-wrapper .wpcf7-form input::placeholder,
.contact-form-wrapper .wpcf7-form textarea::placeholder {
  color: #9ca3af;
  opacity: 1;
}

/* Select Dropdown Styling */
.contact-form-wrapper .wpcf7-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

.contact-form-additional {
  text-align: center;
  max-width: 600px;
  margin: 2rem auto 0;
  padding: 0 1rem;
  color: var(--text-light);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Contact Map Section */
.contact-map-section {
  padding: 4rem 0;
  background-color: var(--white);
}

.contact-map-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-map-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.contact-map-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--text-light);
  line-height: 1.6;
  font-size: 1.125rem;
}

.contact-map-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact-map-wrapper {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-light);
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 450px;
  border: none;
}

.contact-map-note {
  text-align: center;
  max-width: 600px;
  margin: 2rem auto 0;
  padding: 0 1rem;
  color: var(--text-light);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-info-section {
    padding: 3rem 0;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-info-card {
    padding: 1.25rem;
    min-height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  
  .contact-info-card-clickable {
    position: relative;
    overflow: hidden;
  }
  
  .contact-info-card-clickable::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 ease;
  }
  
  .contact-info-card-clickable:active::before {
    left: 100%;
  }
  
  .contact-info-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  
  .contact-info-icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  
  .contact-info-content {
    flex: 1;
    min-width: 0;
  }
  
  .contact-info-card-title {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
  }
  
  .contact-info-link {
    font-size: 0.8125rem;
  }
  
  .contact-info-hours {
    gap: 0.25rem;
  }
  
  .contact-info-hour-row {
    padding: 0.25rem 0;
    font-size: 0.75rem;
  }
  
  .contact-info-areas {
    font-size: 0.75rem;
    line-height: 1.3;
  }
  
  .contact-info-address div {
    margin-bottom: 0.125rem;
  }
  
  .contact-info-card {
    padding: 1.25rem;
  }
  
  /* Contact Form Mobile Adjustments */
  .contact-form-wrapper .wpcf7-form {
    gap: 1.25rem;
  }
  
  .contact-form-wrapper .wpcf7-form input[type="text"],
  .contact-form-wrapper .wpcf7-form input[type="email"],
  .contact-form-wrapper .wpcf7-form input[type="tel"],
  .contact-form-wrapper .wpcf7-form input[type="url"],
  .contact-form-wrapper .wpcf7-form textarea,
  .contact-form-wrapper .wpcf7-form select {
    padding: 0.75rem 0.875rem;
    font-size: 0.9375rem;
  }
  
  .contact-form-wrapper .wpcf7-form textarea {
    min-height: 60px;
  }
  
  .contact-form-wrapper .wpcf7-form .wpcf7-radio {
    gap: 1rem;
  }
  
  .contact-form-wrapper .wpcf7-form .wpcf7-radio .wpcf7-list-item {
    padding: 0.625rem 0.875rem;
    min-width: 100px;
    font-size: 0.8125rem;
  }
  
  .contact-form-wrapper .wpcf7-form .wpcf7-submit {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }
  
  .contact-map-wrapper iframe {
    height: 300px;
  }
  
  .contact-info-title,
  .contact-form-title,
  .contact-map-title {
    font-size: 2rem;
  }
  
  .contact-info-intro,
  .contact-form-intro,
  .contact-map-intro {
    font-size: 1rem;
  }
}

/* Newsletter removed */

/* Page Hero */
.page-hero {
	position: relative;
	min-height: 50vh;
	display: flex;
	align-items: flex-end;
	/* Make hero image span the full viewport width, regardless of parent width */
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.page-hero::before {
	content: '';
	display: block;
	position: absolute;
	left: 0; right: 0; top: 0; bottom: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.55) 100%);
	pointer-events: none;
}

.page-hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.1);
}

.page-hero-content {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	padding: 3rem 1rem;
	width: 100%;
}

.page-hero-title {
	font-size: 2.25rem;
	font-weight: 800;
	line-height: 1.1;
	color: #fff;
	text-shadow: 0 2px 12px rgba(0,0,0,0.35);
	margin: 0 0 0.5rem 0;
}

.page-hero-subtitle {
	color: rgba(255,255,255,0.95);
	font-size: 1.125rem;
	line-height: 1.5;
	max-width: 800px;
}

@media (min-width: 768px) {
	.page-hero { min-height: 50vh; }
	.page-hero-title { font-size: 3rem; }
	.page-hero-subtitle { font-size: 1.25rem; }
}

/* Mission Statement Section */
.mission-statement {
  padding: 4rem 0;
  background: linear-gradient(135deg, #F0F9FF, #E0F2FE);
}

.mission-statement-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.mission-statement-header {
  margin-bottom: 2rem;
}

.mission-statement-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.mission-statement-body {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.mission-statement-body p {
  margin-bottom: 1.5rem;
}

.mission-statement-body p:last-child {
  margin-bottom: 0;
}

.mission-statement-quote {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0, 157, 255, 0.1);
  border: 1px solid rgba(0, 157, 255, 0.1);
  position: relative;
}

.mission-statement-quote::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: 2rem;
  font-size: 4rem;
  color: var(--brand-sky);
  opacity: 0.2;
  font-family: serif;
  line-height: 1;
}

.mission-quote-text {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 500;
}

.mission-quote-author {
  font-size: 1rem;
  color: var(--brand-sky);
  font-weight: 600;
  font-style: normal;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .mission-statement {
    padding: 3rem 0;
  }
  
  .mission-statement-title {
    font-size: 2rem;
  }
  
  .mission-statement-body {
    font-size: 1rem;
  }
  
  .mission-statement-quote {
    padding: 1.5rem;
    margin-top: 2rem;
  }
  
  .mission-quote-text {
    font-size: 1.125rem;
  }
}

/* Image with Text Section */
.image-with-text-section {
  padding: 4rem 0;
  background-color: var(--white);
}

.image-with-text-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .image-with-text-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  
  .image-with-text-layout.image-right {
    grid-template-columns: 1fr 1fr;
  }
  
  .image-with-text-layout.image-right .image-with-text-image {
    order: 2;
  }
  
  .image-with-text-layout.image-right .image-with-text-content {
    order: 1;
  }
}

.image-with-text-image {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.image-with-text-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 3px solid #1e3670;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.30);
  pointer-events: none;
  z-index: 1;
}

.image-with-text-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.image-with-text-image:hover .image-with-text-img {
  transform: scale(1.05);
}

.image-with-text-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.image-with-text-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 0;
}

.image-with-text-body {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 1.125rem;
}

.image-with-text-body p {
  margin-bottom: 1rem;
}

.image-with-text-body p:last-child {
  margin-bottom: 0;
}

.image-with-text-button {
  margin-top: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .image-with-text-section {
    padding: 3rem 0;
  }
  
  .image-with-text-layout {
    gap: 2rem;
  }
  
  .image-with-text-heading {
    font-size: 2rem;
  }
  
  .image-with-text-body {
    font-size: 1rem;
  }
}

/* ===================================
   Service Categories Section
   =================================== */

.service-categories-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #F8FAFC, #F1F5F9);
}

.service-categories-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.service-categories-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-align: center;
}

.service-categories-section .text-xl {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}

.service-categories-section .grid {
  display: grid;
  gap: 2rem;
}

.service-categories-section .md\\:grid-cols-2 {
  grid-template-columns: 1fr;
}

.service-categories-section .lg\\:gap-12 {
  gap: 2rem;
}

.service-categories-section .bg-white {
  background-color: var(--white);
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 157, 255, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-categories-section .bg-white:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-categories-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-categories-section .text-gray-600 {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-categories-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.service-categories-section li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  padding: 0.5rem 0;
}

.service-categories-section li:last-child {
  margin-bottom: 0;
}

.service-categories-section svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.service-categories-section .text-green-500 {
  color: #10B981;
}

.service-categories-section .text-blue-500 {
  color: #3B82F6;
}

/* Enhanced Service Links */
.service-categories-section .service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-dark);
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

/* Mobile: Make all service links the same width */
@media (max-width: 767px) {
  .service-categories-section .service-link {
    width: 100%;
    min-width: 0;
    flex: 1;
  }
}

/* Desktop: Make all service links the same width */
@media (min-width: 768px) {
  .service-categories-section .service-link {
    width: 100%;
    min-width: 0;
  }
  
  /* Hide checkmarks on desktop */
  .service-categories-section .text-green-500,
  .service-categories-section .text-blue-500 {
    display: none;
  }
}

.service-categories-section .service-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.service-categories-section .service-link:hover::before {
  left: 100%;
}

/* Default styles (previously hover styles) */
.service-categories-section .residential-link {
  color: #10B981;
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.service-categories-section .commercial-link {
  color: #3B82F6;
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

/* Hover effects - enhanced versions */
.service-categories-section .residential-link:hover {
  color: #059669;
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateX(4px);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.25);
}

.service-categories-section .commercial-link:hover {
  color: #2563EB;
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateX(4px);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.25);
}

.service-categories-section .link-arrow {
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
  opacity: 1;
  transform: translateX(0);
  transition: all 0.3s ease;
}

.service-categories-section .residential-link .link-arrow {
  color: #10B981;
}

.service-categories-section .commercial-link .link-arrow {
  color: #3B82F6;
}

.service-categories-section .service-link:hover .link-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* Legacy link styles for backward compatibility */
.service-categories-section a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-categories-section a:hover {
  color: #10B981;
}


.service-categories-section .inline-flex {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.service-categories-section .bg-green-600 {
  background-color: #10B981;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-categories-section .bg-green-600:hover {
  background-color: #10B981;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
  text-decoration: none;
}

.service-categories-section .bg-blue-600 {
  background-color: #3B82F6;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-categories-section .bg-blue-600:hover {
  background-color: #2563EB;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
  text-decoration: none;
}

.service-categories-section .ml-2 {
  margin-left: 0.5rem;
}

/* Mobile Responsive */
@media (min-width: 768px) {
  .service-categories-section .md\\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-categories-section .lg\\:gap-12 {
    gap: 3rem;
  }
  
  .service-categories-section .bg-white {
    padding: 2.5rem;
  }
}

@media (max-width: 767px) {
  .service-categories-section {
    padding: 3rem 0;
  }
  
  .service-categories-section h2 {
    font-size: 2rem;
  }
  
  .service-categories-section .text-xl {
    font-size: 1rem;
  }
  
  .service-categories-section .bg-white {
    padding: 1.5rem;
  }
  
  .service-categories-section h3 {
    font-size: 1.25rem;
  }

  /* Mobile: Show interactive styling by default for service links */
  .service-categories-section .service-link {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }

  .service-categories-section .residential-link {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.15);
  }

  .service-categories-section .commercial-link {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.15);
  }

  /* Mobile: Show arrows by default */
  .service-categories-section .link-arrow {
    opacity: 1;
    transform: translateX(0);
  }

  /* Hide checkmarks on mobile */
  .service-categories-section .text-green-500,
  .service-categories-section .text-blue-500 {
    display: none;
  }

  /* Mobile: Active/touch states */
  .service-categories-section .residential-link:active {
    background: rgba(16, 185, 129, 0.15);
    transform: translateX(2px);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
  }

  .service-categories-section .commercial-link:active {
    background: rgba(59, 130, 246, 0.15);
    transform: translateX(2px);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
  }
}