.hero-section {
    height: 100vh;
    width: 100vw;
    background-image: url("/images/bg-hero-welcome2-new.png");
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 50px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    overflow-y: hidden;
}

.hero-section h1 {
    color: #ffffff;
    font-size: 52px;
    line-height: 76px;
    text-align: center;
    margin-bottom: 50px;
}

.hero-section p {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 50px;
}

.content-tier {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px;
    margin-top: -200px;
    padding: 20px;
}

.box-tier {
    height: 640px;
    width: 100%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.box-tier h3 {
    font-size: 24px;
    color: #333333;
}

.box-tier img {
    height: 350px;
}

.box-tier p {
    text-align: center;
    color: #333333;
    font-size: 18px;
}

.box-tier button {
    padding: 15px 30px;
    border-radius: 30px;
    background-color: #f1f1f1;
    border: none;
    color: #333333;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.box-tier button:hover {
    background-color: #e0e0e0;
}

.sub-about {
    height: 60vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 50px;
}

.sub-about h1 {
    color: #f1842f;
    font-size: 48px;
    text-align: center;
}

.sub-about p {
    color: #333333;
    font-size: 20px;
    text-align: center;
}

.promo-content {
    height: 60vh;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 50px;
    margin-bottom: 100px;
}

.promo-left {
    overflow: hidden;
    background-image: url("/images/bg-promo1.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    padding: 30px;
}

.promo-left.two {
    background-image: url("/images/bg-promo2.png");
}

.promo-left .badge {
    background-color: #ffffff;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.promo-left .badge img {
    height: 15px;
    width: auto;
}

.promo-left p {
    width: 80%;
    color: #ffffff;
    font-size: 20px;
}

.promo-right {
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    padding-left: 100px;
}

.list {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.list .box {
    height: auto;
    width: 40px;
    padding: 10px;
    background-color: #f1842f;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
}

.list .desc {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.desc h5 {
    color: #333333;
    font-size: 22px;
}

.desc p {
    columns: #333333;
    font-size: 18px;
}

.transaksi-section {
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 50px;
    padding: 100px 50px;
    background-color: #f7f7f7;
}

.transaksi-section h1 {
    font-size: 42px;
    color: #333333;
    text-align: center;
}

.transaksi-content {
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    padding: 50px;
}

.transaksi-content .item {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
}

.transaksi-content .item img {
    height: 400px;
}

.transaksi-content .item h4 {
    font-size: 22px;
    text-align: center;
    color: #333333;
    margin-top: 20px;
}

.transaksi-content .item p {
    text-align: center;
    color: #333333;
    font-size: 18px;
    width: 80%;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: #ffffff;
    background-image: url("/images/bg-modal.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 60px;
    max-width: 1100px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 32px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.close-modal:hover {
    color: #333;
}

.modal-body-flex {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: start;
    padding-top: 10px;
}

.modal-left {
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    position: sticky;
    top: 0;
    position: relative;
}

.modal-left::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, #f1842f, #f8d8b200, #f1842f);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.modal-left.tier-orange {
    background: linear-gradient(180deg, #f8d8b2, #f8d8b200, #f8d8b2);
}

.modal-left.tier-orange::before {
    background: linear-gradient(135deg, #f1842f, #f8d8b200, #f1842f);
}

.modal-left.tier-silver {
    background: linear-gradient(180deg, #dadada, #dadada00, #dadada);
}

.modal-left.tier-silver::before {
    background: linear-gradient(135deg, #8f8f8f, #dadada00, #8f8f8f);
}

.modal-left.tier-gold {
    background: linear-gradient(180deg, #f8d8b2, #f8d8b200, #f8d8b2);
}

.modal-left.tier-gold::before {
    background: linear-gradient(135deg, #d4af37, #f8d8b200, #d4af37);
}

.modal-left.tier-platinum {
    background: linear-gradient(180deg, #e5e5e5, #e5e5e500, #e5e5e5);
}

.modal-left.tier-platinum::before {
    background: linear-gradient(135deg, #b8b8b8, #e5e5e500, #b8b8b8);
}

.modal-left h2 {
    font-size: 28px;
    font-weight: 600;
    color: #262626;
    margin: 0;
}

.modal-left img {
    height: 300px;
    width: auto;
    margin: 10px 0;
}

.modal-left .tier-description {
    color: #555;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.modal-left .modal-action-btn {
    width: 100%;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    margin-top: 10px;
}

.modal-left .btn-primary {
    background-color: #f1842f;
    color: #ffffff;
}

.modal-left .btn-primary:hover {
    background-color: #d6722a;
}

.modal-left .btn-secondary {
    background-color: #ffffff;
    color: #f1842f;
    border: 2px solid #f1842f;
}

.modal-left .btn-secondary:hover {
    background-color: #fff5ee;
}

.modal-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-right .lorem-text {
    color: #333333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefits-list li {
    color: #333333;
    font-size: 15px;
    line-height: 1.5;
    padding-left: 28px;
    overflow: hidden;
    position: relative;
}

.benefits-list li:before {
    content: "•";
    color: #f1842f;
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    left: 8px;
    top: -2px;
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Responsive Design */
@media (max-width: 968px) {
    .modal-body-flex {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .modal-left {
        position: relative;
    }

    .modal-content {
        padding: 30px 20px;
    }
}
