/* =========================================================
   PACKAGES — FINAL (CLEAN + DIFFERENT FROM SERVICES)
   COLORS NOW DRIVEN BY :root tokens (clh-*)
   ========================================================= */

.cm-section.packages{
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 5vw, 86px) 0;

  /* Soft band using brand tints */
  background: linear-gradient(180deg,
    rgba(11,58,164,.05) 0%,
    rgba(11,58,164,.10) 100%
  );
}

/* Ambient premium wash */
.cm-section.packages::before{
  content:"";
  position:absolute;
  inset:-180px -180px -240px -180px;
  background:
    radial-gradient(980px 520px at 16% 16%, rgba(255,122,0,.18), transparent 62%),
    radial-gradient(860px 520px at 82% 18%, rgba(11,58,164,.10), transparent 62%),
    radial-gradient(980px 620px at 52% 100%, rgba(14,143,58,.10), transparent 60%);
  pointer-events:none;
  z-index:0;
}

/* Separator from previous section */
.cm-section.packages::after{
  content:"";
  position:absolute;
  left: 0; right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(12,16,23,.12), transparent);
  z-index:0;
}

.cm-section.packages .container{
  position: relative;
  z-index: 1;
}

/* ---------- Header ---------- */
.packages-head{
  position: relative;
  max-width: 980px;
  margin: 0 0 14px;
  display: block;
}

/* Kicker pill */
.sec-kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.80);
  border: 1px solid var(--clh-border);
  box-shadow: 0 10px 24px rgba(12,16,23,.06);
  font-weight: 900;
  letter-spacing: .2px;
}

/* ---------- Grid ---------- */
.packages-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* ---------- Card ---------- */
.pkg-card{
  border-radius: 26px;
  overflow:hidden;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--clh-border);
  box-shadow: 0 20px 55px rgba(12,16,23,.10);
  transition: box-shadow .18s ease, border-color .18s ease;
  display:flex;
  flex-direction:column;
  min-height: 460px;
}

/* Glow hover */
.pkg-card:hover{
  border-color: rgba(255,122,0,.26);
  box-shadow:
    0 26px 70px rgba(12,16,23,.14),
    0 0 0 6px rgba(255,122,0,.06);
}

/* ---------- Media ---------- */
.pkg-media{
  position:relative;
  height: 190px;
  background: rgba(12,16,23,.06);
}
.pkg-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  filter: saturate(1.05) contrast(1.05);
}
.pkg-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.00) 0%, rgba(0,0,0,.12) 42%, rgba(0,0,0,.38) 100%);
  pointer-events:none;
}

/* Icon badge */
.pkg-icon{
  position:absolute;
  left: 16px;
  bottom: -20px;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display:grid;
  place-items:center;

  /* Orange → warm highlight (matches brand) */
  background: linear-gradient(180deg,
    rgba(255,122,0,.98),
    rgba(255,122,0,.82)
  );

  border: 1px solid rgba(0,0,0,.06);
  box-shadow:
    0 16px 30px rgba(255,122,0,.20),
    0 14px 26px rgba(12,16,23,.10);
}
.pkg-icon i{ color:#120A00; font-size: 19px; }

/* Top-right tag */
.pkg-tag{
  position:absolute;
  right: 14px;
  top: 14px;
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(12,16,23,.12);
  box-shadow: 0 10px 22px rgba(12,16,23,.08);
  font-weight: 900;
  letter-spacing: .35px;
  font-size: 12px;
  color: rgba(12,16,23,.86);
}
.pkg-tag i{ color: var(--clh-blue); }

/* ---------- Body ---------- */
.pkg-body{
  padding: 34px 16px 16px;
  display:flex;
  flex-direction:column;
  gap: 10px;
  flex: 1 1 auto;
}

.pkg-title{
  margin: 0;
  font-weight: 900;
  letter-spacing: -.4px;
  font-size: 19px;
  color: rgba(12,16,23,.96);
  position: relative;
}
.pkg-title::after{
  content:"";
  display:block;
  width: 46px;
  height: 3px;
  margin-top: 8px;
  border-radius: 99px;
  background: linear-gradient(90deg,
    var(--clh-blue),
    rgba(255,122,0,.35)
  );
}

.pkg-desc{
  margin: 0;
  color: rgba(12,16,23,.68);
  font-size: 14.6px;
  line-height: 1.65;
  font-weight: 600;
}
.pkg-desc strong{ color: rgba(12,16,23,.92); font-weight: 900; }

/* Points */
.pkg-points{
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.pkg-points li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding: 10px 10px;
  border-radius: 14px;

  /* brand-blue soft block */
  background: rgba(11,58,164,.04);

  border: 1px solid rgba(12,16,23,.06);
  color: rgba(12,16,23,.74);
  font-weight: 650;
  font-size: 13.7px;
  line-height: 1.55;
}
.pkg-points i{
  margin-top: 2px;
  color: var(--clh-green);
}

/* Best-for chips */
.pkg-bestfor{
  margin-top: 6px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

/* CTA row */
.pkg-cta{
  margin-top: auto;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 12px;
}
.pkg-cta .btn{
  height: 46px;
  border-radius: 16px;
}
.btn-block{ width:100%; }

/* Note card */
.pkg-note{
  padding: 18px;
  border: 1px solid var(--clh-border);
  background: rgba(255,255,255,.94);
  box-shadow: 0 16px 40px rgba(12,16,23,.10);
  border-radius: 26px;
}
.pkg-note .card-title{
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: -.3px;
  color: rgba(12,16,23,.94);
  display:flex;
  align-items:center;
  gap: 10px;
}
.pkg-note .card-title i{ color: var(--clh-orange); }
.pkg-note .card-desc{
  margin: 0;
  color: rgba(12,16,23,.70);
  line-height: 1.7;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 991px){
  .packages-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px){
  .packages-grid{ grid-template-columns: 1fr; }
  .pkg-media{ height: 200px; }
  .pkg-cta{ grid-template-columns: 1fr; }
}
/* =========================================================
   PACKAGES CTA BUTTON COLORS (MATCH HERO SCREENSHOT)
   Only affects buttons inside packages
   ========================================================= */

/* WhatsApp Button (Green Gradient) */
.pkg-cta .btn-primary{
  background: linear-gradient(180deg, #25D366 0%, #1DA851 100%) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(29,168,81,.25);
  transition: all .18s ease;
}

.pkg-cta .btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(29,168,81,.35);
  background: linear-gradient(180deg, #29E06B 0%, #1DA851 100%) !important;
}

/* Call Button (Blue Gradient) */
.pkg-cta .btn-dark{
  background: linear-gradient(180deg, #3A6FE8 0%, #2C57C6 100%) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(44,87,198,.25);
  transition: all .18s ease;
}

.pkg-cta .btn-dark:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(44,87,198,.35);
  background: linear-gradient(180deg, #4A7EF5 0%, #2C57C6 100%) !important;
}

/* Icon alignment polish */
.pkg-cta .btn i{
  margin-right: 6px;
  font-size: 15px;
}
