/* Custom CSS for Package Cards */

/* Image zoom effect on hover */
.package-card .package-img-wrap .package-img {
    overflow: hidden;
    display: block;
    border-radius: 10px;
}

.package-card .package-img-wrap .package-img img {
    transition: transform 0.4s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

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

/* Book Now Button Styling */
.package-card .book-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2563eb;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.package-card .book-now-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.package-card .book-now-btn svg {
    width: 16px;
    height: 16px;
}

/* Updated package content layout */
.package-card .package-content {
    padding: 20px 15px 15px;
}

.package-card .package-content h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.package-card .package-content h5 a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.package-card .package-content h5 a:hover {
    color: #2563eb;
}

/* Location and Duration */
.package-card .location-and-time {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #6b7280;
}

.package-card .location-and-time .location {
    display: flex;
    align-items: center;
    gap: 5px;
}

.package-card .location-and-time .location svg {
    fill: #6b7280;
}

.package-card .location-and-time .arrow {
    fill: #9ca3af;
    margin: 0 5px;
}

/* Bottom area with button and price */
.package-card .btn-and-price-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

.package-card .price-area {
    text-align: right;
}

.package-card .price-area h6 {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 4px;
    font-weight: 500;
}

.package-card .price-area span {
    font-size: 22px;
    font-weight: 700;
    color: #2563eb;
}

/* Experience and Inclusion badges */
.package-card .bottom-area {
    margin-top: 12px;
    padding-top: 12px;
}

.package-card .bottom-area ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.package-card .bottom-area ul li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b7280;
}

.package-card .bottom-area ul li svg {
    width: 16px;
    height: 16px;
    fill: #9ca3af;
}

/* Divider */
.package-card .divider {
    width: 100%;
    height: 6px;
    margin: 15px 0;
    fill: #e5e7eb;
}

/* Badge styles */
.package-card .batch {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.package-card .batch span {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
