﻿/* ============================================
   OFFERS PAGE STYLES
   ============================================ */

/* Section 1 Start - Hero Section */
.offers-hero-section {
    position: relative;
    padding: 100px 20px 80px;
    background-image: url('../img/downloaded/Offers.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    text-align: left;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #f0b429;
}

.breadcrumb-separator {
    display: flex;
    align-items: center;
}

.breadcrumb-current {
    color: #f0b429;
    font-size: 14px;
    font-weight: 600;
}
/* Section 1 End */

/* Section 2 Start - Offers Main Section */
.offers-main-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.offers-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Offer Row */
.offer-row {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 50px;
    border-bottom: 1px solid #e5e5e5;
    padding: 40px 0;
    align-items: center;
}

.offer-row:last-child {
    border-bottom: none;
}

/* Left Side - Simple Image */
.offer-image-wrapper {
    width: 100%;
}

.offer-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Right Side - Content */
.offer-content {
    width: 100%;
}

.offer-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px;
}

.offer-description {
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
    margin: 0 0 25px;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.feature-list li {
    font-size: 14px;
    color: #333333;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-icon {
    width: 18px;
    height: 18px;
    color: #f0b429;
    flex-shrink: 0;
}

/* CTA Section - Below Discount Text */
.offer-cta-section {
   
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.discount-text {
    font-size: 18px;
    font-weight: 700;
    color: #d43030;
    margin: 0;
}

.cta-btn-offer {
    display: inline-block;
    padding: 14px 35px;
    background: #FACD14;
    color: #030303;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: capitalize;
    border-radius: 38px;
}

.cta-btn-offer:hover {
    background: #09436A;
    transform: translateY(-2px);
  
    color: #ffffff;
  
}
/* Section 2 End */

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
    .offer-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .offer-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .offers-hero-section {
        padding: 80px 20px 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .offers-main-section {
        padding: 40px 20px;
    }
    
    .offer-title {
        font-size: 22px;
    }
    
    .offer-description {
        font-size: 14px;
    }
    
    .offer-cta-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .cta-btn-offer {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .offer-title {
        font-size: 20px;
    }
}