/* ================= HERO ================= */
/* ======================================
   PIGEON SAFETY NETS HERO
====================================== */

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

  background: linear-gradient(90deg, #5a6d7c 100%);
}

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

/* container */
.pigeon-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: pigeon-slide-in 1s ease-out forwards;
}

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

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

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

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

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

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

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

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

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

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

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







.pigeon-hero {
  background: #607d8b url("../images/pigeon-banner.jpg") center/cover no-repeat;
  color: white;
  padding: 120px 0 90px;
  margin-top: 80px;
}

.pigeon-hero h1 {
  font-size: 42px;
  font-weight: 700;
}

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

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

.hero-call {
  background: #ffc107;
  color: #111;
}

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


/* ================= INTRO ================= */
.pigeon-intro{
  background-color: #f9f9f7;
}

.pigeon-intro h2 {
  color: #1f2a3a;
  font-weight: 700;
  margin-bottom: 20px;
}

.pigeon-intro p {
  color: black;
  line-height: 1.7;
}

.pigeon-img {
  width: 100%;
  max-width: 500px;     /* 👈 decrease size */
  aspect-ratio: 1 / 1;  /* 👈 perfect square */
  object-fit: cover;    /* 👈 no distortion */
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  display: block;
  margin: 0 auto;       /* 👈 center align */
}

.pigeon-points li {
  color:black;
  margin-bottom: 10px;
}


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

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

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

.benefit-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
  .pigeon-benefits h2 {
  position: relative;
  display: inline-block;
}

.pigeon-benefits h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 60px;        /* 👈 underline length */
  height: 3px;        /* 👈 thickness */
  background-color: #1f2a3a;
  border-radius: 2px;
}
}


/* ================= CONTACT ================= */
.pigeon-contact{
  background-color: #ecf1eb;
}
.pigeon-contact input,
.pigeon-contact textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.pigeon-contact textarea {
  height: 120px;
}

.pigeon-contact button {
  background: #ffc107;
  color: #111;
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
}
.pigeon-contact h2 {
  position: relative;
  display: inline-block;
}

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


/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .pigeon-hero h1 {
    font-size: 28px;
  }
  .pigeon-hero {
    padding: 90px 0 60px;
  }
}



/* ======================================
   PIGEON HERO MOBILE FIX (FINAL)
====================================== */

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

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

@media (max-width: 768px) {

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

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

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

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

  .pigeon-btn {
    width: 100%;
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}



.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);
}
