﻿/* =========================================
   Offers Section New Design
   ========================================= */
.offers-section-new {
    padding: 80px 0 100px;
    background-color: #ffffff;
}

.offers-container-new {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.offer-card-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 2px solid #111111;
    transition: all 0.3s ease;
}

.offer-card-wrapper:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Image Wrapper - Always LEFT Side */
.offer-image-wrapper {
    flex: 0 0 45%;
    max-width: 45%;
}

.image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.offer-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-container:hover .offer-image {
    transform: scale(1.05);
}

/* Content Box - Always RIGHT Side */
.offer-content-box {
    flex: 1;
    padding: 20px 0;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 01px;
    /* background-color: rgba(37, 52, 134, 0.1); */
    color: #253486;
    padding: 8px 0px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 900;
    margin-bottom: -2px;
}

.category-badge svg {
    fill: #253486;
}

.offer-main-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.offer-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.feature-list-new {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.feature-list-new li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #333333;
    margin-bottom: 12px;
    font-weight: 500;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: black;
    flex-shrink: 0;
}

.discount-callout-new {
    font-size: 16px;
    font-weight: 700;
    color: #e40404;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-btn-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #253486;
    color: #ffffff;
    padding: 16px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #253486;
}

.cta-btn-new:hover {
    background-color: transparent;
    color: #253486;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 52, 134, 0.3);
}

/* Slide Up Animation */
.slide-up-button {
    opacity: 0;
    transform: translateY(30px);
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 992px) {
    .offer-card-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .offer-image-wrapper {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .offer-content-box {
        padding: 0;
    }
    
    .offer-main-title {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .offers-section-new {
        padding: 60px 0 80px;
    }
    
    .offer-card-wrapper {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
    
    .offer-main-title {
        font-size: 24px;
    }
    
    .cta-btn-new {
        width: 100%;
        justify-content: center;
    }
}