:root{
  --primary:#2B2B2B;
  --secondary:#F5F5F5;
  --accent:#F57C00;
  --background:#FFFFFF;
  --text-light:#666666;
  --border:#E7E7E7;
  --shadow:0 10px 30px rgba(0,0,0,0.08);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:"Poppins", sans-serif;
  background:var(--background);
  color:var(--primary);
  line-height:1.6;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:min(92%, 1150px);
  margin:0 auto;
}

.top-call-bar{
  background:var(--accent);
  text-align:center;
  padding:8px 16px;
}

.top-call-bar a{
  color:#fff;
  text-decoration:none;
  font-weight:600;
}

.header-full{
  width:100%;
  background:var(--primary);
  position:sticky;
  top:0;
  z-index:1000;
}

.header-container{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.logo{
  margin:0;
  color:#fff;
  font-size:1.5rem;
  font-weight:700;
}

.nav-links{
  list-style:none;
  display:flex;
  align-items:center;
  gap:20px;
  margin:0;
  padding:0;
}

.nav-links a{
  color:#fff;
  text-decoration:none;
  font-weight:500;
}

.nav-links a.active{
  color:var(--accent);
}

.btn-nav,
.btn-main,
.btn-outline{
  display:inline-block;
  text-decoration:none;
  font-weight:600;
  padding:12px 24px;
  border-radius:999px;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn-nav,
.btn-main{
  background:var(--accent);
  color:#fff;
  box-shadow:var(--shadow);
}

.btn-outline{
  border:2px solid #fff;
  color:#fff;
  background:transparent;
}

.btn-nav:hover,
.btn-main:hover,
.btn-outline:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 34px rgba(0,0,0,0.16);
}

.hero{
  background:linear-gradient(135deg, #2B2B2B 0%, #3A3A3A 60%, #4A4A4A 100%);
  color:#fff;
  text-align:center;
  padding:110px 0 100px;
}

.hero-content{
  max-width:900px;
}

.hero h2{
  margin:0 0 18px;
  font-size:clamp(2rem, 5vw, 3.7rem);
  line-height:1.15;
}

.hero p{
  max-width:760px;
  margin:0 auto 14px;
  color:rgba(255,255,255,0.92);
}

.hero-actions{
  margin-top:28px;
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

.what-we-do,
.why-choose-us,
.services,
.reviews,
.areas-we-cover,
.trust,
.quote-cta,
.about-section{
  padding:72px 0;
}

.what-we-do h3,
.why-choose-us h3,
.services h3,
.reviews h3,
.areas-we-cover h3,
.quote-cta h3,
.about-section h3,
.page-hero h2{
  text-align:center;
  font-size:clamp(1.7rem, 3vw, 2.4rem);
  margin:0 0 18px;
  color:var(--primary);
}

.what-we-do p,
.quote-cta p,
.areas-intro,
.about-section p,
.page-hero p{
  max-width:850px;
  margin:0 auto 18px;
  text-align:center;
  color:var(--text-light);
  font-size:1.05rem;
}

.features-grid,
.reviews-grid,
.areas-grid,
.about-features{
  display:grid;
  gap:22px;
}

.features-grid,
.about-features{
  margin-top:28px;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
}

.feature-card,
.feature-item{
  background:var(--secondary);
  border:1px solid var(--border);
  border-top:4px solid var(--accent);
  border-radius:14px;
  padding:26px;
  box-shadow:var(--shadow);
  text-align:center;
}

.feature-card h4,
.feature-item h4{
  margin:0 0 10px;
  color:var(--primary);
}

.feature-card p,
.feature-item p{
  margin:0;
  color:var(--text-light);
}

.page-hero{
  background:var(--secondary);
  padding:80px 20px;
  text-align:center;
}

.services h3{
  margin-bottom:34px;
}

/* MAIN SERVICE LAYOUT */
.service{
  width:100%;
  text-align:center;
  margin:100px 0;
}

/* image centered */
.service .img-container{
  width:100%;
  max-width:900px;
  margin:0 auto 30px auto;
}

/* title centered in middle of page */
.service h4{
  text-align:center;
  margin:0 0 12px;
  font-size:1.5rem;
  color:var(--primary);
}

/* text centered in middle of page */
.service p{
  max-width:650px;
  margin:0 auto 20px auto;
  text-align:center;
  color:var(--text-light);
}

/* button centered in middle of page */
.service .btn-main{
  display:block;
  width:max-content;
  margin:0 auto;
}

/* image block */
.img-container{
  position:relative;
  min-height:460px;
  border-radius:16px;
  overflow:hidden;
  background:var(--primary);
  box-shadow:var(--shadow);
  transition:transform .35s ease, box-shadow .35s ease;
  cursor:pointer;
}

.img-container:hover{
  transform:scale(1.05);
  box-shadow:0 20px 40px rgba(0,0,0,0.25);
}

.img-container img{
  width:100%;
  height:100%;
  min-height:460px;
  object-fit:cover;
  position:absolute;
  top:0;
  left:0;
  transition:transform .8s ease;
}

.img-container:hover img{
  transform:scale(1.08);
}

/* before/after slide */
.before{
  z-index:2;
  transform:translateX(0%);
}

.after{
  z-index:1;
  transform:translateX(100%);
}

/* labels */
.image-label{
  position:absolute;
  top:15px;
  padding:6px 14px;
  font-size:.85rem;
  font-weight:600;
  border-radius:6px;
  z-index:5;
  letter-spacing:1px;
}

.before-label{
  left:15px;
  background:rgba(0,0,0,0.7);
  color:#fff;
}

.after-label{
  right:15px;
  background:var(--accent);
  color:#fff;
}

.quick-quote-banner{
  background:var(--primary);
  color:#fff;
  padding:34px 0;
}

.quick-quote-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  flex-wrap:wrap;
}

.quick-quote-inner h3{
  margin:0 0 8px;
  color:#fff;
  font-size:1.8rem;
}

.quick-quote-inner p{
  margin:0;
  color:rgba(255,255,255,0.88);
}

.reviews-grid{
  margin-top:28px;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
}

.review-card{
  background:var(--secondary);
  border:1px solid var(--border);
  border-radius:14px;
  padding:24px;
  box-shadow:var(--shadow);
}

.stars{
  color:var(--accent);
  font-size:1.2rem;
  margin-bottom:10px;
  letter-spacing:2px;
}

.review-card p{
  margin:0 0 10px;
}

.review-card span{
  color:var(--text-light);
  font-size:.95rem;
}

.areas-grid{
  margin-top:28px;
  grid-template-columns:repeat(auto-fit, minmax(160px, 1fr));
}

.areas-grid span{
  background:var(--secondary);
  border:1px solid var(--border);
  border-radius:999px;
  padding:14px 16px;
  text-align:center;
  font-weight:500;
  box-shadow:var(--shadow);
}

.trust-badges{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
}

.badge{
  background:var(--primary);
  color:#fff;
  padding:14px 18px;
  border-radius:999px;
  font-weight:600;
  box-shadow:var(--shadow);
}

.quote-cta{
  text-align:center;
}

.quote-cta .btn-main{
  margin-top:22px;
}

.form-card{
  background:var(--secondary);
  border:1px solid var(--border);
  border-radius:14px;
  padding:28px;
  box-shadow:var(--shadow);
  max-width:900px;
  margin:0 auto;
}

.form-card h3{
  text-align:center;
  margin-top:0;
  color:var(--primary);
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.field label{
  display:block;
  margin:0 0 6px;
  font-weight:500;
  color:var(--primary);
}

.field input,
.field select,
.field textarea{
  width:100%;
  padding:12px;
  border:1px solid var(--border);
  border-radius:10px;
  outline:none;
  background:#fff;
  color:var(--primary);
  font-family:inherit;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color:var(--accent);
  box-shadow:0 0 0 3px rgba(245,124,0,0.15);
}

.btn-wide{
  width:100%;
  margin-top:10px;
}

.float-btn{
  position:fixed;
  bottom:20px;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  border-radius:999px;
  padding:14px 18px;
  box-shadow:var(--shadow);
  z-index:999;
}

.call-btn{
  right:150px;
  background:var(--primary);
}

.whatsapp-btn{
  right:20px;
  background:#25D366;
}

footer{
  background:var(--primary);
  color:#fff;
  padding:26px 0;
  margin-top:24px;
}

.footer-inner{
  text-align:center;
}

.fade-up{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .6s ease, transform .6s ease;
}

@media (max-width:900px){
  .header-container{
    flex-direction:column;
    justify-content:center;
    padding:14px 0;
  }

  .quick-quote-inner{
    text-align:center;
    justify-content:center;
  }

  .img-container,
  .img-container img{
    min-height:340px;
  }

  .form-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:640px){
  .nav-links{
    flex-wrap:wrap;
    justify-content:center;
    gap:14px;
  }

  .hero{
    padding:90px 0 76px;
  }

  .what-we-do,
  .why-choose-us,
  .services,
  .reviews,
  .areas-we-cover,
  .trust,
  .quote-cta,
  .about-section{
    padding:56px 0;
  }

  .call-btn{
    right:132px;
  }

  .float-btn{
    padding:12px 14px;
    font-size:.92rem;
  }

  .service{
    margin:70px 0;
  }

}
/* ABOUT PAGE */

.page-hero {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.page-hero h2 {
  margin-bottom: 10px;
}

.about-section {
  text-align: center;
  max-width: 900px;
  margin: 90px auto;
}

.about-section h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.about-section p {
  color: #666;
  margin-bottom: 15px;
}

/* BUTTONS CENTERED */
.about-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

/* FEATURES GRID */
.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 25px;
  margin-top: 30px;
}

.feature-item {
  background: #F5F5F5;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.feature-item h4 {
  margin-bottom: 8px;
  color: var(--primary);
}

.feature-item p {
  font-size: 0.95rem;
  color: #666;
}
