:root {
  --primary: #1E3A5F;
  --secondary: #2EC4B6;
  --accent: #FF8C42;
  --bg: #F7FAFC;
  --text: #1F2933;
  --white: #ffffff;
  --border: rgba(255, 255, 255, 0.15);
  --shadow: 0 20px 60px rgba(20, 40, 70, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}
/* Top Bar */
    .top-bar {
      background: linear-gradient(135deg, rgba(30, 58, 95, 0.94), rgba(46, 196, 182, 0.92));
      color: var(--white);
      padding: 10px 0;
      font-size: 14px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .container {
      width: min(1200px, 92%);
      margin: auto;
    }

    .top-bar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
    }

    .phone-top {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--white);
      font-weight: 700;
      transition: 0.3s ease;
    }

    .free-estimate {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.18);
      padding: 8px 12px;
      border-radius: 999px;
      color: var(--white);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.4px;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
    }

    .phone-top:hover {
      color: #c7ffef;
    }

    .free-estimate:hover {
      background: rgba(255, 255, 255, 0.25);
    }
/* Header */
    .header {
      position: sticky;
      top: 0;
      z-index: 999;
      background: rgba(255, 255, 255, 0.90);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(46, 196, 182, 0.15);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    }

    .navbar {
      min-height: 84px;
    }

    .navbar .container {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding: 0 20px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 14px;
      color: var(--dark-blue);
      font-size: 22px;
      font-weight: 900;
      letter-spacing: 0.2px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .logo-icon {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--primary-blue), var(--fresh-green));
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 20px;
      box-shadow: var(--shadow);
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .nav-menu a {
      color: rgba(17, 27, 45, 0.88);
      font-size: 14px;
      font-weight: 600;
      padding: 10px 12px;
      border-radius: 8px;
      transition: background 0.25s ease, color 0.25s ease;
      position: relative;
    }

    .nav-menu a:hover {
      color: var(--dark-blue);
      background: rgba(46, 196, 182, 0.14);
    }

    .nav-menu a::after {
      content: "";
      position: absolute;
      left: 12px;
      bottom: 6px;
      width: 0;
      height: 2px;
      background: var(--fresh-green);
      transition: width 0.25s ease;
    }

    .nav-menu a:hover::after {
      width: calc(100% - 24px);
    }

    .nav-menu a.active {
      color: var(--fresh-green);
    }

    .nav-menu a.active::after {
      width: calc(100% - 24px);
    }

    .cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--primary-blue), var(--fresh-green));
      color: var(--white);
      padding: 12px 20px;
      border-radius: 50px;
      font-weight: 700;
      box-shadow: 0 10px 25px rgba(24, 166, 106, 0.22);
      transition: 0.3s ease;
      white-space: nowrap;
    }

    .cta-btn:hover {
      transform: translateY(-2px);
    }

    /* Header layout */
    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: nowrap;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    /* Mobile Toggle */
    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border: none;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--primary-blue), var(--fresh-green));
      cursor: pointer;
      position: relative;
      flex-shrink: 0;
      margin-left: auto;
    }

    .menu-toggle span,
    .menu-toggle::before,
    .menu-toggle::after {
      content: "";
      position: absolute;
      left: 11px;
      width: 24px;
      height: 3px;
      background: var(--white);
      border-radius: 10px;
      transition: 0.3s ease;
    }

    .menu-toggle span {
      top: 21px;
    }

    .menu-toggle::before {
      top: 14px;
    }

    .menu-toggle::after {
      top: 28px;
    }

    .menu-toggle.active span {
      opacity: 0;
    }

    .menu-toggle.active::before {
      transform: rotate(45deg);
      top: 21px;
    }

    .menu-toggle.active::after {
      transform: rotate(-45deg);
      top: 21px;
    }

    /* Mobile nav behavior */
    .nav-menu-wrapper {
      position: relative;
      margin-left: auto;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      transition: transform 0.25s ease, opacity 0.25s ease;
    }

    @media (max-width: 991.98px) {
      .navbar .container {
        justify-content: space-between;
      }

      .logo {
        flex: none;
      }

      .menu-toggle {
        display: inline-flex;
        
        box-shadow: #000; background-color: #2EC4B6;
      }

      .nav-menu-wrapper {
        position: absolute;
        top: 100%;
        left: 0;
        
        background: #2EC4B6;
        backdrop-filter: blur(10px);
        padding: 20px 24px;
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        z-index: 999;
      }

      .nav-menu-wrapper.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
      }

      .nav-menu {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
      }

      .nav-menu a {
        display: block;
        padding: 10px 0;
      }
    }

/* Hero */
.carpet-hero-alt {
  position: relative;
  padding: 110px 0;
  background-image:url(../images/hero.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
   
  overflow: hidden;
}

.carpet-hero-alt-content h1 {
  font-size: 56px;
  line-height: 1.08;
  font-weight: 800;
  color: #f77c2b;
  margin-bottom: 18px;
}

.carpet-hero-alt-content h1 span {
  display: block;
  color: #ffffff;
}

.carpet-hero-alt-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #ffffff;
  max-width: 580px;
  margin-bottom: 26px;
}

.hero-mini-badge{

display:inline-block;

padding:10px 18px;

background:#2EC4B6;

color:white;

font-weight:700;

border-radius:40px;

animation:pulseBadge 2s infinite;

margin-bottom:18px;

}

@keyframes pulseBadge{

0%{
box-shadow:0 0 0 0 rgba(46,196,182,0.6);
}

70%{
box-shadow:0 0 0 15px rgba(46,196,182,0);
}

100%{
box-shadow:0 0 0 0 rgba(46,196,182,0);
}

}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-btn {
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-btn-primary {
  background: #FF8C42;
  color: #fff;
  box-shadow: 0 14px 28px rgba(255, 140, 66, 0.25);
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  color: #fff;
}

.hero-btn-secondary {
  background: #2EC4B6;
  color: #fff;
  box-shadow: 0 14px 28px rgba(42, 125, 225, 0.20);
}

.hero-btn-secondary:hover {
  transform: translateY(-3px);
  color: #fff;
}

.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-item {
  background: #fff;
  color: #1F2933;
  border: 1px solid #e6edf5;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(31, 41, 51, 0.05);
}

/* Right Card */
.hero-before-after-card {
  position: relative;
  padding: 18px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(31, 41, 51, 0.10);
  backdrop-filter: blur(8px);
}

.hero-image-wrap {
  position: relative;
  height: 500px;
  border-radius: 22px;
  overflow: hidden;
  background: #eaf1f7;
}

.hero-image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-after-img {
  clip-path: inset(0 0 0 52%);
  animation: revealSweep 6s ease-in-out infinite alternate;
}

.hero-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 52%;
  width: 4px;
  background: linear-gradient(to bottom, #FF8C42, #2EC4B6);
  box-shadow: 0 0 0 6px rgba(255,255,255,0.25);
  animation: dividerMove 6s ease-in-out infinite alternate;
}

.hero-label {
  position: absolute;
  top: 18px;
  z-index: 3;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.hero-label-before {
  left: 18px;
  background: rgba(31, 41, 51, 0.88);
  color: #fff;
}

.hero-label-after {
  right: 18px;
  background: rgba(255, 140, 66, 0.92);
  color: #fff;
}

.hero-result-box {
  margin-top: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #eef3f8;
}

.hero-result-box strong {
  display: block;
  color: #1F2933;
  font-size: 18px;
  margin-bottom: 5px;
}

.hero-result-box span {
  color: #607080;
  font-size: 14px;
  line-height: 1.7;
}

@keyframes revealSweep {
  0% {
    clip-path: inset(0 0 0 68%);
  }
  100% {
    clip-path: inset(0 0 0 32%);
  }
}

@keyframes dividerMove {
  0% {
    left: 68%;
  }
  100% {
    left: 32%;
  }
}

@media (max-width: 991.98px) {
  .carpet-hero-alt {
    padding: 80px 0;
  }

  .carpet-hero-alt-content h1 {
    font-size: 42px;
  }

  .hero-image-wrap {
    height: 380px;
  }
}

@media (max-width: 767.98px) {
  .carpet-hero-alt-content h1 {
    font-size: 34px;
  }

  .carpet-hero-alt-content p {
    font-size: 15px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-image-wrap {
    height: 300px;
  }

  .hero-result-box {
    padding: 16px;
  }
}










.carpet-transform-section{

padding:110px 0;
background:#F7FAFC;

}

.container{

max-width:1200px;
margin:auto;
padding:0 20px;

}

.transform-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;

}

/* image */

.transform-image{

position:relative;

}

.transform-image img{

width:100%;
border-radius:20px;

box-shadow:0 25px 60px rgba(0,0,0,0.1);

}

/* badge */

.image-badge{

position:absolute;
bottom:20px;
left:20px;

background:#FF8C42;
color:white;

padding:10px 18px;
border-radius:30px;

font-weight:700;
font-size:14px;

}

/* text */

.transform-content h2{

font-size:40px;
line-height:1.3;

color:#1F2933;
margin-bottom:20px;

}

.transform-content span{

color:#2EC4B6;

}

.transform-content p{

font-size:17px;
line-height:1.9;
color:#4a5568;
margin-bottom:20px;

}

/* features */

.transform-features{

display:grid;
grid-template-columns:1fr 1fr;
gap:12px;

margin-top:20px;

font-weight:600;
color:#2d3748;

}

/* responsive */

@media(max-width:900px){

.transform-grid{

grid-template-columns:1fr;

}

.transform-content h2{

font-size:32px;

}

}




.why-choose-us{
  padding: 110px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.why-choose-us::before{
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  top: -80px;
  left: -80px;
  background: rgba(46, 196, 182, 0.08);
  border-radius: 50%;
  animation: floatSoft 8s ease-in-out infinite;
}

.why-choose-us::after{
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  bottom: -70px;
  right: -70px;
  background: rgba(42, 125, 225, 0.08);
  border-radius: 50%;
  animation: floatSoft 10s ease-in-out infinite;
}

.section-heading{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 55px;
  position: relative;
  z-index: 2;
}

.section-badge{
  display: inline-block;
  padding: 9px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2EC4B6, #2EC4B6);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 10px 25px rgba(42, 125, 225, 0.18);
}

.section-heading h2{
  font-size: 42px;
  line-height: 1.25;
  color: #1F2933;
  margin-bottom: 16px;
}

.section-heading p{
  font-size: 17px;
  line-height: 1.9;
  color: #5b6773;
  margin: 0;
}

.why-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.why-card{
  background: #fff;
  border: 1px solid #e9eef5;
  border-radius: 22px;
  padding: 30px 24px;
  box-shadow: 0 15px 35px rgba(31, 41, 51, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: fadeUp 0.8s ease both;
}

.why-card:nth-child(2){
  animation-delay: 0.15s;
}

.why-card:nth-child(3){
  animation-delay: 0.3s;
}

.why-card:nth-child(4){
  animation-delay: 0.45s;
}

.why-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(31, 41, 51, 0.10);
}

.why-icon{
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2EC4B6, #2EC4B6);
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 18px;
  animation: pulseSoft 2.5s infinite;
}

.why-card h3{
  font-size: 20px;
  color: #1F2933;
  margin-bottom: 12px;
}

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

@keyframes pulseSoft{
  0%{
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.30);
  }
  70%{
    transform: scale(1.05);
    box-shadow: 0 0 0 14px rgba(46, 196, 182, 0);
  }
  100%{
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(46, 196, 182, 0);
  }
}

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

@keyframes floatSoft{
  0%,100%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(-18px);
  }
}

@media (max-width: 991.98px){
  .why-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading h2{
    font-size: 34px;
  }
}

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

  .why-grid{
    grid-template-columns: 1fr;
  }

  .section-heading{
    margin-bottom: 35px;
  }

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

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



.carpet-benefits{

padding:110px 0;
background:#F7FAFC;

}

.container{

max-width:1200px;
margin:auto;
padding:0 20px;

}

/* title */

.section-title{

text-align:center;
max-width:700px;
margin:auto;
margin-bottom:60px;

}

.section-title h2{

font-size:42px;
color:#1F2933;
margin-bottom:20px;

}

.section-title p{

font-size:17px;
color:#4a5568;
line-height:1.9;

}


/* grid */

.benefits-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}


/* card */

.benefit-card{

background:white;
padding:35px;

border-radius:18px;

text-align:center;

box-shadow:0 15px 40px rgba(0,0,0,0.08);

transition:all .3s ease;

}

.benefit-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 60px rgba(0,0,0,0.12);

}


/* icon */

.benefit-icon{

font-size:40px;
margin-bottom:20px;

animation:pulseIcon 2.5s infinite;

}


/* text */

.benefit-card h3{

font-size:20px;
margin-bottom:10px;
color:#1F2933;

}

.benefit-card p{

font-size:15px;
line-height:1.8;
color:#4a5568;

}


/* animation */

@keyframes pulseIcon{

0%{
transform:scale(1);
}

50%{
transform:scale(1.1);
}

100%{
transform:scale(1);
}

}


/* responsive */

@media(max-width:900px){

.benefits-grid{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:600px){

.benefits-grid{

grid-template-columns:1fr;

}

.section-title h2{

font-size:30px;

}

}




.luxury-carpet-style2{

padding:120px 0;
background:#ffffff;

}

.container{

max-width:1200px;
margin:auto;
padding:0 20px;

}

.luxury-grid{

display:grid;
grid-template-columns:1fr 1.3fr;
gap:80px;
align-items:center;

}

/* title */

.luxury-title h2{

font-size:44px;
line-height:1.3;
color:#1F2933;
margin:20px 0;

}

/* tag */

.section-tag{

display:inline-block;

background:#2EC4B6;
color:white;

padding:8px 16px;

border-radius:20px;

font-size:13px;
font-weight:700;

letter-spacing:.5px;

}

/* accent line */

.title-line{

width:70px;
height:4px;

background:#FF8C42;

margin-top:15px;

animation:lineMove 3s infinite alternate;

}

/* text */

.luxury-text p{

font-size:17px;
line-height:1.9;
color:#4a5568;
margin-bottom:20px;

}


/* animation */

@keyframes lineMove{

0%{
width:60px;
}

100%{
width:110px;
}

}


/* responsive */

@media(max-width:900px){

.luxury-grid{

grid-template-columns:1fr;
gap:40px;

}

.luxury-title h2{

font-size:34px;

}

}


.carpet-gallery-text{

padding:110px 0;
background:#F7FAFC;

}

.container{

max-width:1200px;
margin:auto;
padding:0 20px;

}

/* title */

.gallery-title{

text-align:center;
margin-bottom:60px;

}

.gallery-title h2{

font-size:40px;
color:#1F2933;
margin-bottom:10px;

}

.gallery-title p{

font-size:17px;
color:#4a5568;

}

/* grid */

.gallery-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}

/* card */

.gallery-card{

background:white;

border-radius:18px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,0.08);

transition:.3s;

animation:fadeUp .8s ease;

}

.gallery-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 60px rgba(0,0,0,0.12);

}

/* image */

.gallery-card img{

width:100%;
height:220px;

object-fit:cover;

}

/* text */

.gallery-card h3{

font-size:20px;
margin:20px 20px 10px;
color:#1F2933;

}

.gallery-card p{

font-size:15px;
line-height:1.8;
color:#4a5568;

margin:0 20px 25px;

}

/* animation */

@keyframes fadeUp{

from{

opacity:0;
transform:translateY(30px);

}

to{

opacity:1;
transform:translateY(0);

}

}

/* responsive */

@media(max-width:900px){

.gallery-grid{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:600px){

.gallery-grid{

grid-template-columns:1fr;

}

.gallery-title h2{

font-size:30px;

}

}

.location-map-section{

padding:110px 0;
background:#F7FAFC;

}

.container{

max-width:1200px;
margin:auto;
padding:0 20px;

}

.location-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;

}

/* map */

.map-section{

padding:110px 0;
background:#F7FAFC;

}

.container{

max-width:1100px;
margin:auto;
padding:0 20px;

}

/* title */

.map-title{

text-align:center;

font-size:40px;

color:#1F2933;

margin-bottom:50px;

}

/* map */

.map-wrapper{

height:450px;

background:white;

border-radius:25px;

padding:12px;

box-shadow:0 25px 60px rgba(0,0,0,0.12);

transition:.3s;

}

.map-wrapper:hover{

transform:translateY(-5px);

box-shadow:0 35px 70px rgba(0,0,0,0.15);

}

.map-wrapper iframe{

width:100%;
height:100%;

border:0;

border-radius:18px;

}

/* responsive */

@media(max-width:768px){

.map-title{

font-size:30px;

}

.map-wrapper{

height:320px;

}

}

/* text side */

.location-box h2{

font-size:36px;
color:#1F2933;
margin-bottom:15px;

}

.location-box p{

font-size:16px;
color:#4a5568;
margin-bottom:25px;

}

/* locations */

.location-list{

display:grid;
grid-template-columns:1fr 1fr;
gap:12px;

}

.location-item{

background:white;

padding:12px 15px;

border-radius:12px;

font-weight:600;

box-shadow:0 10px 25px rgba(0,0,0,0.05);

transition:.3s;

}

.location-item:hover{

background:#2EC4B6;
color:white;
transform:translateY(-3px);

}


/* responsive */

@media(max-width:900px){

.location-grid{

grid-template-columns:1fr;

}

.location-list{

grid-template-columns:1fr;

}

}



.refresh-living-section{

padding:110px 0;
background:#ffffff;
position:relative;

}

/* container */

.container{

max-width:1100px;
margin:auto;
padding:0 20px;

}

/* title */

.refresh-header{

text-align:center;
margin-bottom:50px;

}

.refresh-header h2{

font-size:42px;
color:#1F2933;
line-height:1.3;

}

.refresh-header span{

color:#2EC4B6;

}

/* grid */

.refresh-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:40px;

}

/* text */

.refresh-text p{

font-size:17px;
line-height:1.9;
color:#4a5568;

}

/* features */

.refresh-features{

margin-top:40px;

display:grid;
grid-template-columns:repeat(4,1fr);
gap:15px;

}

.feature-item{

background:#F7FAFC;
padding:15px;

border-radius:12px;

font-weight:600;

text-align:center;

transition:.3s;

}

.feature-item:hover{

background:#2EC4B6;
color:white;
transform:translateY(-4px);

}

/* responsive */

@media(max-width:900px){

.refresh-grid{

grid-template-columns:1fr;

}

.refresh-features{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:600px){

.refresh-header h2{

font-size:30px;

}

.refresh-features{

grid-template-columns:1fr;

}

}



.reviews-section{
padding:110px 0;
background:#F7FAFC;
}

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

/* header */

.reviews-header{
text-align:center;
margin-bottom:60px;
}

.reviews-badge{
display:inline-block;
padding:8px 16px;
border-radius:40px;
background:linear-gradient(135deg,#2EC4B6,#2EC4B6);
color:white;
font-size:13px;
font-weight:700;
margin-bottom:15px;
}

.reviews-header h2{
font-size:40px;
color:#1F2933;
margin-bottom:10px;
}

.reviews-header p{
font-size:17px;
color:#4a5568;
}

/* grid */

.reviews-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

/* card */

.review-card{
background:white;
padding:30px;
border-radius:18px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
transition:.3s;
}

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

/* stars */

.review-stars{
color:#FF8C42;
font-size:20px;
margin-bottom:15px;
}

/* text */

.review-card p{
font-size:15px;
line-height:1.8;
color:#4a5568;
margin-bottom:15px;
}

.review-card h3{
font-size:18px;
color:#1F2933;
margin-bottom:3px;
}

.review-card span{
font-size:14px;
color:#718096;
}

/* responsive */

@media(max-width:900px){

.reviews-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:600px){

.reviews-grid{
grid-template-columns:1fr;
}

.reviews-header h2{
font-size:30px;
}

}


.wellness-section{
padding:110px 0;
background:#F7FAFC;
}

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

.wellness-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.wellness-content{
background:white;
padding:40px;
border-radius:20px;
box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.wellness-badge{
display:inline-block;
padding:8px 16px;
border-radius:40px;
background:linear-gradient(135deg,#2EC4B6,#2EC4B6);
color:white;
font-size:13px;
font-weight:700;
margin-bottom:15px;
}

.wellness-content h2{
font-size:40px;
color:#1F2933;
margin-bottom:20px;
}

.wellness-content span{
color:#000;
}

.wellness-content p{
font-size:16px;
line-height:1.9;
color:#4a5568;
margin-bottom:18px;
}

.wellness-image{
text-align:center;
}

.wellness-image img{
width:100%;
max-width:420px;
border-radius:20px;
box-shadow:0 20px 50px rgba(0,0,0,0.12);
transition:.3s;
}

.wellness-image img:hover{
transform:translateY(-6px);
}

@media(max-width:900px){

.wellness-grid{
grid-template-columns:1fr;
}

.wellness-content h2{
font-size:32px;
}

}

.main-footer{

background:#1F2933;
color:#fff;

padding:80px 0 30px;

}

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

/* grid */

.footer-grid{

display:grid;
grid-template-columns:1fr 2fr 1fr 1fr;
gap:40px;

}

/* columns */

.footer-col h3{

font-size:22px;
margin-bottom:15px;color:#ffffff

}

.footer-col h4{

font-size:18px;
margin-bottom:15px;color:#ffffff

}

.footer-col p{

font-size:14px;
line-height:1.8;
color:#cbd5e0;

}

/* lists */

.footer-col ul{

list-style:none;
padding:0;

}

.footer-col ul li{

margin-bottom:10px;
font-size:14px;
color:#cbd5e0;
cursor:pointer;
transition:.3s;

}

.footer-col ul li:hover{

color:#FF8C42;

}

/* contact */

.footer-contact p{

margin:5px 0;

}

/* bottom */

.footer-bottom{

text-align:center;
margin-top:20px;

}

.footer-bottom p{

font-size:13px;
color:#a0aec0;

}

/* line */

hr{

border:none;
height:1px;
background:#2d3748;
margin:40px 0;

}

/* responsive */

@media(max-width:900px){

.footer-grid{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:600px){

.footer-grid{

grid-template-columns:1fr;

}

}

.faq-pro-section{
padding:110px 0;
background:#F7FAFC;
}

.faq-pro-container{
max-width:1100px;
margin:auto;
padding:0 20px;
}

/* header */

.faq-pro-header{
text-align:center;
margin-bottom:50px;
}

.faq-pro-header h2{
font-size:40px;
color:#1F2933;
margin-bottom:10px;
}

.faq-pro-header p{
font-size:16px;
color:#4a5568;
}

/* grid */

.faq-pro-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

/* item */

.faq-pro-item details{
background:white;
border-radius:16px;
padding:18px 20px;
box-shadow:0 12px 30px rgba(0,0,0,0.06);
transition:.3s;
}

.faq-pro-item details:hover{
transform:translateY(-4px);
}

/* summary */

.faq-pro-item summary{
display:flex;
align-items:center;
gap:12px;
font-size:16px;
font-weight:600;
color:#1F2933;
cursor:pointer;
list-style:none;
position:relative;
}

/* icon */

.faq-pro-icon{
font-size:20px;
}

/* plus icon */

.faq-pro-item summary::after{
content:"+";
position:absolute;
right:0;
font-size:20px;
transition:.3s;
}

/* open */

.faq-pro-item details[open] summary::after{
content:"-";
}

/* answer */

.faq-pro-item p{
font-size:15px;
color:#4a5568;
line-height:1.8;
margin-top:10px;
}

/* responsive */

@media(max-width:800px){

.faq-pro-grid{
grid-template-columns:1fr;
}

.faq-pro-header h2{
font-size:28px;
}

}
.contact-form-section{
  padding: 110px 0;
  background: #F7FAFC;
}

.contact-form-wrap{
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.contact-form-wrap h2{
  font-size: 38px;
  color: #1F2933;
  margin-bottom: 10px;
  text-align: center;
}

.contact-form-wrap p{
  font-size: 16px;
  color: #4a5568;
  text-align: center;
  margin-bottom: 30px;
}

.custom-input{
  border: 1px solid #dbe4ec;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  color: #1F2933;
  box-shadow: none !important;
}

.custom-input:focus{
  border-color: #2EC4B6;
}

.custom-textarea{
  resize: none;
}

.custom-submit-btn{
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #2A7DE1, #2EC4B6);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s ease;
}

.custom-submit-btn:hover{
  transform: translateY(-2px);
  opacity: 0.95;
}

@media(max-width: 767px){
  .contact-form-section{
    padding: 80px 0;
  }

  .contact-form-wrap{
    padding: 24px;
  }

  .contact-form-wrap h2{
    font-size: 30px;
  }
}


 /* 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%;
}
}


/*Blog*/
.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}
}