/* =========================================== */
/* PREMIUM POPULAR PLACES CARD STYLES */
/* =========================================== */

.popular-places-section {
    padding: 60px 0;
    background: transparent;
}

.premium-place-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border: 1px solid rgba(255, 152, 0, 0.1);
    /* margin-bottom: 30px; */
}

.premium-place-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(255, 152, 0, 0.15);
    border-color: rgba(255, 152, 0, 0.3);
}

.place-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.place-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.premium-place-card:hover .place-image {
    transform: scale(1.15);
}

.place-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.2) 50%,
            rgba(0, 0, 0, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    transition: all 0.3s ease;
}

.place-info {
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.premium-place-card:hover .place-info {
    transform: translateY(0);
}

.place-category {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ff9800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
}

.place-title {
    font-family: 'Noto Serif Devanagari', 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.place-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 5;
}

.place-action {
    margin-top: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.premium-place-card:hover .place-action {
    opacity: 1;
    transform: translateY(0);
}

.btn-place-view {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-place-view i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-place-view:hover {
    color: #ff9800;
}

.btn-place-view:hover i {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .place-image-wrapper {
        height: 240px;
    }

    .place-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .popular-places-section {
        padding: 40px 0;
    }

    .place-image-wrapper {
        height: 260px;
    }
}