/* ============================================
   5-CARD CAROUSEL WITH ICON CARDS
   Shows 5 cards at once with center focus
   ============================================ */

@import url("https://fonts.googleapis.com/css?family=DM+Sans:400,500,700&display=swap");


/* Carousel Container */
.location-slider-wrap {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-slider-area {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Swiper Container */
.destination-dt-location-slider-secondary {
    position: relative;
    width: 100%;
    height: 100%;
}

.destination-dt-location-slider-secondary .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Card Styling - Icon Based Cards */
.destination-dt-location-slider-secondary .swiper-slide {
    position: absolute;
    width: 320px;
    height: 380px;
    left: 0;
    right: 0;
    margin: auto;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                z-index 0.3s ease;
    cursor: pointer;
    border-radius: 20px;
    overflow: visible;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    opacity: 0.5;
}

/* Icon Container - Pink Circle Background */
.destination-dt-location-slider-secondary .swiper-slide .icon-container {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #FFE5E5 0%, #FFD4D4 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.destination-dt-location-slider-secondary .swiper-slide:hover .icon-container {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(156, 67, 81, 0.3);
}

/* Icon Styling */
.destination-dt-location-slider-secondary .swiper-slide .icon-container svg,
.destination-dt-location-slider-secondary .swiper-slide .icon-container img,
.destination-dt-location-slider-secondary .swiper-slide .icon-container i {
    width: 70px;
    height: 70px;
    object-fit: contain;
    font-size: 70px;
}

.destination-dt-location-slider-secondary .swiper-slide .icon-container svg {
    fill: #E74C3C;
}

.destination-dt-location-slider-secondary .swiper-slide .icon-container i {
    color: #E74C3C;
    line-height: 1;
}

/* Content */
.destination-dt-location-slider-secondary .swiper-slide .content {
    text-align: center;
    width: 100%;
}

.destination-dt-location-slider-secondary .swiper-slide h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.destination-dt-location-slider-secondary .swiper-slide p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card Link - Makes entire card clickable */
.destination-dt-location-slider-secondary .swiper-slide .card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    text-decoration: none;
}

/* Active (Center) Card */
.destination-dt-location-slider-secondary .swiper-slide.active {
    transform: translateX(0) scale(1.1);
    opacity: 1;
    z-index: 10;
    box-shadow: 0 20px 60px rgba(214, 31, 31, 0.2);
}

.destination-dt-location-slider-secondary .swiper-slide.active h3 {
    color: #f11242;
}

/* Position 1 - Far Left */
.destination-dt-location-slider-secondary .swiper-slide.pos-far-left {
    transform: translateX(-140%) scale(0.75);
    opacity: 0.4;
    z-index: 3;
}

/* Position 2 - Near Left */
.destination-dt-location-slider-secondary .swiper-slide.pos-left {
    transform: translateX(-70%) scale(0.85);
    opacity: 0.6;
    z-index: 5;
}

/* Position 3 - Center (Active) */
.destination-dt-location-slider-secondary .swiper-slide.active {
    transform: translateX(0) scale(1.1);
    opacity: 1;
    z-index: 10;
}

/* Position 4 - Near Right */
.destination-dt-location-slider-secondary .swiper-slide.pos-right {
    transform: translateX(70%) scale(0.85);
    opacity: 0.6;
    z-index: 5;
}

/* Position 5 - Far Right */
.destination-dt-location-slider-secondary .swiper-slide.pos-far-right {
    transform: translateX(140%) scale(0.75);
    opacity: 0.4;
    z-index: 3;
}

/* Hide cards outside the 5-card view */
.destination-dt-location-slider-secondary .swiper-slide.hidden {
    transform: translateX(0) scale(0.5);
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

/* Navigation Buttons */
.slider-btn-grp {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 20;
    pointer-events: none;
}

.slider-btn-grp.two {
    max-width: 100%;
}

.slider-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    pointer-events: all;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.slider-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f11242 0%, #f11242 100%);
    border-radius: 50%;
    transition: transform 0.3s ease;
    z-index: 0;
}

.slider-btn:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.slider-btn svg {
    width: 22px;
    height: 22px;
    fill: #333;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.slider-btn:hover {
    border-color: #E74C3C;
    box-shadow: 0 6px 30px rgba(231, 76, 60, 0.3);
}

.slider-btn:hover svg {
    fill: #fff;
    transform: scale(1.1);
}

.slider-btn:active {
    transform: scale(0.95);
}

/* Pagination Dots */
.carousel-pagination {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
    padding: 20px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

/* Larger tap target for mobile */
.carousel-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.carousel-dot:hover {
    background: #999;
    transform: scale(1.2);
}

.carousel-dot.active {
    background: #f11242;
    transform: scale(1.3);
    border-color: #f11242;
    box-shadow: 0 0 15px rgba(219, 33, 70, 0.4);
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

/* Large Tablets */
@media (max-width: 1200px) {
    .location-slider-wrap {
        max-width: 1100px;
        height: 450px;
    }

    .destination-dt-location-slider-secondary .swiper-slide {
        width: 280px;
        height: 340px;
        padding: 35px 25px;
    }

    .destination-dt-location-slider-secondary .swiper-slide .icon-container {
        width: 100px;
        height: 100px;
        margin-bottom: 25px;
    }

    .destination-dt-location-slider-secondary .swiper-slide .icon-container svg,
    .destination-dt-location-slider-secondary .swiper-slide .icon-container img,
    .destination-dt-location-slider-secondary .swiper-slide .icon-container i {
        width: 60px;
        height: 60px;
        font-size: 60px;
    }

    .destination-dt-location-slider-secondary .swiper-slide.pos-far-left {
        transform: translateX(-130%) scale(0.7);
    }

    .destination-dt-location-slider-secondary .swiper-slide.pos-far-right {
        transform: translateX(130%) scale(0.7);
    }
}

/* Tablets - Show 3 cards */
@media (max-width: 992px) {
    .location-slider-wrap {
        max-width: 900px;
        height: 400px;
    }

    .destination-dt-location-slider-secondary .swiper-slide {
        width: 260px;
        height: 320px;
        padding: 30px 20px;
    }

    .destination-dt-location-slider-secondary .swiper-slide .icon-container {
        width: 90px;
        height: 90px;
        margin-bottom: 20px;
    }

    .destination-dt-location-slider-secondary .swiper-slide .icon-container svg,
    .destination-dt-location-slider-secondary .swiper-slide .icon-container img,
    .destination-dt-location-slider-secondary .swiper-slide .icon-container i {
        width: 55px;
        height: 55px;
        font-size: 55px;
    }

    .destination-dt-location-slider-secondary .swiper-slide h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .destination-dt-location-slider-secondary .swiper-slide p {
        font-size: 13px;
    }

    /* Hide far left/right on tablets - show only 3 cards */
    .destination-dt-location-slider-secondary .swiper-slide.pos-far-left,
    .destination-dt-location-slider-secondary .swiper-slide.pos-far-right {
        opacity: 0;
        transform: translateX(0) scale(0.5);
        pointer-events: none;
    }

    .destination-dt-location-slider-secondary .swiper-slide.pos-left {
        transform: translateX(-80%) scale(0.8);
    }

    .destination-dt-location-slider-secondary .swiper-slide.pos-right {
        transform: translateX(80%) scale(0.8);
    }
}

/* Mobile Landscape and Small Tablets */
@media (max-width: 768px) {

    .location-slider-wrap {
        height: 360px;
        max-width: 700px;
        touch-action: pan-y pinch-zoom;
    }

    .destination-dt-location-slider-secondary .swiper-wrapper {
        touch-action: pan-y;
    }

    .destination-dt-location-slider-secondary .swiper-slide {
        width: 240px;
        height: 290px;
        padding: 25px 18px;
        border-radius: 16px;
        user-select: none;
        -webkit-user-select: none;
    }

    .destination-dt-location-slider-secondary .swiper-slide .icon-container {
        width: 80px;
        height: 80px;
        margin-bottom: 18px;
        border-radius: 16px;
    }

    .destination-dt-location-slider-secondary .swiper-slide .icon-container svg,
    .destination-dt-location-slider-secondary .swiper-slide .icon-container img,
    .destination-dt-location-slider-secondary .swiper-slide .icon-container i {
        width: 48px;
        height: 48px;
        font-size: 48px;
    }

    .destination-dt-location-slider-secondary .swiper-slide h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .destination-dt-location-slider-secondary .swiper-slide p {
        font-size: 12px;
        -webkit-line-clamp: 2;
    }

    .slider-btn {
        width: 48px;
        height: 48px;
    }

    .slider-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .carousel-pagination {
        gap: 12px;
    }
    
    .carousel-dot::before {
        width: 44px;
        height: 44px;
    }
}

/* Mobile Portrait - Show 3 cards */
@media (max-width: 576px) {
    .location-slider-wrap {
        height: 320px;
        max-width: 100%;
        padding: 0 10px;
        /* Enable touch scrolling for better mobile experience */
        touch-action: pan-y pinch-zoom;
    }

    .destination-dt-location-slider-secondary .swiper-wrapper {
        /* Smooth touch interactions */
        touch-action: pan-y;
    }

    .destination-dt-location-slider-secondary .swiper-slide {
        width: 200px;
        height: 250px;
        padding: 20px 15px;
        border-radius: 14px;
        /* Prevent text selection during swipe */
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }

    .destination-dt-location-slider-secondary .swiper-slide .icon-container {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
        border-radius: 14px;
    }

    .destination-dt-location-slider-secondary .swiper-slide .icon-container svg,
    .destination-dt-location-slider-secondary .swiper-slide .icon-container img,
    .destination-dt-location-slider-secondary .swiper-slide .icon-container i {
        width: 42px;
        height: 42px;
        font-size: 42px;
    }

    .destination-dt-location-slider-secondary .swiper-slide h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .destination-dt-location-slider-secondary .swiper-slide p {
        font-size: 11px;
        -webkit-line-clamp: 2;
    }

    .destination-dt-location-slider-secondary .swiper-slide.active {
        transform: translateX(0) scale(1.05);
    }

    .destination-dt-location-slider-secondary .swiper-slide.pos-left {
        transform: translateX(-70%) scale(0.75);
        opacity: 0.5;
    }

    .destination-dt-location-slider-secondary .swiper-slide.pos-right {
        transform: translateX(70%) scale(0.75);
        opacity: 0.5;
    }

    .slider-btn {
        width: 44px;
        height: 44px;
        /* Larger tap target on mobile */
        padding: 4px;
    }

    .slider-btn svg {
        width: 18px;
        height: 18px;
    }

    .slider-btn-grp {
        padding: 0 15px;
    }

    .carousel-pagination {
        bottom: -50px;
        gap: 14px;
        /* More spacing for easier tapping */
    }

    .carousel-dot {
        width: 12px;
        height: 12px;
        /* Ensure dots are easy to tap */
    }
    
    .carousel-dot::before {
        width: 44px;
        height: 44px;
    }
}

/* Extra Small Mobile */
@media (max-width: 420px) {
    .location-slider-wrap {
        height: 280px;
    }

    .destination-dt-location-slider-secondary .swiper-slide {
        width: 170px;
        height: 220px;
        padding: 18px 12px;
    }

    .destination-dt-location-slider-secondary .swiper-slide .icon-container {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }

    .destination-dt-location-slider-secondary .swiper-slide .icon-container svg,
    .destination-dt-location-slider-secondary .swiper-slide .icon-container img,
    .destination-dt-location-slider-secondary .swiper-slide .icon-container i {
        width: 36px;
        height: 36px;
        font-size: 36px;
    }

    .destination-dt-location-slider-secondary .swiper-slide h3 {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .destination-dt-location-slider-secondary .swiper-slide p {
        font-size: 10px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .slider-btn svg {
        width: 16px;
        height: 16px;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
    }
}

/* Accessibility */
.slider-btn:focus,
.carousel-dot:focus,
.destination-dt-location-slider-secondary .swiper-slide:focus {
    outline: 2px solid #f11242;
    outline-offset: 3px;
}

.slider-btn:focus:not(:focus-visible),
.carousel-dot:focus:not(:focus-visible),
.destination-dt-location-slider-secondary .swiper-slide:focus:not(:focus-visible) {
    outline: none;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.destination-dt-location-slider-secondary .swiper-slide {
    animation: fadeInUp 0.6s ease-out backwards;
}

.destination-dt-location-slider-secondary .swiper-slide:nth-child(1) { animation-delay: 0.1s; }
.destination-dt-location-slider-secondary .swiper-slide:nth-child(2) { animation-delay: 0.2s; }
.destination-dt-location-slider-secondary .swiper-slide:nth-child(3) { animation-delay: 0.3s; }
.destination-dt-location-slider-secondary .swiper-slide:nth-child(4) { animation-delay: 0.4s; }
.destination-dt-location-slider-secondary .swiper-slide:nth-child(5) { animation-delay: 0.5s; }

/* ------------------------------
Offer banner annimation
------------------------------ */

/* SECTION INITIAL STATE */
.home1-offer-section {
    opacity: 0;
    transform: translateY(60px) scale(0.98);
    transition: all 0.9s ease;
}

/* WHEN VISIBLE */
.home1-offer-section.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* SLIDER ITEM ANIMATION */
.home1-offer-slider .swiper-slide {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

/* STAGGER EFFECT */
.home1-offer-slider .swiper-slide.show {
    opacity: 1;
    transform: translateY(0);
}

/* IMAGE HOVER (PREMIUM TOUCH) */
.home1-offer-slider img {
    transition: transform 0.5s ease, filter 0.5s ease;
}

.home1-offer-slider img:hover {
    transform: scale(1.05);
    filter: brightness(1.05);
}

/* -------------------------
main service animation
-------------------------- */


/* =========================
   INITIAL STATE (SMOOTH + FAST)
========================= */

#main-services .swiper.module-dt-slider .swiper-slide {
  opacity: 0;
  transform: translateY(60px) scale(0.96);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform, opacity;
}


/* =========================
   ACTIVE (ON SCROLL)
========================= */

#main-services.in-view .swiper.module-dt-slider .swiper-slide {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Smooth stagger */
#main-services.in-view .swiper-slide:nth-child(1) { transition-delay: 0.05s; }
#main-services.in-view .swiper-slide:nth-child(2) { transition-delay: 0.1s; }
#main-services.in-view .swiper-slide:nth-child(3) { transition-delay: 0.15s; }
#main-services.in-view .swiper-slide:nth-child(4) { transition-delay: 0.2s; }
#main-services.in-view .swiper-slide:nth-child(5) { transition-delay: 0.25s; }



/* =========================
   GLASSMORPHISM CARD
========================= */

#main-services .swiper-slide {
  position: relative;
  border-radius: 20px;
  overflow: hidden;

  /* Glass effect */
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.3);

  transition: all 0.4s ease;
}


/* =========================
   PREMIUM HOVER (FAST + CLEAN)
========================= */

#main-services .swiper-slide:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}


/* Image zoom (soft) */
#main-services .swiper-slide img {
  transition: transform 0.5s ease;
}

#main-services .swiper-slide:hover img {
  transform: scale(1.08);
}


/* Glass shine effect */
#main-services .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255, 255, 255, 0.4),
    transparent 60%
  );
  opacity: 0;
  transition: 0.5s;
}

#main-services .swiper-slide:hover::before {
  opacity: 1;
}


/* Subtle red glow (your theme) */
#main-services .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 77, 77, 0.12),
    transparent 70%
  );
  opacity: 0;
  transition: 0.3s ease;
}

#main-services .swiper-slide:hover::after {
  opacity: 1;
}


/* Text polish */
#main-services .swiper-slide h3 {
  transition: 0.3s ease;
}

#main-services .swiper-slide:hover h3 {
  color: #ff4d4d;
}


/* Button */
#main-services .swiper-slide a {
  transition: 0.3s ease;
}

#main-services .swiper-slide:hover a {
  background: #ff4d4d;
  color: #fff;
}
/* Allow click through glass overlays */
#main-services .swiper-slide::before,
#main-services .swiper-slide::after {
  pointer-events: none;
}
/* --------------------
popular packages animation and css
---------------------- */
/* =========================
   SECTION
========================= */
.pmx-section {
  padding: 60px 0;

  /* 🔥 LIGHT PREMIUM BACKGROUND */
  background: linear-gradient(
    to bottom,
    #ffffff,
    #f3ece7
  );
}

.pmx-heading {
  text-align: center;
  margin-bottom: 40px;
}

.pmx-heading h2 {
  font-size: 42px;
  color: #7a2e2e; /* 🔥 premium red-brown */
  margin-bottom: 10px;
  font-weight: 600;
}

.pmx-heading p {
  font-size: 18px;
  color: var(--text-color);
}

/* DIVIDER */
.pmx-heading-divider {
  width: 120px;
  height: 2px;
  margin: auto;
      margin-bottom: 5%;

  background: linear-gradient(
    to right,
    transparent,
    #c5a9a9,
    transparent
  );
}

/* =========================
   HEADING
========================= */
.pmx-heading {
  margin-bottom: 25px;
    text-align: center;

}

.pmx-heading h2 {
  font-size: 40px;
  color: var(--title-color);
  margin: 0;
  font-weight: 600;
}
.pmx-main-card,
.pmx-card {
  border: 5px solid rgba(201, 196, 196, 0.145);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.153);
}

/* =========================
   LAYOUT
========================= */
.pmx-layout {
  display: flex;
  gap: 20px;
  height: 460px; /* desktop height */
}

/* =========================
   MAIN CARD
========================= */
.pmx-main-card {
  flex: 1.2;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

/* IMAGE */
.pmx-img-wrap {
  position: relative;
}

.pmx-img-wrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
/* =========================
   MAIN IMAGE FULL
========================= */
.pmx-main-card {
  flex: 1.2;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.pmx-img-wrap {
  height: 100%;
}

.pmx-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   OVERLAY TITLE
========================= */
.pmx-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;

  /* 🔥 INCREASE HEIGHT */
  padding: 30px 20px 25px;

  /* 🔥 STRONGER + TALLER GRADIENT */
  background: linear-gradient(to top, rgb(0 0 0) 0%, rgb(0 0 0 / 74%) 40%, rgb(0 0 0 / 39%) 70%, #00000000 100%);
}


.pmx-overlay h2 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

/* BADGE */
.pmx-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #ff3b3b;
  color: #fff;
  padding: 6px 14px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  z-index: 2;
}

/* SMALL CARD BADGE */
.pmx-card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff3b3b;
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 15px;
  z-index: 2;
}

/* CONTENT */
.pmx-content {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.pmx-content h2 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #222;
  font-weight: 600;
}


/* BOTTOM */
.pmx-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #555;
}
/* =========================
   SMALL CARD OVERLAY
========================= */
.pmx-card-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.pmx-card-overlay h4 {
  color: #fff;
  font-size: 14px;
  margin: 0;
}


/* =========================
   ARROWS
========================= */
.pmx-arrow {
  position: absolute;
  top: 35%;
  width: 35px;
  height: 35px;
  background: rgb(255 255 255);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
}

.pmx-left { left: 10px; }
.pmx-right { right: 10px; }

/* =========================
   SIDE GRID
========================= */
/* RIGHT SIDE WRAPPER */
.pmx-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

/* EACH ROW */
.pmx-row {
  flex: 1;
  display: flex;
  gap: 20px;
  height: calc((100% - 20px) / 2); /* 🔥 EXACT HALF HEIGHT */
}

/* FIX CARD SIZE */
.pmx-card {
  flex: 1;
  height: 100%;          /* 🔥 LOCK HEIGHT */
  min-height: 0;         /* prevents overflow */
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

/* FIX IMAGE FILL */
.pmx-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* 🔥 ALWAYS FILL */
  object-position: center;
  display: block;
}


/* BADGE FOR SMALL CARDS */
.pmx-card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff3b3b;
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 15px;
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {

  .pmx-layout {
    flex-direction: column;
    gap: 20px;
    height: auto;
  }

  /* MAIN CARD */
  .pmx-img-wrap img {
    height: 220px;
  }

  /* =========================
     🔥 FIX SIDE GRID
  ========================= */

  .pmx-side {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  /* 🔥 FIX ROW HEIGHT */
  .pmx-row {
    display: flex;
    gap: 15px;
    height: 160px;   /* ✅ FIXED HEIGHT */
  }

  /* 🔥 LOCK CARD SIZE */
  .pmx-card {
    width: 50%;
    height: 160px;
    flex: none;      /* 🔥 STOP FLEX STRETCH */
    border-radius: 18px;
    overflow: hidden;
  }

  /* 🔥 IMAGE FIT */
  .pmx-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

}

@media (max-width: 767px) {
  .pmx-section {
    margin-bottom: -85px;
}
}
@media (max-width: 576px) {
  .pmx-heading h2 {
    font-size: 28px;
    
  }
.pmx-heading p {
  font-size: 16px;
}
  .pmx-layout {
    flex-direction: column;
    gap: 15px;
    height: auto;
  }

  /* MAIN */
  .pmx-img-wrap img {
    height: 180px;
  }
  .pmx-card-badge {
  font-size: 10px;
  padding: 3px 9px;
}

  .pmx-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  /* 🔥 FORCE ROW HEIGHT (ABSOLUTE FIX) */
  .pmx-row {
    display: flex;
    gap: 10px;
    height: 120px !important;
  }

  /* 🔥 LOCK CARD SIZE (NO FLEX STRETCH) */
  .pmx-card {
    width: 50%;
    height: 120px !important;
    flex: none !important;   /* 🔥 VERY IMPORTANT */
    border-radius: 16px;
    overflow: hidden;
  }

  /* 🔥 IMAGE ALWAYS FIT */
  .pmx-card img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
  }

}
/* =========================
   VIEW BUTTON
========================= */
.pmx-view-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;

  background: rgba(255,255,255,0.9);
  color: #eb2b2b;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;

  backdrop-filter: blur(6px);
  transition: all 0.4s ease;
  z-index: 5;
}

/* HOVER */
.pmx-view-btn:hover {
  background: #eb2b2b;
  color: #ffffff;
}
.pmx-main-card,
.pmx-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease;
  will-change: transform;
}

/* LIFT EFFECT */
.pmx-main-card:hover,
.pmx-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.pmx-main-card img,
.pmx-card img {
  transition: transform 0.6s ease;
}

.pmx-main-card:hover img,
.pmx-card:hover img {
  transform: scale(1.08);
}
.pmx-overlay {
  transition: all 0.4s ease;
}

.pmx-main-card:hover .pmx-overlay {
  padding: 40px 20px 30px; /* expands */
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.35),
    transparent
  );
}
.pmx-overlay h2 {
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.pmx-main-card:hover .pmx-overlay h2 {
  transform: translateY(0);
}
.pmx-main-card::before,
.pmx-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );

  transition: all 0.6s ease;
  pointer-events: none;
}

/* SWEEP ON HOVER */
.pmx-main-card:hover::before,
.pmx-card:hover::before {
  left: 120%;
}


/* =========================
   CLICK ANIMATION
========================= */

.pmx-view-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 10;

  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 🔥 CUT MOTION (↖) */
.pmx-view-btn.animate {
  transform: translate(-120px, -120px) rotate(-8deg) scale(0.85);
}

.pmx-img-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 120%;
  height: 100%;

  background: linear-gradient(
    135deg,
    transparent 45%,
    rgba(255, 255, 255, 0.858) 50%,
    transparent 55%
  );

  transform: translateX(0);
  transition: transform 0.6s ease;
  pointer-events: none;
}

/* 🔥 CUT SWEEP */
.pmx-img-wrap.cut::after {
  transform: translateX(-120%);
}





   /* ==========================================================================
   Popular Venues Cards – Full clickable + Sliding top border
   Works well on desktop, mobile phones and tablets
========================================================================== */

.package-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  -webkit-tap-highlight-color: transparent;     /* removes blue tap highlight on Android/iOS */
  touch-action: manipulation;                    /* faster tap response */
}

/* Base card – attractive default state */
.package-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: white;
  border: 1px solid #e9ecef;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
  transition: all 0.38s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Sliding red line – starts hidden left */
.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #c41e3a, #e63946);
  z-index: 10;
  transition: left 0.55s ease;
}

/* ────────────────────────────────────────────────
   DESKTOP — full hover effect
───────────────────────────────────────────────── */
@media (hover: hover) and (pointer: fine) {
  .package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 52px rgba(48, 10, 10, 0.14);
  }

  .package-card:hover::before {
    left: 0;
  }

  .package-card:hover .package-img-wrap img {
    transform: scale(1.07);
  }
}

/* ────────────────────────────────────────────────
   TOUCH DEVICES — stronger :active feedback
───────────────────────────────────────────────── */
.package-card:active,
.package-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: 0 18px 44px rgba(48, 10, 10, 0.16);
  transition: all 0.22s ease;                    /* fast response when pressing */
}

/* Make sliding line appear quickly on press */
.package-card:active::before,
.package-card:focus-visible::before {
  left: 0;
  transition-duration: 0.4s;                      /* fast enough to be visible */
}

/* Keep the effect visible for a short moment after release (better mobile feel) */
.package-card {
  transition: all 0.38s ease, transform 0.28s ease-out, box-shadow 0.28s ease-out;
}

/* Image zoom on press/hover */
.package-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.package-card:active .package-img-wrap img,
.package-card:hover .package-img-wrap img {
  transform: scale(1.06);
}

/* Force no red border ever */
.package-card,
.package-card:hover,
.package-card:active,
.package-card:focus-visible {
  border-color: #e9ecef !important;
}

/* Tablet-friendly — slightly stronger lift (≥ 768px) */
@media (min-width: 768px) and (hover: none) {
  .package-card:active {
    transform: translateY(-12px);
    box-shadow: 0 24px 56px rgba(48, 10, 10, 0.18);
  }

  .package-card:active::before {
    transition-duration: 0.5s;
  }
}

/* Very small screens — gentler movement */
@media (max-width: 576px) {
  .package-card:active {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(48, 10, 10, 0.13);
  }
}