/* =========================================
   SPECIAL OFFERS STYLESHEET
   ========================================= */

.offers-hero {
    background: linear-gradient(180deg, #F0F7FD 0%, var(--pure-white, #FFFFFF) 100%);
    padding: clamp(50px, 7vw, 85px) 0 35px;
    border-bottom: 1px solid var(--border-subtle, #E2E8F0);
    text-align: center;
}

.offers-main {
    background-color: var(--bg-light, #F4F8FA);
    padding: clamp(60px, 8vw, 95px) 0;
}

/* 3-Column Offers Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.offer-card {
    position: relative;
    background: var(--pure-white, #FFFFFF);
    border: 1px solid var(--border-subtle, #E2E8F0);
    border-radius: 24px;
    padding: 38px 28px 32px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-sky, #29A9E0);
    box-shadow: 0 16px 36px rgba(28, 117, 188, 0.12);
}

.offer-card.featured {
    border-color: var(--brand-sky, #29A9E0);
    box-shadow: 0 16px 36px rgba(28, 117, 188, 0.14);
    transform: scale(1.02);
}

.offer-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.offer-badge-pill {
    position: absolute;
    top: 18px;
    right: 20px;
    background: rgba(41, 169, 224, 0.12);
    color: var(--brand-primary, #1C75BC);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.offer-card.featured .offer-badge-pill {
    background: linear-gradient(135deg, var(--brand-sky, #29A9E0), var(--brand-primary, #1C75BC));
    color: var(--pure-white, #FFFFFF);
}

.offer-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(41, 169, 224, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.offer-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--brand-primary, #1C75BC);
}

.offer-card h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--brand-navy, #0B1E33);
    margin-bottom: 10px;
}

.offer-desc {
    font-size: 0.92rem;
    color: var(--text-muted, #64748B);
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 48px;
}

.offer-details {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.offer-details li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-main, #1E293B);
    line-height: 1.4;
}

.offer-details .feature-check {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    stroke: var(--brand-sky, #29A9E0) !important;
    flex-shrink: 0 !important;
    margin-top: 2px;
}

.promo-code-container {
    background: var(--bg-light, #F4F8FA);
    border: 1px dashed var(--brand-sky, #29A9E0);
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    font-size: 0.88rem;
    color: var(--brand-navy, #0B1E33);
    margin-bottom: 20px;
}

.promo-code-container .code-val {
    font-weight: 800;
    color: var(--brand-primary, #1C75BC);
    letter-spacing: 0.5px;
}

.btn-offer {
    display: block;
    text-align: center;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--brand-primary, #1C75BC);
    background-color: var(--pure-white, #FFFFFF);
    border: 1.5px solid var(--brand-primary, #1C75BC);
    transition: all 0.25s ease;
}

.btn-offer:hover {
    background-color: var(--brand-primary, #1C75BC);
    color: var(--pure-white, #FFFFFF);
    box-shadow: 0 6px 18px rgba(28, 117, 188, 0.25);
    transform: translateY(-2px);
}

.btn-offer-featured {
    background: linear-gradient(135deg, var(--brand-sky, #29A9E0), var(--brand-primary, #1C75BC));
    color: var(--pure-white, #FFFFFF);
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(28, 117, 188, 0.28);
}

.btn-offer-featured:hover {
    background: linear-gradient(135deg, var(--brand-primary, #1C75BC), var(--brand-dark, #124E7E));
}

/* Redemption Info Cards */
.offers-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.info-card {
    background: var(--pure-white, #FFFFFF);
    border: 1px solid var(--border-subtle, #E2E8F0);
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(41, 169, 224, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.info-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--brand-primary, #1C75BC);
}

.info-card h3 {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--brand-navy, #0B1E33);
    margin-bottom: 8px;
}

.info-card p {
    font-size: 0.9rem;
    color: var(--text-muted, #64748B);
    line-height: 1.6;
    margin: 0;
}

/* Offers FAQ */
.offers-faq {
    max-width: 820px;
    margin: 60px auto 0;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-card {
    background: var(--pure-white, #FFFFFF);
    border: 1px solid var(--border-subtle, #E2E8F0);
    border-left: 4px solid var(--brand-primary, #1C75BC);
    border-radius: 14px;
    padding: 22px 24px;
}

.faq-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brand-navy, #0B1E33);
    margin-bottom: 6px;
}

.faq-card p {
    font-size: 0.92rem;
    color: var(--text-muted, #64748B);
    line-height: 1.6;
    margin: 0;
}

/* WhatsApp Broadcast Banner */
.offers-broadcast-box {
    max-width: 760px;
    margin: 60px auto 0;
    background: var(--pure-white, #FFFFFF);
    border: 1px solid var(--border-subtle, #E2E8F0);
    border-radius: 24px;
    padding: clamp(32px, 5vw, 40px);
    text-align: center;
    box-shadow: 0 10px 30px rgba(11, 30, 51, 0.04);
}

.broadcast-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background-color: rgba(37, 211, 102, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.broadcast-icon svg {
    width: 28px;
    height: 28px;
    fill: #25D366;
}

.offers-broadcast-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brand-navy, #0B1E33);
    margin-bottom: 6px;
}

.offers-broadcast-box p {
    font-size: 0.94rem;
    color: var(--text-muted, #64748B);
    margin-bottom: 22px;
}

.btn-broadcast {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    background-color: #25D366;
    color: var(--pure-white, #FFFFFF);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-broadcast svg {
    width: 16px;
    height: 16px;
}

.btn-broadcast:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    .offers-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .offer-card.featured {
        transform: none;
    }

    .offer-card.featured:hover {
        transform: translateY(-8px);
    }

    .offers-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .offer-card,
    .info-card,
    .offers-broadcast-box {
        padding: 26px 18px;
    }
}