﻿/* ===== Offers Section ===== */
.offers-section {
    padding: 60px 0;
    background: #fff;
}

.offers-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Offer Row */
.offer-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e0e0e0;
}

.offer-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.offer-row.reverse {
    flex-direction: row-reverse;
}

/* Offer Content */
.offer-content {
    flex: 0 0 45%;
    max-width: 540px;
}

/* 3 Decorative Bars */
.offer-bars {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
}

.offer-bars .bar {
    display: inline-block;
    height: 3px;
    background: #FCB041;
    border-radius: 3px;
}

.offer-bars .bar-1 {
    width: 50px;  /* ⚠️ First bar - widest */
}

.offer-bars .bar-2 {
    width: 30px;  /* ⚠️ Second bar - medium */
}

.offer-bars .bar-3 {
    width: 15px;  /* ⚠️ Third bar - smallest */
}

/* Offer Title */
.offer-title {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

/* Offer Description */
.offer-description {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
}

.check-icon {
    flex-shrink: 0;
}

/* Discount Text */
.discount-text {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 25px;
}
















/* CTA Button */
.cta-btn-offer {
    display: inline-block;
    background: linear-gradient(135deg, #FCB041 0%, #FCB041 100%);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 168, 73, 0.3);
}

.cta-btn-offer:hover {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 26, 46, 0.4);
}

/* Offer Image */
.offer-image-wrapper {
    flex: 0 0 50%;
    max-width: 600px;
}

.offer-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .offer-row,
    .offer-row.reverse {
        flex-direction: column;
        gap: 40px;
    }
    
    .offer-title {
        font-size: 26px;
    }
    
    .offer-description {
        font-size: 16px;
    }
    
    .feature-list li {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .offer-title {
        font-size: 22px;
    }
    
    .cta-btn-offer {
        padding: 14px 30px;
        font-size: 14px;
    }
}


/* ===== CTA Offer Section - Full Width Corner to Corner ===== */
.cta-offer-section {
    width: 100%;
    background-color: #FCB041;          /* warm orange/amber */
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

/* Optional subtle diagonal light effect (like in the image top-left corner) */
.cta-offer-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 200%;
    background: rgba(255, 255, 255, 0.08);
    transform: rotate(25deg);
    pointer-events: none;
}

.cta-offer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-offer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* ===== Left Text ===== */
.cta-offer-text h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.cta-offer-text p {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-offer-text p i {
    font-size: 20px;
}

/* ===== Right Button ===== */
.cta-offer-btn {
    flex-shrink: 0;
}

.call-btn {
    display: inline-block;
    background-color: #5B2C8E;          /* deep purple */
    color: #fff;
    padding: 18px 42px;
    border-radius: 50px;                /* pill shape */
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.3s ease, transform 0.2s ease;
}

.call-btn:hover {
    background-color: #4a2275;
    transform: translateY(-2px);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .cta-offer-section {
        padding: 40px 0;
    }

    .cta-offer-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-offer-text h2 {
        font-size: 24px;
    }

    .cta-offer-text p {
        font-size: 16px;
        justify-content: center;
    }

    .call-btn {
        padding: 14px 36px;
        font-size: 16px;
    }
}


/* CTA Banner */
.cta-banner {
  padding: 30px 0;
  background:#FCB041;
  margin-bottom: 40px;
}

.cta-banner > .container-1200 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cta-banner > .container-1200 > div > h2 {
  color: white;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.cta-banner > .container-1200 > div > p {
  color: white;
  font-size: 14px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-banner > .container-1200 > div > p::before {
  content: "⏱";
  font-size: 16px;
}

.btn-cta {
  background: #662d91;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-cta:hover {
  background: #5a2578;
  transform: translateY(-2px);
}
