﻿/* =========================================
   OFFERS SECTION STYLES
========================================= */
.offers-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.offers-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.offer-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 10px;
    align-items: stretch;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}


/* Simple Image Wrapper - No Design Elements */
.offer-image-wrapper {
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    padding: 0px;
}

.offer-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Offer Content */
.offer-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-content h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.offer-description {
    font-size: 15px;
    color: #555555;
    line-height: 1.8;
    margin: 0 0 25px 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #333333;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: black;
    flex-shrink: 0;
}

.discount-callout {
    font-size: 14px;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
} 

.cta-btn-offer {
    display: inline-block;
    background: linear-gradient(135deg, #6ec1e4 0%, #5ab0d6 100%);
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(110, 193, 228, 0.4);
    width: fit-content;
}

.cta-btn-offer:hover {
    background: linear-gradient(135deg, #5ab0d6 0%, #4a9fc7 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(110, 193, 228, 0.5);
}

/* Responsive Design */
@media (max-width: 991px) {
    .offer-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
  
    .offer-image-wrapper {
        min-height: 350px;
    }
    
    .offer-content {
        padding: 40px;
    }
    
    .offer-content h2 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .offers-section {
        padding: 40px 0;
    }
    
    .offer-row {
        margin-bottom: 40px;
    }
    
    .offer-image-wrapper {
        min-height: 250px;
    }
    
    .offer-content {
        padding: 30px;
    }
    
    .offer-content h2 {
        font-size: 22px;
    }
    
    .cta-btn-offer {
        padding: 12px 30px;
    }
}