.order-premium-section {
    background: #001734;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    
}

.description {
    color: #f1f5ff !important;
}

.order-premium-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 70px 70px;
    opacity: 0.18;
    pointer-events: none;
}

.order-card {
    background: #ffffff;
    border-radius: 36px;
    padding: 60px 55px;
    margin: 0 auto;
    max-width: 1050px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.10);
    position: relative;
}
.order-title {
    color: #f5f7ff; 
    font-weight: 700;
    font-size: 2.3rem;
    margin-bottom: 18px;
    line-height: 1.25;
}

.order-desc {
    color: #dde4ff; 
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto 25px auto;
}

.order-btn {
    background: var(--navy-light);
    color: #fff !important;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 14px;
    transition: 0.25s ease;
}

.order-btn:hover {
    background: var(--orange);
    color: #fff !important;
    transform: translateY(-3px);
}

.order-image img {
    max-width: 330px;
    transition: 0.3s ease;
    object-fit: contain;
}

.order-image img:hover {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .order-card {
        padding: 45px 35px;
        text-align: center;
        max-width: 90%;
    }

    .order-title {
        font-size: 2rem;
    }

    .order-desc {
        color: #e9edff; 
    }

    .order-image img {
        margin-top: 25px;
        max-width: 260px;
    }
}

@media (max-width: 575px) {
    .order-premium-section {
        padding: 95px 0 80px;
    }

    .order-card {
        padding: 40px 28px;
        border-radius: 28px;
        max-width: 92%;
    }

    .order-title {
        font-size: 1.75rem;
        color: #f6f8ff;
    }

    .order-desc {
        font-size: 1rem;
        color: #e5eaff;
    }

    .order-image img {
        max-width: 200px;
    }
}

/* ============================
   PREMIUM RESPONSIVE PAGINATION
   ============================ */

.custom-pagination .pagination {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.custom-pagination .page-item .page-link {
    background: #ffffff;
    border: none;
    color: #001734;
    padding: 10px 18px;
    font-size: 0.95rem;
    border-radius: 14px;
    font-weight: 600;
    transition: 0.25s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.custom-pagination .page-item.active .page-link {
    background: #001734 !important;
    color: #fff !important;
    transform: translateY(-2px);
}

.custom-pagination .page-item .page-link:hover {
    background: #001734;
    color: #fff;
    transform: translateY(-3px);
}

.custom-pagination .page-item.disabled .page-link {
    background: #e9e9e9;
    color: #9b9b9b;
    box-shadow: none;
}


/* ============================
   MOBILE RESPONSIVE
   ============================ */
@media (max-width: 576px) {
    .custom-pagination .pagination {
        gap: 6px;
    }

    .custom-pagination .page-item .page-link {
        padding: 8px 12px;
        font-size: 0.8rem;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    /* biar halaman panjang gak meluber */
    .custom-pagination .page-link {
        min-width: 36px;
        text-align: center;
    }
}

@media (max-width: 400px) {
    .custom-pagination .page-item .page-link {
        padding: 7px 10px;
        font-size: 0.75rem;
    }
}
