/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #f5f0e7; /* Light text on dark background */
    background-color: #0A0F18;
    line-height: 1.6;
}

.page-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-promotions__hero {
    background: linear-gradient(135deg, #0A0F18 0%, #301934 100%); /* Dark gradient for depth */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: page-promotions__pulse 15s infinite alternate;
    z-index: 0;
}

@keyframes page-promotions__pulse {
    0% { transform: scale(0.8); opacity: 0.7; }
    100% { transform: scale(1.2); opacity: 0.9; }
}

.page-promotions__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-promotions__hero-title .text-highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-promotions__hero-description {
    font-size: 1.3em;
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.page-promotions__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.page-promotions__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-promotions__btn--primary {
    background-color: #FFD700;
    color: #0A0F18;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions__btn--primary:hover {
    background-color: #E0B800;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-promotions__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-promotions__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A0F18;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-promotions__btn--small {
    padding: 10px 20px;
    font-size: 0.95em;
}

.page-promotions__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

/* Section common styles */
.page-promotions__overview, .page-promotions__detail-list, .page-promotions__faq, .page-promotions__call-to-action {
    padding: 80px 0;
}

.page-promotions__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.page-promotions__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-promotions__section-description {
    font-size: 1.1em;
    color: #B0B0B0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

/* Feature Cards */
.page-promotions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions__feature-card {
    background-color: #1A1F29;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions__feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-promotions__feature-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions__feature-text {
    color: #C0C0C0;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Promotion Detail List */
.page-promotions__promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.page-promotions__promo-card {
    background-color: #1A1F29;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions__promo-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 3px solid #FFD700;
}

.page-promotions__promo-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 220px); /* Adjust height based on image */
}

.page-promotions__promo-title {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-promotions__promo-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__promo-title a:hover {
    color: #E0B800;
}

.page-promotions__promo-description {
    color: #C0C0C0;
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__btn--claim {
    background-color: #E53935; /* Red for CTA */
    color: #FFFFFF;
    padding: 12px 25px;
    font-size: 1em;
    margin-top: 15px;
    text-align: center;
}

.page-promotions__btn--claim:hover {
    background-color: #C62828;
    transform: translateY(-2px);
}

.page-promotions__btn--details {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 12px 25px;
    font-size: 1em;
    margin-top: 10px;
    text-align: center;
}

.page-promotions__btn--details:hover {
    background-color: #FFD700;
    color: #0A0F18;
    transform: translateY(-2px);
}

.page-promotions__cta-title {
    margin-top: 80px;
}

.page-promotions__why-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 60px;
    max-width: 800px;
    text-align: left;
}

.page-promotions__why-list li {
    background-color: #1A1F29;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 10px;
    font-size: 1.1em;
    color: #E0E0E0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
}

.page-promotions__list-icon {
    color: #FFD700;
    font-size: 1.5em;
    margin-right: 15px;
    line-height: 1;
}

.page-promotions__cta-bottom {
    text-align: center;
    margin-top: 50px;
}

/* FAQ Section */
.page-promotions__faq {
    background-color: #0A0F18;
}

.page-promotions__faq-item {
    background-color: #1A1F29;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__faq-question {
    color: #FFD700;
    font-size: 1.4em;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
    background-color: #2A2F39;
}

.page-promotions__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-promotions__faq-item.active .page-promotions__faq-question::after {
    transform: rotate(45deg);
}

.page-promotions__faq-answer {
    padding: 0 25px;
    color: #C0C0C0;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
    max-height: 200px; /* Adjust as needed */
    padding: 20px 25px;
}

.page-promotions__faq-answer p {
    margin-top: 0;
    margin-bottom: 15px;
}

/* Final Call to Action */
.page-promotions__call-to-action {
    background-color: #FFD700;
    color: #0A0F18;
    text-align: center;
    padding: 80px 0;
    box-shadow: inset 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-promotions__cta-heading {
    font-size: 3em;
    margin-bottom: 20px;
    color: #0A0F18;
}

.page-promotions__cta-text {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #2A2F39;
}

.page-promotions__call-to-action .page-promotions__btn--primary {
    background-color: #E53935; /* Red for strong CTA */
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.4);
}

.page-promotions__call-to-action .page-promotions__btn--primary:hover {
    background-color: #C62828;
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__section-title {
        font-size: 2.2em;
    }
    .page-promotions__cta-heading {
        font-size: 2.5em;
    }
    .page-promotions__grid, .page-promotions__promo-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 80px 0;
    }
    .page-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-promotions__hero-description {
        font-size: 1em;
    }
    .page-promotions__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions__btn--large {
        width: 80%;
        max-width: 300px;
    }
    .page-promotions__overview, .page-promotions__detail-list, .page-promotions__faq, .page-promotions__call-to-action {
        padding: 60px 0;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__section-description {
        font-size: 0.95em;
        margin-bottom: 40px;
    }
    .page-promotions__feature-card, .page-promotions__promo-card {
        padding: 20px;
    }
    .page-promotions__feature-icon {
        width: 60px;
        height: 60px;
    }
    .page-promotions__feature-title {
        font-size: 1.5em;
    }
    .page-promotions__promo-image {
        height: 180px;
    }
    .page-promotions__promo-title {
        font-size: 1.3em;
    }
    .page-promotions__faq-question {
        font-size: 1.2em;
        padding: 15px 20px;
    }
    .page-promotions__faq-answer {
        padding: 15px 20px;
    }
    .page-promotions__cta-heading {
        font-size: 2em;
    }
    .page-promotions__cta-text {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero {
        padding: 60px 0;
    }
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    .page-promotions__btn {
        width: 90%;
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-promotions__overview, .page-promotions__detail-list, .page-promotions__faq, .page-promotions__call-to-action {
        padding: 40px 0;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__section-description {
        font-size: 0.9em;
        margin-bottom: 30px;
    }
    .page-promotions__grid, .page-promotions__promo-cards {
        grid-template-columns: 1fr;
    }
    .page-promotions__feature-card, .page-promotions__promo-card {
        padding: 15px;
    }
    .page-promotions__promo-image {
        height: 150px;
    }
    .page-promotions__promo-title {
        font-size: 1.2em;
    }
    .page-promotions__btn--claim, .page-promotions__btn--details {
        padding: 10px 15px;
        font-size: 0.9em;
    }
    .page-promotions__why-list li {
        font-size: 1em;
        padding: 15px;
    }
    .page-promotions__faq-question {
        font-size: 1em;
    }
    .page-promotions__faq-answer {
        font-size: 0.9em;
    }
    .page-promotions__cta-heading {
        font-size: 1.8em;
    }
    .page-promotions__cta-text {
        font-size: 0.9em;
    }
}