/* ==========================================
   Cell C Specials & Promos Page Styles
   ========================================== */

/* Specials Hero Banner */
.specials-hero-banner {
    position: relative;
    min-height: 500px;
    background-color: #2d3748;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 4rem 0;
    overflow: hidden;
}

.specials-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://www.cellc.co.za/cellc/img/world-of-cellc/stayConnected/stay-connected-desktop.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.8;
}

.promos-grid-second .promo-card-dark
{
    background-image: url(' https://www.cellc.co.za/cellc/img/world-of-cellc/stayConnected/stars-and-bars-promo.webp');
   
}

.specials-hero-content {
    position: relative;
    z-index: 1;
    color: var(--cellc-white);
}

.specials-hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin: 0;
    letter-spacing: -2px;
}

/* Promos Info Section */
.promos-info-section {
    background: var(--cellc-white);
    padding: 5rem 0;
}

.promos-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--cellc-dark);
    margin-bottom: 4rem;
    line-height: 1.3;
}

.promos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--cellc-light-gray);
}

.promo-card {
    border-radius: 20px;
    padding: 3rem;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.promo-card-dark {
    background-image: url('https://www.cellc.co.za/cellc/img/world-of-cellc/stayConnected/specials-promos-tbyb-desktop.webp');
    background-size: cover;
    background-position: center;
    color: var(--cellc-white);
}

.promo-card-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.promo-card-light {
    background: var(--cellc-light-gray);
    color: var(--cellc-dark);
}

.promo-card-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
}

.promo-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.badge-text {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.promo-offer {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    color: var(--cellc-orange);
}

.promo-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--cellc-white);
}

.promo-validity {
    font-size: 1rem;
    margin-top: 1rem;
    opacity: 0.9;
}

.promo-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.promos-grid.promos-grid-second {
    margin-top: 40px;
}

.promo-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.promo-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.promo-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
}

.promo-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}

.btn-promo-action {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--cellc-orange);
    color: var(--cellc-white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    margin-top: 1rem;
}

.btn-promo-action:hover {
    background: #d04f00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(234, 91, 12, 0.3);
}

/* Escape Section */
.escape-section {
    background: var(--cellc-dark);
    padding: 5rem 0;
}

.escape-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.escape-content {
    color: var(--cellc-white);
}

.escape-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.escape-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-escape-learn {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--cellc-orange);
    color: var(--cellc-white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.btn-escape-learn:hover {
    background: #d04f00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(234, 91, 12, 0.3);
}

.escape-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* More Bundles Section */
.more-bundles-section {
    background: var(--cellc-dark);
    padding: 5rem 0;
    text-align: center;
}

.bundles-content {
    max-width: 900px;
    margin: 0 auto;
    color: var(--cellc-white);
}

.bundles-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.bundles-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.btn-bundles-action {
    padding: 1.2rem 4rem;
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--cellc-orange);
    color: var(--cellc-white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.btn-bundles-action:hover {
    background: #d04f00;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(234, 91, 12, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .specials-hero-title {
        font-size: 4rem;
    }

    .promos-grid {
        grid-template-columns: 1fr;
    }

    .escape-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .specials-hero-title {
        font-size: 3rem;
    }

    .promos-heading {
        font-size: 1.8rem;
        padding: 0 1rem;
    }

    .promo-card {
        padding: 2rem;
        min-height: 350px;
    }

    .promo-offer {
        font-size: 2.5rem;
    }

    .promo-title {
        font-size: 1.8rem;
    }

    .escape-title {
        font-size: 2rem;
    }

    .escape-description {
        font-size: 1.1rem;
    }

    .bundles-title {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .bundles-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .specials-hero-title {
        font-size: 2.5rem;
    }

    .promo-offer {
        font-size: 2rem;
    }

    .promo-price {
        font-size: 1.5rem;
    }

    .promo-title {
        font-size: 1.5rem;
    }

    .btn-promo-action,
    .btn-escape-learn,
    .btn-bundles-action {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}