/* ======================== PAC ========================== */

.pac-hero{
  position:relative;
  height:320px;
  border-radius:20px;
  margin:10px;
  overflow:hidden;
  display:flex;
  align-items:flex-end;
  margin-bottom:25px;
  background:url('../images/packaging_coils.png') center/cover no-repeat;
}

.pac-hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(
    to right,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.55) 40%,
    rgba(0,0,0,0.2) 100%
  );
}

.pac-hero-content{
  position:relative;
  z-index:2;
  width:70%;
  max-width:none;
  padding:0 40px;
  display:flex;
  align-items:flex-end;
  gap:40px;
}

.pac-hero h1{
  font-size:74px;
  font-weight:800;
  color:#fff;
  font-style:italic;
  margin-bottom:20px;
  letter-spacing:1px;
  white-space:nowrap;
  line-height:1.1;
}

.pac-hero p{
  font-size:18px;
  color:rgba(255,255,255,0.85);
  line-height:1.4;
  max-width:420px;
  margin-bottom:40px;
}

/* ================= PACKAGING PAGE ================= */

.pac-section{
  padding:20px 0;
  background:#fff;
}

.pac-container{
  max-width:1700px;
  width:70%;
  margin:auto;
}

/* ================= QUALITY PROMISE ================= */

.pac-section-inner{
  display:flex;
  align-items:center;
  gap:60px;
}

.pac-title{
  font-size:28px;
  font-weight:700;
  margin-bottom:20px;
  color:#076fd2;
  font-style:italic;
}

.pac-text{
  font-size:14px;
  color:#6b7280;
  line-height:1.7;
  margin-bottom:14px;
}

.pac-list{
  margin-top:15px;
}

.pac-list li{
  font-size:14px;
  margin-bottom:10px;
  padding-left:18px;
  position:relative;
  color:#374151;
}

.pac-list li::before{
  content:"";
  width:6px;
  height:6px;
  background:#2d4054;
  border-radius:50%;
  position:absolute;
  left:0;
  top:7px;
}

/* ================= PACKAGING TYPES ================= */

.pac-types{
  padding:90px 0;
  background:#ffffff;
}

/* ================= PACKAGING DETAILS ================= */

.pac-details{
  padding:100px 0;
  background:#cdeaff;
}
.badge-icon i{
  font-size:22px;
  color:#076fd2;
}
/* ===================== RESPONSIVE (MOBILE + WEBVIEW) ===================== */

/* ---------- TABLET (1024px and below) ---------- */
@media (max-width:1024px){

  .pac-container{
    width:90%;
  }

  .pac-hero-content{
    width:100%;
    flex-direction:column;
    gap:20px;
    padding:0 20px;
  }

  .pac-hero h1{
    font-size:48px;
    white-space:normal;
  }

  .pac-section-inner{
    flex-direction:column;
    gap:30px;
  }

}


/* ---------- MOBILE (768px and below) ---------- */
@media (max-width:768px){

  /* HERO */
 .pac-hero{
    height: 220px;
    margin: 8px;
    border-radius: 14px;
  }

  .pac-hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 0 20px;
  }

   .pac-hero h1{ 
    font-size: 10px;
    white-space: normal;
    margin-bottom: 4px;
  }

  .pac-hero p{
    font-size: 4px;
    max-width: 100%;
    margin-bottom: 20px;
  }
  /* CONTENT */
  .pac-title{
    font-size:22px;
  }

  .pac-text{
    font-size:13px;
  }

  .pac-list li{
    font-size:13px;
  }

}


/* ---------- SMALL MOBILE (480px and below) ---------- */
@media (max-width:480px){

  .pac-hero{
    height:220px;
  }

  .pac-hero h1{
    font-size:26px;
  }

  .pac-hero p{
    font-size:13px;
  }

  .pac-container{
    width:92%;
  }

}