/* ================= PAGE TITLE ================= */
.page-banggia {
    background: url("../images/page-banggia.jpg") center/cover no-repeat;
}

/* ================= PRICE ================= */
.price {
    padding: 20px 0 60px 0;
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}


/* ================= PRICE CARD ================= */
.price-card {
    background: var(--gray);
    border: 2px solid var(--green);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.price-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.price-card-header {
    background: linear-gradient(45deg, var(--green), var(--gold));
    padding: 15px;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: black;
}

.price-card-body {
    padding: 20px;
}

.price-card ul {
    list-style: none;
}

.price-card li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.price-card li b {
    color: var(--gold);
}

.btn-price {
    display: block;
    margin-top: 20px;
    text-align: center;
    background: linear-gradient(45deg, var(--green), var(--gold));
    color: black;
    padding: 12px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
}

.other-price {
    margin-top: 30px;
    text-align: center;
    color: #ccc;
}


/* ================= TABLET ================= */
@media (max-width: 900px) {

    .price-cards {
        grid-template-columns: 1fr;
    }

    .page-title h1 {
        font-size: 30px;
    }

}


/* ================= MOBILE ================= */
@media (max-width: 600px) {

    .page-title {
        padding: 100px 0 20px 0;
    }

    .page-title h1 {
        font-size: 26px;
    }

    .price-card-header {
        font-size: 20px;
    }

    .price-card li {
        font-size: 14px;
    }

    .btn-price {
        padding: 14px;
        font-size: 16px;
    }

}