/* =========================
   CAMPAIGN SECTION (FINAL CLEAN)
========================= */

/* SECTION BACKGROUND */
.campaign-section {
    background: #ffc107;
    padding: 80px 0;
}

/* SWIPER CONTAINER */
.campaignSwiper {
    width: 100%;
}

/* FIX SLIDER LAYOUT */
.campaignSwiper .swiper-wrapper {
    display: flex;
}

/* EACH SLIDE */
.campaignSwiper .swiper-slide {
    width: 100% !important;
    flex-shrink: 0;
}

/* MAIN CONTENT BOX */
.campaign-slide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 450px;
    padding: 0 80px;
}

/* LEFT CONTENT */
.campaign-left {
    flex: 1;
    max-width: 500px;
}

.campaign-left h5 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.campaign-left h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.campaign-left p {
    margin-bottom: 20px;
    color: #333;
}

/* ACTIONS */
.campaign-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* BUTTON */
.btn-primary {
    background: linear-gradient(45deg, #ff6b00, #ff3c00);
    padding: 12px 30px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
}

/* PRICE TAG */
.price-tag {
    background: #000;
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: bold;
}

/* RIGHT IMAGE */
.campaign-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* IMAGE STYLE */
.campaign-right img {
    width: 450px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
}

/* PAGINATION DOTS */
.campaignSwiper .swiper-pagination {
    margin-top: 20px;
    text-align: center;
}

.campaignSwiper .swiper-pagination-bullet {
    background: #000;
    opacity: 0.3;
}

.campaignSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #ff3d00;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .campaign-slide {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .campaign-right {
        justify-content: center;
        margin-top: 20px;
    }

    .campaign-right img {
        width: 100%;
        height: auto;
    }
}