/* ========================= */
/* FULL WIDTH BREAKOUT FIX   */
/* ========================= */

.entry-content .eco-full-breakout,
.wp-site-blocks .eco-full-breakout,
.is-layout-constrained > .eco-full-breakout {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  box-sizing: border-box;
}

/* Add clean inner padding so content doesn't touch edges */
.eco-full-breakout {
  padding-left: 140px;
  padding-right: 140px;
}

/* Center content inside breakout */
.eco-full-breakout .wp-block-group,
.eco-full-breakout .wp-block-gallery {
  max-width: 1100px;
  margin: 0 auto;
}

/* Shrink gallery images */
.eco-full-breakout .wp-block-gallery img,
.eco-full-breakout .wp-block-image img {
  max-width: 350px;
  width: 100%;
  height: auto;
}

/* Reduce spacing between gallery images */
.eco-full-breakout .wp-block-gallery {
  gap: 20px !important;
}

/* Make sure headings inside don't stretch weird */
.eco-full-breakout h1,
.eco-full-breakout h2,
.eco-full-breakout h3,
.eco-full-breakout h4 {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {

  /* keep full width, but tighter padding on phones */
  .eco-full-breakout {
    padding-left: 12px;
    padding-right: 12px;
  }

  /* let the gallery use full available width */
  .eco-full-breakout .wp-block-gallery {
    max-width: 100%;
    gap: 10px !important;
  }

  /* make images stack nicely (1 per row) */
  .eco-full-breakout .wp-block-gallery.has-nested-images {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  /* images should fill the row, not stay capped */
  .eco-full-breakout .wp-block-gallery img,
  .eco-full-breakout .wp-block-image img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* keep text aligned with the mobile width */
  .eco-full-breakout h1,
  .eco-full-breakout h2,
  .eco-full-breakout h3,
  .eco-full-breakout h4,
  .eco-full-breakout p {
    max-width: 100%;
  }
}

/* Tighten ONLY the "Home Cleaning" heading inside breakout */
.eco-full-breakout h1 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

/* Remove spacer blocks that follow the post title */
.wp-block-post-title + .wp-block-spacer {
  display: none !important;
}
/* FULL HERO BREAKOUT */
.eco-hero{
  position: relative !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: 50% !important;
  transform: translateX(-50%) !important;

  height: 85vh;
  min-height: 500px;

  background:
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
    url("https://i.ibb.co/0RJD1065/210700067-1015102139296974-4813279328097956814-n.webp") center/cover no-repeat;

  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
  padding-left:0 !important;
  padding-right:0 !important;
}

/* Prevent 100vw scroll bug */
html, body{
  overflow-x:hidden;
}

/* TEXT */
.eco-hero-overlay{
  color:#fff;
  max-width:800px;
  padding:20px;
}

.eco-hero h1{
  font-size:3rem;
  line-height:1.1;
  margin-bottom:15px;
  font-weight:700;
}

.eco-sub{
  font-size:1.25rem;
  margin-bottom:25px;
}

/* CTA WRAPPER */
.eco-cta-wrap{
  margin-top:20px;
}

/* CTA BUTTON */
.eco-cta-btn{
  display:inline-block;
  background:#b8c6d8;
  color:#2c3e50;
  padding:14px 30px;
  border-radius:8px;
  font-weight:600;
  text-decoration:none;
  transition:all 0.3s ease;
  box-shadow:0 6px 14px rgba(0,0,0,0.15);
}

.eco-cta-btn:hover{
  background:#9fb3cc;
  transform:translateY(-2px);
  box-shadow:0 10px 18px rgba(0,0,0,0.25);
}

/* MOBILE */
@media(max-width:768px){
  .eco-hero{
    height:70vh;
    min-height:420px;
  }

  .eco-hero h1{
    font-size:2rem;
  }

  .eco-sub{
    font-size:1rem;
  }
}

.eco-hero h1,
.eco-sub {
  text-shadow:
    0px 2px 6px rgba(0,0,0,0.45),
    0px 1px 2px rgba(0,0,0,0.25);
}

@media (max-width:768px){

  .site-header{
    display:none !important;
  }

}
/* Prevent horizontal scroll */
html, body{ overflow-x:hidden; }

/* Sticky nav */
.eco-nav{
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}

.eco-nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 10px 14px;
}

.eco-brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}

.eco-logo{
  height: 28px;
  width:auto;
  display:block;
  border-radius: 999px;
}

.eco-wordmark{
  font-weight:800;
  letter-spacing:1px;
  color:#2c3e50;
  font-size: 1.05rem;
}

/* Right side */
.eco-nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.eco-nav-cta{
  display:inline-block;
  background:#b8c6d8;
  color:#2c3e50;
  padding:10px 14px;
  border-radius:10px;
  text-decoration:none;
  font-weight:800;
  font-size:0.95rem;
  white-space:nowrap;
}

/* Hamburger */
.eco-hamburger{
  width: 38px;
  height: 38px;
  border: none;
  background: rgba(0,0,0,0.06);
  border-radius: 10px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:4px;
  cursor:pointer;
}

.eco-hamburger span{
  width: 18px;
  height: 2px;
  background: #4b5e55;
  border-radius: 2px;
  display:block;
}

/* Drawer menu */
.eco-drawer{
  display:none;
  padding: 10px 14px 14px;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.eco-drawer.is-open{ display:block; }

.eco-drawer a{
  display:block;
  padding: 10px 6px;
  text-decoration:none;
  color:#2c3e50;
  font-weight:700;
}

/* Extra-thin mobile feel */
@media (max-width: 420px){
  .eco-nav-inner{ padding: 8px 12px; }
  .eco-logo{ height: 26px; }
  .eco-wordmark{ font-size: 1rem; }
  .eco-nav-cta{ padding: 9px 12px; font-size: 0.9rem; }
}

/* =========================================================
   MOBILE ONLY: Replace header + full-bleed sticky nav
   (Fixes grey padding/gutters + ensures always-on-top)
   ========================================================= */

@media (max-width:768px){

  /* Hide the default WP header on mobile only */
  .site-header{
    display:none !important;
  }

  /* Force eco nav to full width + always visible */
  .eco-nav{
    position: fixed !important;   /* better than sticky inside WP wrappers */
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    z-index: 99999 !important;

    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  }

  /* Remove any theme padding/gutters that can affect nav width */
  body,
  .wp-site-blocks,
  .wp-block-group,
  .wp-site-blocks > *{
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Give the page content space so it doesn't sit under the fixed nav */
  body{
    padding-top: 64px !important; /* adjust if your bar is taller */
  }

  /* Nav inner should still have its own padding */
  .eco-nav-inner{
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 10px 14px !important;
    box-sizing: border-box;
  }
}

/* DESKTOP: keep Eco nav from affecting anything */
@media (min-width:769px){
  .eco-nav{ display:none !important; }
}

/* FAQ title: visually hidden (keeps SEO + screen readers) */
.page-id-2339 .wp-block-post-title{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}

/* Remove the empty spacing it leaves */
.page-id-2339 .entry-content{
  margin-top:0 !important;
  padding-top:0 !important;
}

/* Remove Jetpack Likes from ALL Pages (Contact, Owners, Jobs, FAQ, etc.) */
.page .sharedaddy,
.page .sd-like,
.page .jetpack-likes-widget-wrapper,
.page [id^="like-post-wrapper"]{
  display:none !important;
}

/* Also remove the space it leaves behind */
.page .sharedaddy{
  margin:0 !important;
  padding:0 !important;
}

/* ================================
   CONTACT PAGE (ID: 2586)
   Jetpack Form Safe Redesign
   ================================ */

/* 1) Full blue section spacing */
/* Contact title: visually hidden (keeps SEO + screen readers) */
.page-id-2586 .wp-block-post-title{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}

/* 2) Make heading readable on blue */
.page-id-2586 .wp-block-heading{
  color: rgba(255,255,255,0.92) !important;
  letter-spacing: -0.02em;
}

/* 3) Turn Jetpack form into a card */
.page-id-2586 .jetpack-contact-form-container{
  background:#ffffff !important;
  border-radius:16px !important;
  padding:28px !important;
  box-shadow:0 2px 10px rgba(0,0,0,0.06) !important;
  color:#2f343a !important;
}

/* 4) Inputs */
.page-id-2586 .jetpack-contact-form-container input[type="text"],
.page-id-2586 .jetpack-contact-form-container input[type="email"],
.page-id-2586 .jetpack-contact-form-container textarea{
  width:100%;
  border:1px solid #d7e3f1 !important;
  border-radius:10px !important;
  padding:12px 12px !important;
  background:#fbfdff !important;
  box-shadow:none !important;
  outline:none !important;
  color:#2f343a !important;
}

/* 5) Focus */
.page-id-2586 .jetpack-contact-form-container input:focus,
.page-id-2586 .jetpack-contact-form-container textarea:focus{
  border-color:#b7cde3 !important;
}

/* 6) Labels */
.page-id-2586 .jetpack-contact-form-container label{
  font-weight:600;
  color:#4a4f55 !important;
}

/* 7) Textarea height */
.page-id-2586 .jetpack-contact-form-container textarea{
  min-height:140px;
  resize:vertical;
}

/* 8) Submit button */
.page-id-2586 .jetpack-contact-form-container button,
.page-id-2586 .jetpack-contact-form-container input[type="submit"]{
  width:100%;
  border:none !important;
  border-radius:10px !important;
  padding:14px 16px !important;
  background:#b7cde3 !important;
  color:#2f343a !important;
  font-weight:600 !important;
  cursor:pointer;
}

/* 9) Remove white-on-white issue anywhere inside columns */
.page-id-2586 .wp-block-column{
  color:#2f343a !important;
}

/* 10) Stack columns nicely on mobile */
@media(max-width:900px){
  .page-id-2586 .wp-block-columns{
    flex-direction:column !important;
  }
}

/* Force contact-info text to dark even if Gutenberg sets has-white-color */
.page-id-2586 .has-white-color.has-text-color,
.page-id-2586 .has-white-color.has-text-color a{
  color:#2f343a !important;
}

/* Keep headings on the blue section readable (optional) */
.page-id-2586 .wp-block-group.alignfull.has-background .wp-block-heading{
  color: rgba(255,255,255,0.92) !important;
}

/* ================================
   CONTACT PAGE MOBILE FIXES
   (Page ID: 2586)
   ================================ */
@media (max-width: 780px){

  /* Reduce the giant heading */
  .page-id-2586 .wp-block-heading{
    font-size: 44px !important;
    line-height: 1.05 !important;
    margin-bottom: 14px !important;
  }

  /* Tighten the blue section spacing */
  .page-id-2586 .wp-block-group.alignfull.has-background{
    padding-top: 28px !important;
    padding-bottom: 34px !important;
  }

  /* Stack columns cleanly */
  .page-id-2586 .wp-block-columns{
    gap: 16px !important;
    margin-top: 14px !important;
  }

  /* Make the “cards” not feel huge */
  .page-id-2586 .jetpack-contact-form-container{
    padding: 18px !important;
    border-radius: 14px !important;
  }

  /* Contact info (if it's in a column) */
  .page-id-2586 .wp-block-column{
    padding: 0 !important;
  }

  /* Inputs + textarea */
  .page-id-2586 .jetpack-contact-form-container input[type="text"],
  .page-id-2586 .jetpack-contact-form-container input[type="email"],
  .page-id-2586 .jetpack-contact-form-container textarea{
    font-size: 16px !important; /* stops iOS zoom + looks better */
  }

  /* Button full width */
  .page-id-2586 .jetpack-contact-form-container button,
  .page-id-2586 .jetpack-contact-form-container input[type="submit"]{
    width: 100% !important;
  }

  /* If Jetpack business hours list is cramped */
  .page-id-2586 .jetpack-business-hours{
    font-size: 15px !important;
    line-height: 1.6 !important;
  }
}

/* ================================
   CONTACT PAGE (2586) — Mobile Final Fix
   ================================ */
@media (max-width: 780px){

  /* Make the blue section tighter */
  .page-id-2586 .wp-block-group.alignfull.has-background{
    padding: 24px 5vw 34px !important;
  }

  /* Reduce giant heading */
  .page-id-2586 .wp-block-heading{
    font-size: 38px !important;
    line-height: 1.05 !important;
    margin: 0 0 10px !important;
  }

  /* Make sure columns stack with spacing */
  .page-id-2586 .wp-block-columns{
    gap: 16px !important;
    margin: 16px 0 0 !important;
  }

  /* FORCE the form wrapper to become a white card */
  .page-id-2586 .jetpack-contact-form-container,
  .page-id-2586 .jetpack-contact-form,
  .page-id-2586 [data-test="contact-form"]{
    background: #ffffff !important;
    border-radius: 14px !important;
    padding: 18px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06) !important;
  }

  /* Inputs fill width nicely */
  .page-id-2586 .jetpack-contact-form-container input[type="text"],
  .page-id-2586 .jetpack-contact-form-container input[type="email"],
  .page-id-2586 .jetpack-contact-form-container textarea{
    width: 100% !important;
    font-size: 16px !important; /* stops iOS zoom */
  }

  /* Button better on mobile */
  .page-id-2586 .jetpack-contact-form-container button,
  .page-id-2586 .jetpack-contact-form-container input[type="submit"]{
    width: 100% !important;
    border-radius: 10px !important;
    padding: 14px 16px !important;
  }

  /* Contact info text on blue: add spacing + readability */
  .page-id-2586 .wp-block-column p,
  .page-id-2586 .wp-block-column a{
    font-size: 16px !important;
    line-height: 1.6 !important;
  }

  /* If business hours list is present, tighten it */
  .page-id-2586 .jetpack-business-hours{
    margin-top: 12px !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
  }
}

/* ================================
   CONTACT PAGE MOBILE SIDE PADDING
   ================================ */
@media (max-width: 780px){

  /* Give the blue section side padding */
  .page-id-2586 .wp-block-group.alignfull.has-background{
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  /* Make sure the white form card keeps inner padding */
  .page-id-2586 .jetpack-contact-form-container,
  .page-id-2586 .jetpack-contact-form,
  .page-id-2586 [data-test="contact-form"]{
    padding: 20px !important;
  }

  /* Contact info text column also needs breathing room */
  .page-id-2586 .wp-block-column{
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

}

/* Hide Contact page title (Contact Us) */
.page-id-2586 .wp-block-post-title{
  display:none !important;
}

/* Remove the space it leaves behind */
.page-id-2586 .wp-block-group.is-layout-constrained{
  margin-top:0 !important;
  padding-top:0 !important;
}

/* Allow full-bleed sections to actually bleed */
.wp-site-blocks,
main,
.entry-content{
  overflow: visible !important;
}

/* Force true full-bleed for eco-service sections inside constrained WP layouts */
.entry-content .eco-service{
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

/* Ensure the inner wrapper stays centered and not pushed */
.entry-content .eco-service .eco-s-inner{
  width: 100% !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Prevent theme padding from squishing your full-bleed section */
.entry-content .eco-service{
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* Remove Jetpack Likes from ALL Posts */
.single-post .sharedaddy,
.single-post .sd-like,
.single-post .jetpack-likes-widget-wrapper,
.single-post [id^="like-post-wrapper"]{
  display:none !important;
  margin:0 !important;
  padding:0 !important;
}

/* ================================
   ECO LIVING — Quote Form Reskin
   Targets: Jetpack / CoBlocks form block
   Paste into: Appearance > Customize > Additional CSS
================================ */

/* Optional: hide the post/page title on this quote page only (URL contains /request-a-free-quote/) */
body[class*="request-a-free-quote"] .wp-block-post-title{
  display:none !important;
}

/* Make the form area feel like a card */
.wp-block-coblocks-form{
  max-width: 920px;
  margin: 0 auto;
  padding: 28px 26px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Remove any weird constraining padding around it */
.entry-content .wp-block-coblocks-form{
  box-sizing: border-box;
}

/* Typography */
.wp-block-coblocks-form,
.wp-block-coblocks-form input,
.wp-block-coblocks-form select,
.wp-block-coblocks-form textarea,
.wp-block-coblocks-form label{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
  color:#2f343a;
}

/* Section intro text above form (your italic notes) */
.entry-content p.has-text-align-center{
  max-width: 920px;
  margin-left:auto;
  margin-right:auto;
  padding: 0 16px;
  color:#4a4f55;
}

/* Labels */
.wp-block-coblocks-form label{
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  display:block;
}

/* Inputs */
.wp-block-coblocks-form input[type="text"],
.wp-block-coblocks-form input[type="email"],
.wp-block-coblocks-form input[type="tel"],
.wp-block-coblocks-form input[type="number"],
.wp-block-coblocks-form input[type="url"],
.wp-block-coblocks-form select,
.wp-block-coblocks-form textarea{
  width: 100%;
  border: 1px solid rgba(47,52,58,0.14);
  background: #f8fbff;
  border-radius: 12px;
  padding: 12px 12px;
  font-size: 15px;
  line-height: 1.4;
  outline: none;
  box-shadow: none;
  transition: border-color .15s ease, background .15s ease;
}

/* Focus */
.wp-block-coblocks-form input:focus,
.wp-block-coblocks-form select:focus,
.wp-block-coblocks-form textarea:focus{
  border-color: rgba(91,126,164,0.55);
  background: #ffffff;
}

/* Textarea */
.wp-block-coblocks-form textarea{
  min-height: 130px;
  resize: vertical;
}

/* Checkbox / radio rows: make them wrap nicely */
.wp-block-coblocks-form .coblocks-field{
  margin-bottom: 18px;
}

.wp-block-coblocks-form .coblocks-field .coblocks-option{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin: 8px 18px 0 0;
  line-height: 1.3;
}

/* Checkboxes/radios sizing */
.wp-block-coblocks-form input[type="checkbox"],
.wp-block-coblocks-form input[type="radio"]{
  width: 18px;
  height: 18px;
  accent-color: #b7cde3; /* matches your light blue brand */
}

/* Submit button */
.wp-block-coblocks-form button[type="submit"],
.wp-block-coblocks-form input[type="submit"]{
  background: #b7cde3 !important;
  color: #2f343a !important;
  border: 0 !important;
  border-radius: 999px !important;
  padding: 14px 22px !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(183,205,227,0.45);
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}

/* Button hover */
.wp-block-coblocks-form button[type="submit"]:hover,
.wp-block-coblocks-form input[type="submit"]:hover{
  transform: translateY(-1px);
  filter: brightness(0.98);
  box-shadow: 0 14px 28px rgba(183,205,227,0.55);
}

/* Remove Jetpack Likes from this quote post (and other posts if you want) */
.single-post .sharedaddy,
.single-post .sd-like,
.single-post .jetpack-likes-widget-wrapper,
.single-post [id^="like-post-wrapper"]{
  display:none !important;
  margin:0 !important;
  padding:0 !important;
}

/* Mobile spacing */
@media (max-width: 768px){
  .wp-block-coblocks-form{
    padding: 18px 16px;
    border-radius: 16px;
    margin: 0 12px;
  }

  /* Give the content breathing room from screen edges */
  .entry-content p.has-text-align-center{
    padding: 0 14px;
  }

  /* Checkbox/radio options wrap cleanly */
  .wp-block-coblocks-form .coblocks-field .coblocks-option{
    margin-right: 14px;
  }
}

/* Visually hide default WP title on Home Cleaning
   Keeps it for SEO + screen readers */
body.postid-2928 .wp-block-post-title{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}

/* OFFICE CLEANING — keep H1 for SEO but hide visually */
body.postid-2955 .wp-block-post-title{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}

/* Visually hide default WP title on Standard Clean page
   Keeps it for SEO + screen readers */
.page-id-727 .wp-block-post-title{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}

/* Gift Cards — hide WP title but keep for SEO & screen readers */
.page-id-817 .wp-block-post-title{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}