/* ================= HERO ================= */
/* ======================================
   CONSTRUCTION SAFETY NETS HERO
====================================== */

#construction-hero {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  background: linear-gradient(90deg, #6a4c93 100%);
}

/* overlay */
.construction-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  z-index: 1;
}

/* container */
.construction-hero-container {
  position: relative;
  z-index: 2;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  max-width: 900px;
  width: 100%;
  padding: 75px 20px 0;

  opacity: 0;
  transform: translateX(-40px);
  animation: construction-slide-in 1s ease-out forwards;
}

/* animation */
@keyframes construction-slide-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* title */
.construction-hero-title {
  font-size: 2.6rem;
  font-weight: 600;
  color: white;
  margin-bottom: 5px;
}

/* text */
.construction-hero-text {
  font-size: 1.1rem;
  color: #f1f1f1;
  line-height: 1.6;
}

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

/* button base */
.construction-btn {
  padding: 11px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

/* call button */
.construction-btn-call {
  background: rgb(216,216,123);
  color: black;
}

.construction-btn-call:hover {
  background: rgb(229,229,99);
  transform: translateY(-2px);
}

/* whatsapp */
.construction-btn-whatsapp {
  background: #52a76e;
  color: white;
}

.construction-btn-whatsapp:hover {
  background: #307149;
  transform: translateY(-2px);
}

/* responsive */
@media (max-width:768px){
  #construction-hero{height:260px;}
  .construction-hero-title{font-size:2rem;}
}

@media (max-width:480px){
  #construction-hero{height:230px;}
  .construction-hero-title{font-size:1.7rem;}
}



.construction-hero {
  background: #111;
  color: white;
  padding: 130px 0 90px;
  margin-top: 80px;
}

.construction-hero h1 {
  font-size: 44px;
  font-weight: 700;
}

.construction-hero p {
  max-width: 700px;
  margin: 15px auto 30px;
  opacity: 0.9;
}

/* hero buttons */
.hero-buttons a {
  padding: 12px 28px;
  margin: 10px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.hero-call {
  background: #0d6efd;
  color: white;
}

.hero-whatsapp {
  background: #25d366;
  color: white;
}


/* ================= INTRO ================= */

.construction-intro {
  color: #1f2a3a;
  background-color: rgb(241, 236, 239);
  padding: 80px 0;
}

.construction-intro h2 {
  color: black;
  font-weight: 700;
  margin-bottom: 20px;
}

.construction-points div {
  color:black;
  margin-bottom: 10px;
  font-weight: 500;
}

.construction-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}


/* ================= BENEFITS ================= */
.construction-benefits {
  background: #f5f7fa;
  padding: 80px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}


.benefit-card {
  background: #89b299;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

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

.benefit-card h4 {
  font-weight: 600;
  margin-bottom: 10px;
}
.construction-benefits h2 {
  position: relative;
  display: inline-block;
  
}
.construction-benefits {
  text-align: center;
}
.construction-benefits h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 60px;   /* small underline */
  height: 3px;
  background-color: #1f2a3a; /* change color if needed */
  border-radius: 2px;
}


/* ================= CONTACT ================= */

.construction-contact {
  background-color: #e2dee9;
  padding: 80px 0;
}

.construction-form input,
.construction-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.construction-form textarea {
  height: 120px;
}

.construction-form button {
  background: orange;
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
}
.construction-contact h2 {
  position: relative;
  display: inline-block;
}



.construction-contact h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 70px;   /* small underline */
  height: 4px;
  background-color: #1f2a3a; /* your color */
  border-radius: 2px;
}


/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .construction-hero h1 {
    font-size: 28px;
  }

  .construction-hero {
    padding: 90px 0 60px;
  }
}




/* ======================================
   CONSTRUCTION HERO MOBILE FIX (SAME AS BN)
====================================== */

#construction-hero {
  min-height: 420px !important;
  height: auto !important;
  padding: 100px 0 60px !important;
}

.construction-hero-container {
  padding-top: 0 !important;
}

@media (max-width: 768px) {

  #construction-hero {
    min-height: 500px !important;
    padding: 120px 20px 80px !important;
  }

  .construction-hero-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .construction-hero-text {
    font-size: 0.95rem;
    margin-top: 10px;
  }

  .construction-hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .construction-btn {
    width: 100%;
  }
}





.duct-location-section {
  padding: 60px 0;
  background: #f9fafc;
}

/* LEFT SIDE */
.location-links-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.location-links-box h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.location-links-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-links-box ul li {
  margin-bottom: 10px;
}

.location-links-box ul li a {
  text-decoration: none;
  color: #333;
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  transition: 0.3s;
}

/* Hover effect */
.location-links-box ul li a:hover {
  background: #ff4da6;
  color: #fff;
  padding-left: 15px;
}

/* RIGHT SIDE */
.duct-content-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.duct-content-box h2 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 700;
}

.duct-content-box p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
  .location-links-box {
    margin-bottom: 20px;
  }
}




/* Scroll To Top Button */

.scroll-top{
  position: fixed;
  right: 25px;
  bottom: 20px; /* above whatsapp button */
  width: 45px;
  height: 45px;
  background: #1b7f5b;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.scroll-top:hover{
  background:#145c43;
}

.scroll-top.show{
  opacity:1;
  visibility:visible;
  transform: translateY(0);
}
