/* Event Package Container */
.uvdetail-card-package {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 1440px;
    margin: auto;
    width: 100%;
}

/* Image Section */
.uvdetail-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.uvdetail-card-image img {

    object-fit: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}

/* Content Section */
.uvdetail-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.uvdetail-card-content h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.uvdetail-card-content p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* Bullet Points */
.uvdetail-card-content ul {
    margin: 15px 0;
    padding: 0;
    list-style: none;
}

.uvdetail-card-content ul li {
    font-size: 14px;
    color: #444;
    margin-bottom: 5px;
}

/* Package Info */
.uvdetail-card-info {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
}

.uvdetail-card-info small {
    display: block;
    font-size: 12px;
    color: #666;
}

/* Button */
.book-now {
    margin-top: 15px;
    background: #d32f2f;
    color: white;
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.book-now:hover {
    background: #b71c1c;
}

.uvdetail-card-image {
    padding-top: 500px;
    width: 100%;
    position: relative;
    max-width: 500px;
}

.uvdetail-card-content {
    width: calc(100% - 500px);
    padding: 30px;
}


.package-details {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 15px 0;
    margin-top: 20px;
}

.package-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
}

.feature-value {
    font-size: 18px;
    font-weight: bold;
    color: #111;
}

.uv-features-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px 0px;
}

/* Responsive Design */
@media (min-width: 768px) {
    .uvdetail-card-package {
        flex-direction: row;
    }
}


/* Responsive Design */
@media (max-width: 1300px) {
    .uvdetail-card-image {
        padding-top: 650px;
    }
}


@media (max-width: 1000px) {
    .uvdetail-card-package {
        flex-direction: column;
    }

    .uvdetail-card-image {
        padding-top: 100%;
        max-width: 100%;
    }

    .uvdetail-card-content {
        width: 100%;
    }
}