/* Breadcrumb theme */
.breadcrumb-theme .breadcrumb-item a{
    color: rgba(11, 32, 58, .75);
    text-decoration: none;
}
.breadcrumb-theme .breadcrumb-item a:hover{ color: var(--secondary); text-decoration: underline; }
.breadcrumb-theme .breadcrumb-item.active{
    color: var(--secondary);
    font-weight: 600;
}
.breadcrumb-theme .breadcrumb-item + .breadcrumb-item::before{
    color: rgba(11, 32, 58, .35);
}

/* Hero */
.pkg-hero{
    background:
        radial-gradient(900px circle at 15% 5%, rgba(243, 183, 90, .20), transparent 55%),
        linear-gradient(135deg, var(--secondary) 0%, #103a61 100%);
    border-radius: 1.25rem;
    overflow: hidden;
}
.pkg-hero-img{
    /* height: 320px; */
    background: #07182b;
}
.pkg-hero-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .95;
}

.pkg-chip{
    display:inline-flex;
    align-items:center;
    gap:.4rem;
    padding:.35rem .7rem;
    border-radius:999px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(255,255,255,.90);
    border: 1px solid rgba(255,255,255,.25);
    color: var(--secondary);
}
.pkg-chip.primary{
    background: var(--primary);
    border-color: var(--primary);
    color: #1b1b1b;
}

.pkg-hero-price{
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 14px 16px;
}
.pkg-hero-price .label{ font-size: 12px; color: rgba(255,255,255,.70); }
.pkg-hero-price .value{ font-size: 18px; font-weight: 800; color: #fff; }

/* Cards */
.card-soft{
    border: 1px solid rgba(11, 32, 58, .08);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(11, 32, 58, .08);
}

/* Buttons */
.btn-theme-primary{
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
}
.btn-theme-primary:hover{ background: #08192d; color:#fff; }

.btn-theme-outline{
    border: 1px solid rgba(11, 32, 58, .25);
    color: var(--secondary);
    background: #fff;
    border-radius: 12px;
    font-weight: 700;
}
.btn-theme-outline:hover{ background: var(--secondary); color:#fff; }

.btn-theme-gold{
    background: var(--primary);
    border: none;
    color: #1b1b1b;
    border-radius: 12px;
    font-weight: 800;
}
.btn-theme-gold:hover{ filter: brightness(.98); }

/* Accordion */
.accordion .accordion-item{
    border-radius: 16px !important;
    overflow: hidden;
    border: 1px solid rgba(11, 32, 58, .08);
}
.accordion-button{
    font-weight: 800;
    color: var(--secondary);
}
.accordion-button:not(.collapsed){
    background: rgba(243, 183, 90, .18);
    color: var(--secondary);
    box-shadow: none;
}

/* Related cards match listing style */
.rel-card{
    border: 1px solid rgba(11, 32, 58, .08);
    border-radius: 18px;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    background: #fff;
}
.rel-card:hover{
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(11, 32, 58, .18);
    border-color: rgba(11, 32, 58, .18);
}
.rel-thumb{ height: 170px; background: var(--light-bg); }
.rel-thumb img{ width:100%; height:100%; object-fit:cover; }
.rel-title{
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 44px;
    color: var(--secondary);
}
.rel-price{
    padding: 10px 12px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(243, 183, 90, .25), rgba(243, 183, 90, .08));
    border: 1px solid rgba(243, 183, 90, .45);
}

/* HERO compact */
.pkg-hero2{
  background: linear-gradient(135deg, #0b203a 0%, #123a63 100%);
  box-shadow: 0 12px 40px rgba(11,32,58,.12);
}

.pkg-hero2__img{
  height: 100%;
  background: var(--light-bg);
}
.pkg-hero2__img img{
  width: 100%;
  height: 300px;
  object-fit: cover;
  aspect-ratio: 16/10;
}

.pkg-hero2__title{
  font-weight: 900;
  letter-spacing: -.3px;
  line-height: 1.2;
  font-size: 1.35rem;
}

.pkg-hero2__desc{
  font-size: .92rem;
  line-height: 1.35;
}

.pkg-hero2__stat{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 10px 12px;
  min-width: 140px;
}
.pkg-hero2__stat .label{
  font-size: .72rem;
  opacity: .85;
}
.pkg-hero2__stat .value{
  font-size: .95rem;
  font-weight: 900;
}

.pkg-hero2__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Make content cards compact */
.card-soft .card-body{
  padding: 1rem !important;
}
.card-soft h2{
  margin-bottom: .5rem !important;
}
.content-text{
  color: rgba(11,32,58,.78);
  line-height: 1.6;
}

/* Section spacing tighter */
section.pb-5 { padding-bottom: 2.25rem !important; }
section.py-5 { padding-top: 2.25rem !important; padding-bottom: 2.25rem !important; }

/* (Re-use your umrah-card2 + actionbar css from listing) */

@media (max-width: 768px) {
    .pkg-hero2__img img{
        height: 100%;
    }

}

/* One-line compact CTA */
.umrah-cta-inline{
  align-items: center;
  flex-wrap: nowrap;
}

.umrah-btn-compact{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: .42rem .65rem;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 10px;
  box-shadow: none;
}

.umrah-btn-compact i{
  font-size: .9rem;
}

/* Subtle hover polish */
.umrah-btn-compact:hover{
  transform: translateY(-1px);
}

/* Mobile tweak (keeps it tidy) */
@media (max-width: 575px){
  .umrah-btn-compact span{ display:none; } /* icons-only on small screens */
}


/* Related Package CSS */
:root{
  --primary:#f3b75a;
  --secondary:#0b203a;
  --light-bg:#f8fafc;
}

/* ===== Detail Page: Related Card (related-card) ===== */
.related-card{
  background:#fff;
  border: 1px solid rgba(11,32,58,.08);
  border-radius: 16px;
  overflow:hidden;
  box-shadow: 0 10px 28px rgba(11,32,58,.06);
  transition: transform .16s ease, box-shadow .16s ease;
}
.related-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(11,32,58,.10);
}

.related-card__media{
  position:relative;
  display:block;
  aspect-ratio: 16/9;
  background: var(--light-bg);
  overflow:hidden;
}
.related-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* top tag */
.related-card__tag{
  position:absolute;
  left:10px;
  top:10px;
  background: rgba(243,183,90,.95);
  color: var(--secondary);
  font-weight: 900;
  font-size: .72rem;
  padding: .28rem .55rem;
  border-radius: 999px;
}

/* body */
.related-card__body{
  padding: 12px 12px 10px;
}

/* title */
.related-card__title{
  margin: 0 0 6px;
  font-size: .95rem;
  line-height: 1.28;
  font-weight: 900;
  letter-spacing: -.2px;
}
.related-card__title a{
  color: var(--secondary);
  text-decoration:none;
  display:block;
}
.related-card__title a:hover{ text-decoration: underline; }

/* meta */
.related-card__meta{
  font-size: .78rem;
  color: rgba(11,32,58,.72);
  margin-bottom: 10px;
}

/* price row */
.related-card__price{
  display:flex;
  justify-content: space-between;
  align-items:center;
  background: var(--light-bg);
  border: 1px solid rgba(11,32,58,.06);
  border-radius: 12px;
  padding: 8px 10px;
  margin-bottom: 10px;
}
.related-card__price .label{
  font-size: .72rem;
  color: rgba(11,32,58,.62);
  font-weight: 700;
}
.related-card__price .value{
  font-size: .85rem;
  font-weight: 900;
  color: var(--secondary);
}

/* actions: reuse same actionbar look but local */
.related-card__actions{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--light-bg);
  border: 1px solid rgba(11,32,58,.08);
  border-radius: 12px;
  overflow:hidden;
}

/* action items (same sizing as index) */
.related-card__actions .umrah-action-item{
  padding: 7px 2px;
  font-size: .74rem;
}
.related-card__actions .umrah-action-item:not(:last-child){
  border-right: 1px solid rgba(11,32,58,.08);
}

/* ===== Detail Page: Related Card Actions ===== */

.related-actions{
  display: flex;
  gap: 8px;
  padding-top: 6px;
}

/* Base action pill */
.related-action{
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  padding: 6px 8px;
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;

  border-radius: 999px;
  background: var(--light-bg);
  color: var(--secondary);
  border: 1px solid rgba(11,32,58,.08);

  transition: background .15s ease, color .15s ease, transform .12s ease;
}

/* Icons */
.related-action i{
  font-size: .9rem;
  opacity: .85;
}

/* Hover */
.related-action:hover{
  transform: translateY(-1px);
  background: rgba(11,32,58,.05);
}

/* Call */
.related-action.call{
  color: var(--secondary);
}
.related-action.call:hover{
  background: rgba(11,32,58,.08);
}

/* WhatsApp */
.related-action.whatsapp{
  color: #198754;
}
.related-action.whatsapp:hover{
  background: rgba(25,135,84,.12);
}

/* Quote */
.related-action.quote{
  color: #8a5b12;
}
.related-action.quote:hover{
  background: rgba(243,183,90,.35);
}

/* Mobile fine-tune */
@media (max-width: 575px){
  .related-action span{ display:none; } /* icons only */
  .related-action{
    padding: 7px;
  }
}
