.premium-card {
    border-radius: 15px;
    border: 2px solid #0f6828;
    overflow: hidden;
    background: #fff;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.premium-card .img-wrapper {
    position: relative;
    height: 200px;
}

.premium-card .package-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premium-card .title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    text-align: center;
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.premium-card .top-bar {
    display: flex;
    background: #1a1a1a;
    position: relative;
    color: white;
    font-size: 13px;
    font-weight: bold;
}

.premium-card .top-bar-left {
    background: #0f6828;
    padding: 8px 15px;
    flex: 1;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    margin-right: -15px;
}

.premium-card .top-bar-right {
    padding: 8px 15px;
    flex: 1;
    text-align: right;
}

.premium-card .hotels-section {
    display: flex;
    position: relative;
    background-image: url('images/pattern-bg.png'); /* Fallback if pattern exists */
    background-size: cover;
    background-color: #f9f9f9;
}

.premium-card .hotels-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 8px;
    background: #0f6828;
    transform: skewX(-15deg);
    z-index: 1;
    margin-left: -4px;
}

.premium-card .hotel-block {
    flex: 1;
    padding: 15px 10px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.premium-card .hotel-block img {
    height: 70px;
    object-fit: contain;
    margin-bottom: 10px;
}

.premium-card .hotel-block p {
    margin: 0;
    font-size: 12px;
    font-weight: bold;
    color: #000;
}

.premium-card .features-bar {
    background: #0f6828;
    color: white;
    display: flex;
    justify-content: space-around;
    padding: 8px 5px;
    font-size: 12px;
}

.premium-card .features-bar i {
    margin-right: 5px;
}

.premium-card .price-section {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 15px;
}

.premium-card .price-section h2 {
    margin: 0;
    font-size: 28px;
    color: #fff;
}

.premium-card .price-section .from,
.premium-card .price-section .pp {
    font-size: 14px;
    color: #ffd700; /* Gold color for 'fr.' and 'pp' */
}

.premium-card .action-buttons {
    display: flex;
    border-top: 1px solid #ddd;
}

.premium-card .btn-call {
    flex: 1;
    background: #0f6828;
    color: white;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.premium-card .btn-call:hover {
    background: #0a4d1d;
    color: white;
}

.premium-card .btn-details {
    flex: 1;
    background: white;
    color: #1a1a1a;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.premium-card .btn-details:hover {
    background: #f1f1f1;
    color: #1a1a1a;
}

.hotel-gallery-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.hotel-detail {
    height: 300px;
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 15px;
}
.owl-carousel .owl-nav { text-align: center; margin-top: 10px; } 
.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next { background: #04761f !important; color: white !important; padding: 5px 20px !important; margin: 0 5px; border-radius: 3px; font-size: 20px !important; } 
