/* ===== PROMO SECTION ===== */
.promo-section {
    background: linear-gradient(90deg, #ff8a00, #ffb347);
    padding: 1px 0;
    color: white;
}

.promo-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* TEXT */
.promo-text h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.promo-text h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.promo-text p {
    max-width: 500px;
    font-size: 14px;
    opacity: 0.9;
}

/* countdown */

.promo-countdown {
    display: flex;
    align-items: center;
    gap: 15px;
}

.time-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 26px;
    font-weight: 600;
}

.time-sep {
    font-size: 28px;
    font-weight: 700;
}

/* batas............. */
/* BACKGROUND */
.promo-full {
    background: linear-gradient(to bottom, #f7931e, #f6b24c);
    padding: 30px 0;
    color: white;
}

/* IMAGE GRID */
.promo-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 10px;
}

.img-box {
    position: relative;
    height: 350px; /* tinggi box tetap */
    overflow: hidden;
    border-radius: 15px;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ini kuncinya */
}

.img-box span {
    position: absolute;
    bottom: 10px;
    left: 20px;
    font-weight: bold;
    color: white;
}

/* PROMO CONTENT */
.promo-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.time-box {
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}
