
/* 🔥 promo */
.sale-ribbon{
  position:absolute;
  top:15px;
  left:-45px;
  transform:rotate(-45deg);
  background:linear-gradient(135deg,#ff3b30,#ff9500);
  color:#fff;
  font-size:10px;
  font-weight:900;
  padding:6px 60px;
  z-index:5;
  letter-spacing:1px;
}

/* ⏳ UPPER RIGHT COUNTDOWN LABEL */
.countdown-label{
  position:absolute;
  top:12px;
  right:12px; /* changed from left → right */
  z-index:6;

  display:flex;
  align-items:center;
  gap:6px;

  padding:6px 10px;
  border-radius:10px;

  font-size:10px;
  font-weight:900;
  color:#fff;

  background:rgba(0,0,0,0.45);
  backdrop-filter:blur(10px);

  border:1px solid rgba(255,255,255,0.15);
  box-shadow:0 6px 18px rgba(0,0,0,0.25);
}



/* ICON */
.countdown-icon{
  color:#ffcc00;
  font-size:12px;
}

/* TEXT */
.countdown-text{
  opacity:0.9;
  letter-spacing:0.5px;
}

/* TIMER */
.countdown-time{
  margin-left:6px;
  color:#00ffcc;
  font-weight:900;
  text-shadow:0 0 10px rgba(0,255,204,0.4);
}
  .promo-section {
    width: 100%;
    padding: 40px 15px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
  }

  /* GRID */
  .promo-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
  }

  /* CARD */
  .promo-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.35s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
  }

  .promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  }

  /* IMAGE WRAP (UNCHANGED) */
  .promo-image-wrap {
    width: 100%;
    height: 230px;
    position: relative;
    overflow: hidden;
    background: #f3f3f3;
  }

  /* IMAGE (UNCHANGED - CONTAIN) */
  .promo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.4s ease;
    background: #fff;
  }

  .promo-card:hover .promo-img {
    transform: scale(1.05);
  }

  /* BADGES (UNCHANGED) */
  .promo-badge {
    position: absolute;
    top: 10px;
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 900;
    border-radius: 8px;
    color: #fff;
    z-index: 5;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
  }

  .hot { background: rgba(255,59,48,0.9); left: 10px; }
  .top { background: rgba(255,149,0,0.9); left: 10px; }
  .pkg { background: rgba(0,0,0,0.85); right: 10px; }

  /* ================= 🔥 ONLY UPGRADED PART: SLIDE-UP BODY ================= */
  .promo-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    flex: 1;

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);

    transform: translateY(70%);
    transition: all 0.45s cubic-bezier(0.25, 1, 0.3, 1);

    border-top-left-radius: 18px;
    border-top-right-radius: 18px;

    box-shadow: 0 -8px 20px rgba(0,0,0,0.08);
  }

  .promo-card:hover .promo-body {
    transform: translateY(0);
  }

  /* TEXT */
  .promo-title {
    font-size: 15px;
    font-weight: 900;
    color: ;
  }

  .promo-sub {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
    opacity: 0.9;
  }

  .promo-list {
    font-size: 12px;
    color: #444;
    padding-left: 14px;
    margin-bottom: 12px;
  }

  /* FOOTER */
  .promo-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .promo-price {
    font-size: 15px;
    font-weight: 900;
    color: #111;
  }

  .promo-btn {
    background: linear-gradient(135deg, #111, #333);
    color: #fff;
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 12px;
    text-decoration: none;
  }

  .promo-btn:hover {
    background: #ff4d2e;
  }

  /* MODAL (UNCHANGED) */
  .img-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
  }

  .img-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    animation: zoomIn 0.25s ease;
  }

  @keyframes zoomIn {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }


/* Solo Activities */
.activities-section{
  width:100%;
  padding:70px 15px;
  background:
    linear-gradient(135deg,#f7fbff 0%,#ffffff 100%);
  overflow:hidden;
}

/* HEADER */
.activities-header{
  text-align:center;
  margin-bottom:45px;
}

.activities-badge{
  display:inline-block;
  padding:8px 18px;
  border-radius:50px;
  background:linear-gradient(135deg,#00c6ff,#0072ff);
  color:#fff;
  font-size:13px;
  font-weight:800;
  letter-spacing:1px;
  margin-bottom:15px;
  box-shadow:0 8px 20px rgba(0,114,255,.25);
}

.activities-title{
  font-size:42px;
  font-weight:900;
  color:#0b1c39;
  margin-bottom:12px;
}

.activities-sub{
  max-width:750px;
  margin:auto;
  color:#6b7280;
  font-size:16px;
  line-height:1.8;
}

/* CARD */
.activity-card{
  background:#fff;
  border-radius:28px;
  overflow:hidden;
  position:relative;
  transition:.4s ease;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  border:1px solid rgba(255,255,255,.7);
  height:100%;
}

.activity-card:hover{
  transform:translateY(-10px);
  box-shadow:0 25px 60px rgba(0,0,0,.16);
}

/* IMAGE */
.activity-image-wrap{
  position:relative;
  overflow:hidden;
  height:260px;
}

.activity-image{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .7s ease;
}

.activity-card:hover .activity-image{
  transform:scale(1.08);
}

/* OVERLAY */
.activity-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top,
      rgba(0,0,0,.75),
      rgba(0,0,0,.15),
      transparent);
}

/* PRICE */
.activity-price{
  position:absolute;
  top:16px;
  right:16px;
  z-index:2;
  background:linear-gradient(135deg,#ff9800,#ff5722);
  color:#fff;
  padding:10px 16px;
  border-radius:14px;
  font-size:14px;
  font-weight:900;
  box-shadow:0 8px 20px rgba(255,87,34,.35);
}

/* DURATION */
.activity-duration{
  position:absolute;
  bottom:18px;
  left:18px;
  z-index:2;
  background:rgba(255,255,255,.18);
  backdrop-filter:blur(8px);
  color:#fff;
  padding:8px 14px;
  border-radius:50px;
  font-size:13px;
  font-weight:700;
  border:1px solid rgba(255,255,255,.25);
}

/* CONTENT */
.activity-content{
  padding:24px;
}

.activity-name{
  font-size:24px;
  font-weight:900;
  color:#111827;
  margin-bottom:12px;
}

.activity-desc{
  color:#6b7280;
  font-size:14px;
  line-height:1.8;
  margin-bottom:20px;

  display:-webkit-box;
  -webkit-line-clamp:4;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* RATING */
.activity-rating{
  display:flex;
  align-items:center;
  gap:4px;
  margin-bottom:20px;
  color:#ffc107;
  font-size:15px;
}

/* BUTTON */
.activity-btn{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  width:100%;
  padding:14px;
  border-radius:16px;
  background:linear-gradient(135deg,#00c6ff,#0072ff);
  color:#fff !important;
  text-decoration:none !important;
  font-size:15px;
  font-weight:800;
  transition:.3s ease;
  box-shadow:0 10px 25px rgba(0,114,255,.25);
}

.activity-btn:hover{
  transform:translateY(-3px);
  background:linear-gradient(135deg,#009dff,#005cff);
}

/* OWL */
.owl-nav{
  margin-top:35px !important;
  text-align:center;
}

.owl-prev,
.owl-next{
  width:50px;
  height:50px;
  border-radius:50% !important;
  background:#fff !important;
  color:#111 !important;
  font-size:22px !important;
  box-shadow:0 8px 20px rgba(0,0,0,.12);
  margin:0 8px;
  transition:.3s;
}

.owl-prev:hover,
.owl-next:hover{
  background:#0072ff !important;
  color:#fff !important;
}

.owl-dots{
  margin-top:20px;
}

.owl-dot span{
  width:12px !important;
  height:12px !important;
  background:#cfd8dc !important;
}

.owl-dot.active span{
  background:#0072ff !important;
  width:28px !important;
  border-radius:20px !important;
}

/* MOBILE */
@media(max-width:991px){

  .activities-title{
    font-size:32px;
  }

  .activity-image-wrap{
    height:230px;
  }
}

@media(max-width:575px){

  .activities-section{
    padding:55px 12px;
  }

  .activities-title{
    font-size:26px;
  }

  .activity-content{
    padding:20px;
  }

  .activity-name{
    font-size:21px;
  }
}

/* ================= SMALL HIGHLIGHT PROMO HEADING ================= */

.promo-title{
  position:relative;

  display:inline-flex;
  align-items:center;
  gap:10px;

  padding:8px 16px;

  font-size:18px;
  font-weight:800;
  letter-spacing:.3px;

  color:#111;

  border-radius:50px;

  background:#fff;

  border:1px solid rgba(0,114,255,.08);

  box-shadow:
  0 4px 14px rgba(0,0,0,.06);

  overflow:hidden;
}

/* LEFT HIGHLIGHT BAR */
.promo-title::before{
  content:"";
  position:absolute;

  left:0;
  top:0;

  width:5px;
  height:100%;

  background:linear-gradient(
    180deg,
    #00c6ff,
    #0072ff
  );
}

/* SMALL GLOW */
.promo-title::after{
  content:"";
  position:absolute;

  right:-25px;
  top:-25px;

  width:70px;
  height:70px;

  background:rgba(0,198,255,.08);

  border-radius:50%;
}

/* DOT */
.promo-dot{
  width:8px;
  height:8px;

  border-radius:50%;

  background:#0072ff;

  box-shadow:
  0 0 10px rgba(0,114,255,.5);
}

/* BADGE */
.promo-badge{
  padding:4px 10px;

  border-radius:50px;

  background:linear-gradient(
    135deg,
    #0072ff,
    #00c6ff
  );

  color:#fff;

  font-size:10px;
  font-weight:800;

  letter-spacing:.8px;

  text-transform:uppercase;
}

/* MOBILE */
@media(max-width:768px){

  .promo-title{
    font-size:15px;
    padding:7px 14px;
  }

  .promo-badge{
    font-size:9px;
    padding:3px 8px;
  }

}