/* ===== PACKAGES SECTION ===== */
.bh-packages-section {
    padding: 80px 20px;
    text-align: center;
    background: #fffaf6;
}

.bh-subtitle {
    letter-spacing: 2px;
    font-size: 13px;
    color: #c98c6b;
    margin-bottom: 10px;
}

.bh-title {
    font-size: 42px;
    margin-bottom: 10px;
    font-family: serif;
}

.bh-desc {
    max-width: 650px;
    margin: 0 auto 50px;
    color: #777;
}

/* ===== GRID ===== */
.bh-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* ===== CARD ===== */
.bh-package-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.bh-package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* IMAGE */
.bh-card-image {
    height: 260px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.bh-price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 14px;
    color: #c98c6b;
    font-weight: 600;
}

/* BODY */
.bh-card-body {
    padding: 25px;
    text-align: left;
}

.bh-card-body h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.bh-card-meta {
    font-size: 14px;
    color: #888;
    margin-bottom: 12px;
}

.bh-card-desc {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

/* BUTTON */
.bh-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 30px;
    background: linear-gradient(90deg, #d39a7c, #e7b93e);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.bh-btn:hover {
    opacity: 0.9;
}
