/* style/promotions.css */

:root {
    --primary-color: #FFD700;
    --secondary-color: #1A1A1A;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #121212;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
}

.page-promotions {
    font-family: 'Arial', sans-serif;
    color: var(--text-light); /* Default text color for dark body background */
    line-height: 1.6;
    padding-top: 120px; /* Ensure content is not hidden by fixed header */
}

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

.page-promotions__hero-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-color), #333333);
    color: var(--text-light);
}

.page-promotions__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-promotions__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

.page-promotions__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
}

.page-promotions__btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

.page-promotions__btn-primary:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-promotions__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-promotions__section {
    padding: 60px 0;
}

.page-promotions__section:nth-of-type(even) {
    background: rgba(255, 255, 255, 0.05); /* Slightly lighter dark background */
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-promotions__text-block {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #f0f0f0;
    text-align: justify;
}

.page-promotions__text-block a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions__text-block a:hover {
    color: #e6c200;
    text-decoration: underline;
}

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

.page-promotions__card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-promotions__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-promotions__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions__card-title {
    font-size: 1.5em;
    color: var(--primary-color);
    padding: 20px 20px 10px;
    margin: 0;
}

.page-promotions__card-description {
    padding: 0 20px 20px;
    font-size: 0.95em;
    flex-grow: 1;
    color: #e0e0e0;
}

.page-promotions__card-button {
    display: block;
    margin: 0 20px 20px;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-promotions__how-to-claim {
    background: linear-gradient(45deg, #1A1A1A, #0a0a0a);
    color: var(--text-light);
}

.page-promotions__how-to-claim .page-promotions__section-title {
    color: var(--primary-color);
}

.page-promotions__steps-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-promotions__list-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, background 0.3s ease;
    position: relative;
    counter-increment: step-counter;
    color: #f0f0f0;
}

.page-promotions__list-item::before {
    content: counter(step-counter);
    position: absolute;
    top: -15px;
    left: -15px;
    background: var(--primary-color);
    color: var(--secondary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions__list-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.page-promotions__list-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.page-promotions__list-item p {
    font-size: 1em;
    color: #e0e0e0;
}

.page-promotions__list-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__list-item a:hover {
    text-decoration: underline;
}

.page-promotions__terms-conditions {
    background: var(--bg-dark);
    color: var(--text-light);
}

.page-promotions__terms-conditions .page-promotions__section-title {
    color: var(--primary-color);
}

.page-promotions__bullet-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions__bullet-list .page-promotions__list-item {
    background: none;
    padding: 10px 0;
    box-shadow: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 30px;
    transition: background-color 0.3s ease;
}

.page-promotions__bullet-list .page-promotions__list-item:last-child {
    border-bottom: none;
}

.page-promotions__bullet-list .page-promotions__list-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5em;
    top: 8px;
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    box-shadow: none;
}

.page-promotions__bullet-list .page-promotions__list-item:hover {
    transform: none;
    background-color: rgba(255, 255, 255, 0.05);
}

.page-promotions__bullet-list strong {
    color: var(--primary-color);
}

.page-promotions__why-choose-us {
    background: linear-gradient(135deg, #0a0a0a, var(--secondary-color));
    color: var(--text-light);
}

.page-promotions__why-choose-us .page-promotions__section-title {
    color: var(--primary-color);
}

.page-promotions__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions__feature-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, background 0.3s ease;
    color: #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promotions__feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.page-promotions__feature-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions__feature-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-promotions__feature-description {
    font-size: 1em;
    color: #e0e0e0;
}

.page-promotions__call-to-action {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), #e6c200);
    color: var(--secondary-color);
}

.page-promotions__call-to-action .page-promotions__section-title {
    color: var(--secondary-color);
    text-shadow: none;
}

.page-promotions__call-to-action .page-promotions__text-block {
    color: var(--secondary-color);
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-promotions__call-to-action .page-promotions__text-block a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-promotions__call-to-action .page-promotions__btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.page-promotions__call-to-action .page-promotions__btn-primary:hover {
    background: #333333;
    color: var(--primary-color);
}

/* FAQ Section */
.page-promotions__faq-section {
    background: var(--bg-dark);
    color: var(--text-light);
}

.page-promotions__faq-section .page-promotions__section-title {
    color: var(--primary-color);
}

.page-promotions__faq-list {
    margin-top: 40px;
}

.page-promotions__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-promotions__faq-question:hover {
    background: rgba(255, 255, 255, 0.12);
}

.page-promotions__faq-question:active {
    background: rgba(255, 255, 255, 0.15);
}

.page-promotions__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 1.1em;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: var(--primary-color);
}

.page-promotions__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
    transform: rotate(45deg); /* Plus to X */
    color: var(--text-light);
}

.page-promotions__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 20px;
    opacity: 0;
    color: #e0e0e0;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
    max-height: 2000px !important;
    padding: 20px !important;
    opacity: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 0 5px 5px;
}

.page-promotions__faq-answer p {
    margin: 0;
    font-size: 1em;
}

.page-promotions__faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__faq-answer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions__main-title {
        font-size: 2.8em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__card-title {
        font-size: 1.3em;
    }
    .page-promotions__feature-title {
        font-size: 1.4em;
    }
}

@media (max-width: 768px) {
    .page-promotions {
        padding-top: 100px !important; /* Mobile: Adjust for smaller header */
        font-size: 15px;
        line-height: 1.6;
    }
    
    .page-promotions__container {
        padding: 0 15px;
    }

    .page-promotions__hero-section {
        padding: 60px 0;
    }

    .page-promotions__main-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }

    .page-promotions__hero-description {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-promotions__cta-button {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 25px !important;
        font-size: 1em !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }

    .page-promotions__section {
        padding: 40px 0;
    }

    .page-promotions__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-promotions__text-block {
        font-size: 0.95em;
    }

    .page-promotions__grid-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .page-promotions__card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-promotions__card-image {
        height: 180px;
    }

    .page-promotions__card-title {
        font-size: 1.2em;
        padding: 15px 15px 8px;
    }

    .page-promotions__card-description {
        padding: 0 15px 15px;
        font-size: 0.9em;
    }

    .page-promotions__card-button {
        margin: 0 15px 15px;
        padding: 10px 20px;
        font-size: 0.95em;
    }

    .page-promotions__steps-list {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 30px 0;
    }

    .page-promotions__list-item {
        padding: 25px;
    }

    .page-promotions__list-item::before {
        width: 35px;
        height: 35px;
        font-size: 1.3em;
        top: -12px;
        left: -12px;
    }

    .page-promotions__list-title {
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    .page-promotions__features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }

    .page-promotions__feature-item {
        padding: 25px;
    }

    .page-promotions__feature-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }

    .page-promotions__feature-title {
        font-size: 1.4em;
    }

    .page-promotions__call-to-action {
        padding: 60px 0;
    }

    .page-promotions__faq-question {
        padding: 15px;
    }

    .page-promotions__faq-question h3 {
        font-size: 1em;
    }

    .page-promotions__faq-toggle {
        width: 24px;
        height: 24px;
        font-size: 20px;
    }

    .page-promotions__faq-item.active .page-promotions__faq-answer {
        padding: 15px !important;
    }
}

@media (max-width: 480px) {
    .page-promotions__main-title {
        font-size: 1.8em;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__cta-buttons {
        gap: 10px;
    }
    .page-promotions__card-image {
        height: 150px;
    }
    .page-promotions__feature-icon {
        width: 60px;
        height: 60px;
    }
    .page-promotions__faq-question h3 {
        font-size: 0.95em;
    }
}

/* Image responsive adjustments */
.page-promotions img {
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container,
    .page-promotions__hero-section,
    .page-promotions__how-to-claim,
    .page-promotions__terms-conditions,
    .page-promotions__why-choose-us,
    .page-promotions__call-to-action,
    .page-promotions__faq-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    /* Override padding for full-width sections */
    .page-promotions__hero-section, 
    .page-promotions__how-to-claim, 
    .page-promotions__why-choose-us, 
    .page-promotions__call-to-action {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .page-promotions__hero-section .page-promotions__container,
    .page-promotions__how-to-claim .page-promotions__container,
    .page-promotions__why-choose-us .page-promotions__container,
    .page-promotions__call-to-action .page-promotions__container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}