:root{
  --blue:#333;
  --blue2:#1f5f8b;
  --accent:#04a38b;
  --white:#fff;
}

/* NAVBAR */
.custom-navbar{
  background: transparent;
  position: absolute;
  width: 100%;
  z-index: 999;
}

.navbar-brand{
  color: #fff;
  font-weight: bold;
}

.nav-link{
  color: #fff !important;
  font-weight: 600;
}

/* HERO */
.hero-center{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(135deg, rgba(15,61,94,0.95), rgba(31,95,139,0.85)),
    url('images/airduct-bg.jpg') center/cover no-repeat;
}

/* overlay glow */
.hero-overlay{
  position: absolute;
  inset: 0;
  background-image: url(../images/hero-section.webp);
}

/* airflow animation */
.airflow span{
  position: absolute;
  width: 200%;
  height: 2px;
  background: rgba(255,255,255,0.1);
  animation: flow 8s linear infinite;
}

.airflow span:nth-child(1){ top: 30%; }
.airflow span:nth-child(2){ top: 50%; animation-delay: 2s;}
.airflow span:nth-child(3){ top: 70%; animation-delay: 4s;}

@keyframes flow{
  0%{ transform: translateX(-100%);}
  100%{ transform: translateX(100%);}
}

/* CONTENT CENTER */
.hero-row{
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

.hero-center h1{
  font-size: 30px;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-center p{
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  margin-bottom: 30px;
}

/* PHONE */
.hero-phone{
  background: #fff;
  display: inline-block;
  padding: 20px 35px;
  border-radius: 20px;
  margin-bottom: 30px;
}

.hero-phone span{
  display: block;
  font-size: 14px;
  color: #777;
}

.hero-phone a{
  font-size: 34px;
  font-weight: 900;
  color:#04a38b;
  text-decoration: none;
}

/* BUTTONS */
.hero-buttons{
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn-main{
  background:#04a38b;
  color: #fff;
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: bold;
  text-decoration: none;
}

.btn-outline{
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
}

.btn-main:hover{
  background: #04a38b; color:#fff
}

.btn-outline:hover{
  background: #fff;
  color: #333;
}

/* RESPONSIVE */
@media(max-width:768px){
  .hero-center h1{
    font-size: 34px;
  }

  .hero-phone a{
    font-size: 24px;
  }

  .hero-buttons{
    flex-direction: column;
  }
}
/* =========================
   SIDE FREE ESTIMATE
========================= */
.side-estimate{
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}

.side-estimate a{
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background: #04a38b;
  color: #fff;
  padding: 18px 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 12px 0 0 12px;
  box-shadow: 0 10px 30px rgba(4, 163, 139, 0.2);
  transition: 0.3s;
}

.side-estimate a:hover{
  background: #04a38b;
}

/* =========================
   OFFER BADGE
========================= */
.offer-badge{
  position: absolute;
  top: 120px;
  left: 80px;
  background: #fff;
  color: #333;
  padding: 18px 22px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  text-align: center;
  z-index: 3;
  animation: floaty 3s ease-in-out infinite;
}

.offer-small{
  font-size: 12px;
  color: #888;
  display: block;
  margin-bottom: 5px;
}

.offer-badge strong{
  font-size: 28px;
  color: #04a38b;
  display: block;
}

.offer-badge p{
  font-size: 14px;
  margin: 0;
}

/* animation */
@keyframes floaty{
  0%{ transform: translateY(0);}
  50%{ transform: translateY(-10px);}
  100%{ transform: translateY(0);}
}

/* RESPONSIVE */
@media(max-width:768px){
  .offer-badge{
    left: 20px;
    top: 90px;
    padding: 12px 15px;
  }

  .offer-badge strong{
    font-size: 20px;
  }

  .side-estimate{
    display: none; /* ممكن تخليه يظهر لو حبيتي */
  }
}

/* =========================
   VERTICAL COUPON
========================= */
.coupon-vertical{
  width: 500px;
  margin: 40px auto;
  position: relative;
  z-index: 3;
}

/* MAIN BOX */
.coupon-v-inner{
  background: #fff;
  border-radius: 20px;
  border: 3px dashed #ccc;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  position: relative;
}

/* CUT EFFECT (TOP & BOTTOM) */
.coupon-v-inner::before,
.coupon-v-inner::after{
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background: #333; /* نفس لون الخلفية */
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.coupon-v-inner::before{
  top: -25px;
}

.coupon-v-inner::after{
  bottom: -25px;
}

/* TOP */
.coupon-top{
  padding: 30px 20px;
}

.coupon-label{
  font-size: 22px;
  letter-spacing: 2px;
  color: #888;
  display: block;
  margin-bottom: 6px;
}

.coupon-top h3{
  font-size: 43px;
  color: #04a38b;
  margin: 0;
  font-weight: 900;
}

.coupon-top p{
  margin: 0;
  font-size: 20px;
  color: #333;
}

/* DIVIDER */
.coupon-v-divider{
  border-top: 2px dashed #ccc;
  margin: 0;
}

/* BOTTOM */
.coupon-bottom{
  padding: 25px 20px;
  background: #f8fafc;
}

.coupon-bottom span{
  font-size: 18px;
  color: #777;
}

.coupon-bottom a{
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: #333;
  text-decoration: none;
  margin: 5px 0;
}

.coupon-bottom small{
  font-size: 11px;
  color: #999;
}

/* HOVER */
.coupon-v-inner:hover{
  transform: translateY(-6px);
  transition: 0.3s;
}

/* OPTIONAL: FIX RIGHT SIDE */
.coupon-vertical.fixed{
  position: absolute;
  right: 60px;
  top: 150px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .coupon-vertical{
    width: 220px;
  }

  .coupon-top h3{
    font-size: 32px;
  }
}

/* =========================
   OFFER NUMBER ANIMATION
========================= */
.offer-price{
  font-size: 52px;
  color: #04a38b;
  font-weight: 900;
  display: inline-block;
  position: relative;

  animation: pulseGlow 2s infinite ease-in-out;
}

/* Glow Circle */
.offer-price::after{
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 12px;
 
  z-index: -1;
  filter: blur(15px);
}

/* ANIMATION */
@keyframes pulseGlow{
  0%{
    transform: scale(1);
   
  }

  50%{
    transform: scale(1.08);

  }

  100%{
    transform: scale(1);
  
  }
}


.airduct-steps-section{
  padding: 90px 0;
  background: linear-gradient(180deg, #f7fffd 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.airduct-steps-section::before{
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 220px;
  height: 220px;
  background: rgba(4,163,139,0.08);
  border-radius: 50%;
}

.airduct-steps-section::after{
  content: "";
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: rgba(4,163,139,0.06);
  border-radius: 50%;
}

.steps-heading{
  max-width: 760px;
  margin: 0 auto 50px;
  position: relative;
  z-index: 2;
}

.steps-heading .mini-title{
  display: inline-block;
  color: #04a38b;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.steps-heading h2{
  font-size: 42px;
  font-weight: 800;
  color: #111;
  margin-bottom: 15px;
}

.steps-heading p{
  font-size: 17px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 0;
}

.step-box{
  background: #fff;
  border-radius: 24px;
  padding: 35px 25px 30px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  height: 100%;
  position: relative;
  transition: all 0.35s ease;
  border: 1px solid rgba(4,163,139,0.08);
  z-index: 2;
}

.step-box:hover{
  transform: translateY(-10px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.12);
}

.step-number{
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 18px;
  font-weight: 900;
  color: rgba(4,163,139,0.18);
}

.step-icon{
  width: 78px;
  height: 78px;
  border-radius: 18px;
  background: linear-gradient(135deg, #04a38b, #028a75);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 22px;
  box-shadow: 0 12px 30px rgba(4,163,139,0.20);
}

.step-box h3{
  font-size: 24px;
  font-weight: 800;
  color: #111;
  margin-bottom: 14px;
}

.step-box p{
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 991.98px){
  .steps-heading h2{
    font-size: 34px;
  }
}

@media (max-width: 767.98px){
  .airduct-steps-section{
    padding: 70px 0;
  }

  .steps-heading h2{
    font-size: 28px;
  }

  .steps-heading p{
    font-size: 15px;
  }

  .step-box{
    padding: 28px 20px 25px;
  }

  .step-icon{
    width: 68px;
    height: 68px;
    font-size: 30px;
  }

  .step-box h3{
    font-size: 21px;
  }
}

/* ===============================
   MAINTENANCE SECTION - NEW STYLE
=============================== */

.maintenance-care-section{
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6fffd 100%);
}

.maintenance-care-section::before{
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(4,163,139,0.08);
}

.maintenance-care-section::after{
  content: "";
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(0,0,0,0.04);
}

/* LEFT */
.maintenance-content-box{
  background: #ffffff;
  border-radius: 30px;
  padding: 48px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(4,163,139,0.12);
}

.maintenance-content-box::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  border-radius: 30px 0 0 30px;
  background: linear-gradient(180deg, #04a38b, #027c69);
}

.section-tag{
  display: inline-block;
  background: rgba(4,163,139,0.12);
  color: #04a38b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 40px;
  margin-bottom: 18px;
}

.maintenance-content-box h2{
  font-size: 44px;
  line-height: 1.2;
  font-weight: 900;
  color: #111;
  margin-bottom: 20px;
}

.maintenance-content-box p{
  font-size: 17px;
  line-height: 1.9;
  color: #5f6770;
  margin-bottom: 18px;
}

.maintenance-actions{
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.maintenance-btn{
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  background: linear-gradient(135deg, #04a38b, #027c69);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  transition: 0.3s ease;
  box-shadow: 0 14px 35px rgba(4,163,139,0.28);
}

.maintenance-btn:hover{
  background: linear-gradient(135deg, #038a75, #026d5c);
  color: #fff;
  transform: translateY(-3px);
}

.maintenance-phone{
  font-size: 22px;
  font-weight: 900;
  color: #111;
}

/* RIGHT NEW PANEL */
.maintenance-feature-panel{
  background: #111;
  color: #fff;
  border-radius: 30px;
  padding: 34px 30px;
  box-shadow: 0 26px 60px rgba(0,0,0,0.18);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.maintenance-feature-panel::before{
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(4,163,139,0.16);
}

.maintenance-feature-panel::after{
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.feature-top-badge{
  position: relative;
  z-index: 2;
  display: inline-block;
  background: #04a38b;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 40px;
  margin-bottom: 22px;
}

.feature-panel-head{
  position: relative;
  z-index: 2;
  margin-bottom: 25px;
}

.feature-panel-head h3{
  font-size: 32px;
  line-height: 1.25;
  font-weight: 900;
  margin-bottom: 14px;
  color: #fff;
}

.feature-panel-head p{
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
  margin: 0;
}

.feature-list{
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.feature-item{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 16px;
  border-radius: 20px;
  transition: 0.3s ease;
}

.feature-item:hover{
  transform: translateY(-4px);
  background: rgba(255,255,255,0.09);
}

.feature-icon{
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: #04a38b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 10px 24px rgba(4,163,139,0.30);
}

.feature-text h4{
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 6px;
  color: #fff;
}

.feature-text p{
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.76);
  margin: 0;
}

.feature-bottom-box{
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 22px;
  padding: 20px 22px;
  text-align: center;
}

.feature-call-label{
  font-size: 13px;
  font-weight: 700;
  color: #6b7280;
  margin-bottom: 8px;
}

.feature-call-number{
  display: inline-block;
  font-size: 28px;
  font-weight: 900;
  color: #04a38b;
  text-decoration: none;
  line-height: 1.1;
}

.feature-call-number:hover{
  color: #027c69;
}

/* MOBILE */
@media (max-width: 991.98px){
  .maintenance-content-box h2{
    font-size: 36px;
  }

  .feature-panel-head h3{
    font-size: 28px;
  }
}

@media (max-width: 767.98px){
  .maintenance-care-section{
    padding: 75px 0;
  }

  .maintenance-content-box{
    padding: 30px 22px;
  }

  .maintenance-content-box h2{
    font-size: 28px;
  }

  .maintenance-content-box p{
    font-size: 15px;
  }

  .maintenance-phone{
    font-size: 18px;
  }

  .maintenance-feature-panel{
    padding: 26px 20px;
  }

  .feature-panel-head h3{
    font-size: 24px;
  }

  .feature-call-number{
    font-size: 22px;
  }
}


.why-choose-unique{
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(4,163,139,0.08), transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(0,0,0,0.05), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6fffd 100%);
  overflow: hidden;
}

.why-head{
  max-width: 760px;
  margin: 0 auto 70px;
}

.why-tag{
  display: inline-block;
  padding: 10px 18px;
  border-radius: 40px;
  background: rgba(4,163,139,0.12);
  color: #04a38b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.why-head h2{
  font-size: 44px;
  line-height: 1.2;
  font-weight: 900;
  color: #111;
  margin-bottom: 18px;
}

.why-head p{
  font-size: 17px;
  line-height: 1.9;
  color: #63707c;
  margin: 0;
}

/* orbit layout */
.why-orbit-wrap{
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 700px;
}

/* center circle */
.why-core{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(135deg, #04a38b, #027c69);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 70px rgba(4,163,139,0.28);
  z-index: 2;
}

.why-core::before{
  content: "";
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  border: 1px dashed rgba(4,163,139,0.28);
}

.why-core-inner{
  width: 78%;
  text-align: center;
  color: #fff;
}

.core-mini{
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.92;
}

.why-core h3{
  font-size: 34px;
  line-height: 1.25;
  font-weight: 900;
  margin: 0;color:#fff
}

/* cards */
.why-card{
  position: absolute;
  width: 290px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(4,163,139,0.10);
  border-radius: 26px;
  padding: 28px 24px;
  box-shadow: 0 22px 55px rgba(0,0,0,0.08);
  transition: 0.35s ease;
}

.why-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(0,0,0,0.12);
}

.why-icon{
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #111, #2b2b2b);
  color: #fff;
  font-size: 28px;
  margin-bottom: 18px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.14);
}

.why-card h4{
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
}

.why-card p{
  font-size: 15px;
  line-height: 1.8;
  color: #64707b;
  margin: 0;
}

/* positions */
.why-card-1{
  top: 20px;
  left: 70px;
}

.why-card-2{
  top: 20px;
  right: 70px;
}

.why-card-3{
  bottom: 20px;
  left: 70px;
}

.why-card-4{
  bottom: 20px;
  right: 70px;
}

/* mobile */
@media (max-width: 1199.98px){
  .why-orbit-wrap{
    min-height: 760px;
  }

  .why-card-1{ left: 20px; }
  .why-card-2{ right: 20px; }
  .why-card-3{ left: 20px; }
  .why-card-4{ right: 20px; }
}

@media (max-width: 991.98px){
  .why-head h2{
    font-size: 36px;
  }

  .why-orbit-wrap{
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: auto;
  }

  .why-core{
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 0 auto 10px;
    width: 260px;
    height: 260px;
  }

  .why-core h3{
    font-size: 28px;
  }

  .why-card{
    position: relative;
    width: 100%;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }
}

@media (max-width: 767.98px){
  .why-choose-unique{
    padding: 75px 0;
  }

  .why-head{
    margin-bottom: 40px;
  }

  .why-head h2{
    font-size: 28px;
  }

  .why-head p{
    font-size: 15px;
  }

  .why-core{
    width: 220px;
    height: 220px;
  }

  .why-core h3{
    font-size: 24px;
  }

  .why-card{
    padding: 24px 20px;
  }

  .why-card h4{
    font-size: 21px;
  }
}


/* ===============================
   DUAL SERVICES SECTION
=============================== */

.service-dual-section{
  padding: 110px 0;
  background:
    linear-gradient(180deg,#ffffff 0%,#f6fffd 100%);
}

/* CARD BASE */
.service-card{
  height: 100%;
  border-radius: 30px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  transition: 0.35s ease;
}

.service-card:hover{
  transform: translateY(-10px);
}

/* BADGE */
.service-badge{
  display:inline-block;
  padding:10px 18px;
  border-radius:40px;
  font-size:12px;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:18px;
}

/* INSTALLATION STYLE */
.installation-card{
  background:#ffffff;
  border:1px solid rgba(4,163,139,0.15);
}

.installation-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:6px;
  background:linear-gradient(90deg,#04a38b,#027c69);
}

.installation-card .service-badge{
  background:rgba(4,163,139,0.12);
  color:#04a38b;
}

/* EMERGENCY STYLE */
.emergency-card{
  background:#04a38b;
  color:#fff;
}

.emergency-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:6px;
  background:#000000;
}

.service-badge.emergency{
  background:#fff;
  color:#04a38b;
}

/* TEXT */
.service-card h2{
  font-size:32px;
  font-weight:900;
  margin-bottom:18px;color:#000
}

.service-card p{
  font-size:15px;
  line-height:1.9;
  color:#5f6770;
}

.emergency-card p{
  color:rgba(255,255,255,0.8);
}

/* BUTTONS */
.service-actions{
  margin-top:25px;
}

.btn-main{
  background:#04a38b;
  color:#fff;
  padding:14px 28px;
  border-radius:40px;
  text-decoration:none;
  font-weight:800;
}

.btn-main:hover{
  background:#027c69;
}

.btn-emergency{
  background:#fff;
  color:#000000;
  padding:14px 28px;
  border-radius:40px;
  text-decoration:none;
  font-weight:800;
}

.btn-emergency:hover{
  background:#028a75;
}

/* RESPONSIVE */
@media(max-width:767px){
  .service-card{
    padding:28px 22px;
  }

  .service-card h2{
    font-size:24px;
  }
}
.service-card-title2{
 
  color: #000;
}


.google-reviews-premium{
  padding: 100px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(4,163,139,0.08), transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(0,0,0,0.05), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6fffd 100%);
  position: relative;
  overflow: hidden;
}

/* LEFT SIDE */
.reviews-side-box{
  background: linear-gradient(135deg, #111, #1f1f1f);
  color: #fff;
  border-radius: 30px;
  padding: 38px 30px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
  position: relative;
  overflow: hidden;
}

.reviews-side-box::before{
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(4,163,139,0.18);
}

.reviews-label{
  display: inline-block;
  padding: 10px 18px;
  border-radius: 40px;
  background: rgba(255,255,255,0.10);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.reviews-side-box h2{
  font-size: 38px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;color:#fff
}

.reviews-side-box p{
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.78);
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.rating-summary{
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 18px 20px;
  position: relative;
  z-index: 2;
}

.rating-number{
  font-size: 42px;
  font-weight: 900;
  color: #04a38b;
  line-height: 1;
}

.rating-stars{
  color: #f5b301;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.rating-details span{
  font-size: 13px;
  color: rgba(255,255,255,0.70);
}

/* REVIEW BOXES */
.review-box{
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(4,163,139,0.10);
  border-radius: 26px;
  padding: 26px 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  height: 100%;
  transition: 0.35s ease;
  animation: reviewFadeUp 0.8s ease both;
}

.review-box:hover{
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(0,0,0,0.12);
}

.review-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.review-stars{
  color: #f5b301;
  font-size: 17px;
  letter-spacing: 2px;
}

.review-quote{
  font-size: 34px;
  line-height: 1;
  color: rgba(4,163,139,0.18);
  font-weight: 900;
}

.review-box p{
  font-size: 15px;
  line-height: 1.9;
  color: #65707a;
  margin-bottom: 22px;
}

.review-client{
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-avatar{
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #04a38b, #027c69);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(4,163,139,0.22);
}

.review-client h4{
  font-size: 17px;
  font-weight: 800;
  color: #111;
  margin: 0 0 4px;
}

.review-client span{
  font-size: 13px;
  color: #7b8792;
}

/* ANIMATION DELAYS */
.review-delay-1{ animation-delay: 0.1s; }
.review-delay-2{ animation-delay: 0.25s; }
.review-delay-3{ animation-delay: 0.4s; }
.review-delay-4{ animation-delay: 0.55s; }

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

/* MOBILE */
@media (max-width: 991.98px){
  .reviews-side-box h2{
    font-size: 30px;
  }
}

@media (max-width: 767.98px){
  .google-reviews-premium{
    padding: 75px 0;
  }

  .reviews-side-box{
    padding: 28px 22px;
  }

  .reviews-side-box h2{
    font-size: 26px;
  }

  .review-box{
    padding: 22px 18px;
  }

  .rating-number{
    font-size: 34px;
  }
}

.services-grid-section{
  padding: 100px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6fffd 100%);
}

/* HEAD */
.services-head{
  max-width: 760px;
  margin: 0 auto 50px;
}

.services-tag{
  display: inline-block;
  padding: 10px 18px;
  border-radius: 40px;
  background: rgba(4,163,139,0.12);
  color: #04a38b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.services-head h2{
  font-size: 42px;
  font-weight: 900;
  color: #111;
  margin-bottom: 15px;
}

.services-head p{
  font-size: 16px;
  color: #65707a;
  line-height: 1.9;
}

/* CARD */
.service-card{
  background: #fff;
  border-radius: 26px;
  padding: 30px 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border: 1px solid rgba(4,163,139,0.10);
  height: 100%;
  text-align: left;
  transition: 0.35s ease;
}

.service-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 26px 60px rgba(0,0,0,0.12);
}

/* ICON */
.service-icon{
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: linear-gradient(135deg, #04a38b, #027c69);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 18px;
  box-shadow: 0 12px 28px rgba(4,163,139,0.25);
}

/* TEXT */
.service-card h3{
  font-size: 22px;
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
}

.service-card p{
  font-size: 14px;
  color: #6b7680;
  line-height: 1.8;
  margin: 0;
}

/* MOBILE */
@media(max-width:767px){
  .services-grid-section{
    padding: 70px 0;
  }

  .services-head h2{
    font-size: 28px;
  }
}
.gallery-creative{
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f6fffd 100%);
}

/* HEAD */
.gallery-head{
  max-width: 750px;
  margin: 0 auto 50px;
}

.gallery-tag{
  display:inline-block;
  padding:10px 18px;
  border-radius:40px;
  background: rgba(4,163,139,0.12);
  color:#04a38b;
  font-size:12px;
  font-weight:800;
  margin-bottom:15px;
}

.gallery-head h2{
  font-size:42px;
  font-weight:900;
  margin-bottom:15px;
}

.gallery-head p{
  color:#66707a;
  line-height:1.8;
}

/* LEFT BIG IMAGE */
.gallery-main{
  position:relative;
  display:block;
  height:100%;
  min-height:420px;
  border-radius:30px;
  overflow:hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.10);
}

.gallery-main img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.5s;
}

.gallery-main:hover img{
  transform:scale(1.08);
}

/* RIGHT SIDE */
.gallery-side{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
  height:100%;
}

.gallery-item{
  position:relative;
  display:block;
  border-radius:20px;
  overflow:hidden;
  height:200px;
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.4s;
}

.gallery-item span{
  position:absolute;
  bottom:10px;
  left:10px;
  background: rgba(0,0,0,0.6);
  color:#fff;
  padding:6px 12px;
  border-radius:20px;
  font-size:13px;
  font-weight:700;
}

.gallery-item:hover img{
  transform:scale(1.1);
}

/* OVERLAY BIG */
.gallery-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  display:flex;
  align-items:flex-end;
  padding:20px;
}

.gallery-overlay h3{
  color:#fff;
  font-size:26px;
  font-weight:800;
}

/* MOBILE */
@media(max-width:991px){
  .gallery-main{
    min-height:300px;
    margin-bottom:20px;
  }

  .gallery-side{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:767px){
  .gallery-creative{
    padding:70px 0;
  }

  .gallery-head h2{
    font-size:28px;
  }

  .gallery-item{
    height:150px;
  }
}


.reno-clean-section{
  padding: 100px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(4,163,139,0.08), transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(0,0,0,0.04), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6fffd 100%);
}

/* HEAD */
.reno-head{
  max-width: 750px;
  margin: 0 auto 50px;
}

.reno-tag{
  display:inline-block;
  padding:10px 18px;
  border-radius:40px;
  background: rgba(4,163,139,0.12);
  color:#04a38b;
  font-size:12px;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:15px;
}

.reno-head h2{
  font-size:42px;
  font-weight:900;
  color:#111;
  margin-bottom:15px;
}

.reno-head p{
  font-size:16px;
  line-height:1.9;
  color:#66707a;
}

/* CARD */
.reno-card{
  background:#fff;
  border-radius:28px;
  padding:30px 26px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border: 1px solid rgba(4,163,139,0.10);
  height:100%;
  position:relative;
  transition:0.35s ease;
}

.reno-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* NUMBER */
.reno-number{
  width:70px;
  height:70px;
  border-radius:20px;
  background: linear-gradient(135deg, #04a38b, #027c69);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  font-weight:900;
  margin-bottom:18px;
  box-shadow: 0 12px 28px rgba(4,163,139,0.25);
}

/* TEXT */
.reno-card h3{
  font-size:22px;
  font-weight:800;
  color:#111;
  margin-bottom:12px;
}

.reno-card p{
  font-size:14px;
  line-height:1.8;
  color:#6b7680;
}

/* ANIMATION */
.fade-up{
  opacity:0;
  transform: translateY(25px);
  animation: fadeUp 0.9s ease forwards;
}

.delay-1{ animation-delay:0.1s; }
.delay-2{ animation-delay:0.25s; }
.delay-3{ animation-delay:0.4s; }

@keyframes fadeUp{
  to{
    opacity:1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media(max-width:767px){
  .reno-clean-section{
    padding:70px 0;
  }

  .reno-head h2{
    font-size:28px;
  }

  .reno-head p{
    font-size:15px;
  }
}

.before-after-section{
  padding: 100px 0;
  background:
    linear-gradient(180deg,#ffffff 0%,#f6fffd 100%);
}

/* HEAD */
.ba-head{
  max-width:700px;
  margin:0 auto 50px;
}

.ba-tag{
  display:inline-block;
  padding:10px 18px;
  border-radius:40px;
  background: rgba(4,163,139,0.12);
  color:#04a38b;
  font-weight:800;
  font-size:12px;
  margin-bottom:15px;
}

.ba-head h2{
  font-size:42px;
  font-weight:900;
  margin-bottom:15px;
}

.ba-head p{
  color:#66707a;
  line-height:1.8;
}

/* WRAP */
.ba-wrap{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
  border-radius:30px;
  overflow:hidden;
  box-shadow: 0 25px 65px rgba(0,0,0,0.10);
}

/* IMAGE */
.ba-image{
  position:relative;
  height:420px;
}

.ba-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.5s;
}

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

/* BADGE */
.ba-badge{
  position:absolute;
  top:20px;
  left:20px;
  padding:10px 18px;
  border-radius:40px;
  color:#fff;
  font-weight:800;
  font-size:13px;
}

.before-badge{
  background:#111;
}

.after-badge{
  background:#04a38b;
}

/* DIVIDER */
.ba-divider{
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:3px;
  height:100%;
  background:#fff;
  z-index:2;
}

.ba-circle{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:80px;
  height:80px;
  border-radius:50%;
  background:#fff;
  border:4px solid #04a38b;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  animation:pulse 2.5s infinite;
}

/* ANIMATION */
.fade-up{
  opacity:0;
  transform:translateY(25px);
  animation:fadeUp 0.8s ease forwards;
}

@keyframes fadeUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes pulse{
  0%,100%{ transform:translate(-50%,-50%) scale(1); }
  50%{ transform:translate(-50%,-50%) scale(1.07); }
}

/* MOBILE */
@media(max-width:768px){
  .ba-wrap{
    grid-template-columns:1fr;
  }

  .ba-divider{
    display:none;
  }

  .ba-image{
    height:250px;
  }

  .ba-head h2{
    font-size:28px;
  }
}

.contact-map-section{
  padding: 100px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6fffd 100%);
}

.contact-box,
.map-box{
  background: #fff;
  border-radius: 30px;
  padding: 32px;
  box-shadow: 0 22px 55px rgba(0,0,0,0.08);
  border: 1px solid rgba(4,163,139,0.10);
  height: 100%;
}

.section-badge{
  display: inline-block;
  padding: 10px 18px;
  border-radius: 40px;
  background: rgba(4,163,139,0.12);
  color: #04a38b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.contact-box h2,
.map-box h2{
  font-size: 36px;
  font-weight: 900;
  color: #111;
  margin-bottom: 14px;
  line-height: 1.2;
}

.contact-box p,
.map-box p{
  font-size: 15px;
  line-height: 1.8;
  color: #66707a;
  margin-bottom: 24px;
}

/* FORM */
.custom-input{
  min-height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(4,163,139,0.14);
  padding: 14px 16px;
  box-shadow: none !important;
}

.custom-input:focus{
  border-color: #04a38b;
  box-shadow: 0 0 0 0.18rem rgba(4,163,139,0.12) !important;
}

.custom-textarea{
  min-height: 140px;
  resize: none;
}

.contact-btn{
  width: 100%;
  border: 0;
  border-radius: 50px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #04a38b, #027c69);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  transition: 0.3s ease;
  box-shadow: 0 14px 30px rgba(4,163,139,0.22);
}

.contact-btn:hover{
  transform: translateY(-2px);
  background: linear-gradient(135deg, #038a75, #026d5c);
}

/* MAP */
.map-frame{
  border-radius: 24px;
  overflow: hidden;
  min-height: 750px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.map-frame iframe{
  width: 100%;
  height: 750px;
  display: block;
}

/* MOBILE */
@media (max-width: 991.98px){
  .contact-box h2,
  .map-box h2{
    font-size: 30px;
  }
}

@media (max-width: 767.98px){
  .contact-map-section{
    padding: 75px 0;
  }

  .contact-box,
  .map-box{
    padding: 24px 20px;
  }

  .contact-box h2,
  .map-box h2{
    font-size: 26px;
  }

  .map-frame,
  .map-frame iframe{
    min-height: 300px;
    height: 300px;
  }
}


.faq-section{
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f6fffd 100%);
}

.section-head{
  max-width: 760px;
  margin: 0 auto 45px;
}

.section-tag{
  display: inline-block;
  padding: 10px 18px;
  border-radius: 40px;
  background: rgba(4,163,139,0.12);
  color: #04a38b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-head h2{
  font-size: 42px;
  font-weight: 900;
  color: #111;
  margin-bottom: 15px;
}

.section-head p{
  font-size: 16px;
  line-height: 1.9;
  color: #66707a;
}

.faq-wrap{
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item{
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.06);
  border: 1px solid rgba(4,163,139,0.10);
  overflow: hidden;
}

.faq-question{
  width: 100%;
  border: 0;
  background: #fff;
  text-align: left;
  padding: 22px 24px;
  font-size: 18px;
  font-weight: 800;
  color: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon{
  font-size: 24px;
  color: #04a38b;
  line-height: 1;
}

.faq-answer{
  display: none;
  padding: 0 24px 22px;
}

.faq-answer p{
  font-size: 15px;
  line-height: 1.8;
  color: #66707a;
  margin: 0;
}

.faq-item.active .faq-answer{
  display: block;
}

.faq-item.active .faq-icon{
  content: "-";
}

@media (max-width: 767.98px){
  .faq-section{
    padding: 75px 0;
  }

  .section-head h2{
    font-size: 28px;
  }

  .faq-question{
    font-size: 16px;
    padding: 18px 18px;
  }

  .faq-answer{
    padding: 0 18px 18px;
  }
}
.service-areas-section{
  padding: 100px 0;
  background: #ffffff;
}

.service-areas-wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}

.area-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 50px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(4,163,139,0.12);
  box-shadow: 0 12px 28px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.area-pill:hover{
  background: #04a38b;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(4,163,139,0.22);
}

@media (max-width: 767.98px){
  .service-areas-section{
    padding: 75px 0;
  }

  .area-pill{
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}
.main-footer{
  background: #0f1f1d;
  color: #fff;
  padding: 80px 0 30px;
  position: relative;
}

.main-footer::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 20% 30%, rgba(4,163,139,0.15), transparent 40%);
}

/* BOX */
.footer-box{
  position: relative;
  z-index: 2;
}

.footer-box h3{
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 15px; color:#fff
}

.footer-box h4{
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 18px;color:#fff
}

.footer-box p{
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
}

/* LINKS */
.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li{
  margin-bottom: 10px;
}

.footer-links a{
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover{
  color: #04a38b;
  padding-left: 5px;
}

/* CONTACT */
.footer-contact p{
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-contact a{
  color: #04a38b;
  text-decoration: none;
  font-weight: 700;
}

/* BOTTOM */
.footer-bottom{
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-bottom p{
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* MOBILE */
@media(max-width:767px){
  .main-footer{
    padding: 60px 0 25px;
  }

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


 /* RESET */
*, *::before, *::after {
    box-sizing: border-box;
}

/* FORM WRAPPER */
form.CUS {
    max-width: 900px;
    width: 100%;
    margin: 20px auto;
    padding: 20px;
    background: #f9fafb;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: system-ui, sans-serif;
}

/* FLEX FIELDSET */
form.CUS fieldset {
    display: flex;
    flex-wrap: wrap;
    border: none;
    padding: 0;
    margin: 0;
}

/* BASE BLOCK STYLE */
form.CUS fieldset > p {
    width: 100%;
    padding: 10px;
    margin: 0;
    font-size: 0.95rem;
    color: #444;
}

/* Universal input/select styling */
form.CUS input,
form.CUS select,
form.CUS textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

/* ===============================
   ROW 1: Name, Phone, Address
=============================== */
form.CUS fieldset > p:nth-of-type(1),
form.CUS fieldset > p:nth-of-type(2),
form.CUS fieldset > p:nth-of-type(3) {
    width: 33.333%;
}

/* ===============================
   ROW 2: City, State, Zip Code
=============================== */
form.CUS fieldset > p:nth-of-type(4),
form.CUS fieldset > p:nth-of-type(5),
form.CUS fieldset > p:nth-of-type(6) {
    width: 33.333%;
}

/* ===============================
   SERVICE NEEDED TEXTAREA
=============================== */
form.CUS fieldset > p:nth-of-type(7) {
    width: 100%;
}

/* ===============================
   SERVICE DATE (Month, Day, Year)
   â†’ ALL 3 IN ONE ROW
=============================== */

/* Make the 8th <p> (Service Date block) a flex row */
form.CUS fieldset > p:nth-of-type(8) {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: flex-start;
}

/* Month, Day, Year = 3 equal flex columns */
form.CUS fieldset > p:nth-of-type(8) select#service_date,
form.CUS fieldset > p:nth-of-type(8) select#service_day,
form.CUS fieldset > p:nth-of-type(8) input#service_year {
    flex: 1 1 0;
    width: auto;          /* flex handles width */
    margin-top: 6px;
}

/* ===============================
   SERVICE TIME (Full width)
=============================== */
form.CUS fieldset > p:nth-of-type(9) {
    width: 100%;
}

/* ===============================
   SUBMIT BUTTON (Full width)
=============================== */
form.CUS fieldset > p:nth-of-type(10) {
    width: 100%;
}

form.CUS input[type="submit"] {
    width: 100%;
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

form.CUS input[type="submit"]:hover {
    background: #1d4ed8;
}

/* Hide honeypot */
form.CUS input.subject {
    display: none;
}

/* ===============================
   MOBILE RESPONSIVE (stack fields)
=============================== */
@media (max-width: 600px) {

    form.CUS fieldset > p {
        width: 100%;
        padding: 6px 0;
    }

    /* Month, Day, Year full width stacked on mobile */
    form.CUS fieldset > p:nth-of-type(8) {
        flex-direction: column;
        gap: 6px;
    }

    form.CUS fieldset > p:nth-of-type(8) select#service_date,
    form.CUS fieldset > p:nth-of-type(8) select#service_day,
    form.CUS fieldset > p:nth-of-type(8) input#service_year {
        flex: none;
        width: 100% !important;
    }
/* ===============================
   ROW 1: Name, Phone, Address
=============================== */
form.CUS fieldset > p:nth-of-type(1),
form.CUS fieldset > p:nth-of-type(2),
form.CUS fieldset > p:nth-of-type(3) {
    width: 100%;
}

/* ===============================
   ROW 2: City, State, Zip Code
=============================== */
form.CUS fieldset > p:nth-of-type(4),
form.CUS fieldset > p:nth-of-type(5),
form.CUS fieldset > p:nth-of-type(6) {
    width: 100%;
}
}
.blogbox{text-align:justify;padding:20px;background-color:#FFF;box-sizing:border-box;clear:both;overflow:hidden;margin-bottom:15px;box-shadow:3px 3px 7px rgba(0,0,0,0.2)}
.blogbox .blogimg img {float: right; width: 35%; height: auto; margin: 15px;box-shadow: 0 0 3px rgba(0,0,0,0.8)}
.blogbox .read-more a{background-color:#ccc;color:#2D2D2D;padding:10px;border-radius:5px;border:1px solid #2D2D2D}
.blogbox .read-more a:hover {background-color:#2D2D2D;color:#FFF;letter-spacing: 2px;padding:10px 15px}
.blogpost {text-align: justify;padding:20px;background-color: #FFF;box-sizing: border-box}
.blogpost h1, .blogbox h1 {margin:0;font-size:28px;color:#222;}
.blogpost h2, .blogbox h2 {margin:0;font-size:24px;color:#222;}
.blogpost .blog_wrapper img {float: right; max-width: 35%; height: auto; margin: 15px;box-shadow: 0 0 3px rgba(0,0,0,0.8)}
.socialbox{overflow:hidden;position:relative;text-align:center;width:100%;}
.social-share-btns{display:inline-block;overflow:hidden}
.social-share-btns .share-btn{float:left;margin:0 5px;padding:8px 16px;border-radius:3px;color:#fff;font-size:14px;line-height:18px;vertical-align:middle;transition:background .2s ease-in-out;display:flex;align-items:center;}
.social-share-btns .share-btn svg {fill:currentColor;height:1rem;width:1rem;margin-right:10px;}
.share-btn{background-color:#95a5a6}
.share-btn:hover{background-color:#798d8f}
.share-btn-twitter{background-color:#00aced}
.share-btn-twitter:hover{background-color:#0087ba}
.share-btn-facebook{background-color:#3b5998}
.share-btn-facebook:hover{background-color:#2d4373}
.share-btn-linkedin{background-color:#007bb6}
.share-btn-linkedin:hover{background-color:#005983}
@media only screen and (max-width:700px){
.blogbox .blogimg img{max-width:90%;width:auto}
}