/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text */
    background-color: #1A2A3A; /* Dark blue auxiliary color for background */
}

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

.page-promotions__hero {
    background: linear-gradient(135deg, #1A2A3A 0%, #0D1721 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,dark_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-promotions__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold main color */
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.page-promotions__hero-subtitle {
    font-size: 1.4em;
    color: #B0B0B0;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

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

.page-promotions__section:nth-of-type(even) {
    background-color: #13202C;
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

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

.page-promotions__intro-content p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
    color: #D0D0D0;
}

.page-promotions__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 40px auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__image--center {
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__image--right {
    float: right;
    margin-left: 30px;
    max-width: 45%;
}

.page-promotions__image--left {
    float: left;
    margin-right: 30px;
    max-width: 45%;
}

.page-promotions__intro .page-promotions__container, 
.page-promotions__how-to-claim .page-promotions__container, 
.page-promotions__tips .page-promotions__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: left;
}

.page-promotions__intro .page-promotions__intro-content, 
.page-promotions__how-to-claim ol, 
.page-promotions__tips ul {
    flex: 1;
    min-width: 300px;
}

.page-promotions__intro .page-promotions__image, 
.page-promotions__how-to-claim .page-promotions__image, 
.page-promotions__tips .page-promotions__image {
    flex: 0 0 45%;
    margin: 0 0 0 5%;
    float: none;
}

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

.page-promotions__card {
    background-color: #2A3B4C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid #3A4C5E;
}

.page-promotions__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-promotions__card p {
    color: #C0C0C0;
    line-height: 1.6;
}

.page-promotions__card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

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

.page-promotions__list-item {
    background-color: #2A3B4C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
    border: 1px solid #3A4C5E;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions__list-title {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #FFD700;
}

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

.page-promotions__list-title a:hover {
    color: #FFF;
}

.page-promotions__list-description {
    color: #C0C0C0;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
    text-align: center;
}

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

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

.page-promotions__btn--secondary {
    background-color: #3A4C5E;
    color: #FFD700;
    border: 1px solid #FFD700;
}

.page-promotions__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2A3A;
    transform: translateY(-2px);
}

.page-promotions__link-inline {
    color: #FFD700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-promotions__link-inline:hover {
    color: #FFF;
}

.page-promotions__how-to-claim ol {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.page-promotions__how-to-claim ol li {
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
    font-size: 1.1em;
    line-height: 1.7;
    color: #D0D0D0;
    text-align: left;
}

.page-promotions__how-to-claim ol li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #FFD700;
    color: #1A2A3A;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1em;
}

.page-promotions__how-to-claim ol li a {
    color: #FFD700;
    text-decoration: underline;
}

.page-promotions__how-to-claim ol li a:hover {
    color: #FFF;
}

.page-promotions__tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-promotions__list-bullet li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1em;
    line-height: 1.7;
    color: #D0D0D0;
    text-align: left;
}

.page-promotions__list-bullet li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 1.5em;
    line-height: 1;
}

.page-promotions__faq {
    background-color: #1A2A3A;
}

.page-promotions__accordion {
    margin-top: 40px;
    text-align: left;
}

.page-promotions__accordion-item {
    background-color: #2A3B4C;
    border: 1px solid #3A4C5E;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-promotions__accordion-header {
    width: 100%;
    background-color: #3A4C5E;
    color: #FFD700;
    padding: 18px 25px;
    border: none;
    text-align: left;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-promotions__accordion-header:hover {
    background-color: #4A5C6E;
}

.page-promotions__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-promotions__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions__accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions__accordion-content p {
    color: #D0D0D0;
    line-height: 1.7;
    padding-bottom: 15px;
}

.page-promotions__accordion-content p .highlight {
    color: #FFD700;
}

.page-promotions__cta-bottom {
    background: linear-gradient(135deg, #FFD700, #E6C200);
    padding: 80px 0;
    text-align: center;
}

.page-promotions__cta-bottom .page-promotions__cta-title {
    font-size: 2.8em;
    color: #1A2A3A;
    margin-bottom: 20px;
}

.page-promotions__cta-bottom .page-promotions__cta-description {
    font-size: 1.3em;
    color: #3A4C5E;
    margin-bottom: 40px;
}

.page-promotions .highlight {
    color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1.2em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__intro .page-promotions__container, 
    .page-promotions__how-to-claim .page-promotions__container, 
    .page-promotions__tips .page-promotions__container {
        flex-direction: column;
        text-align: center;
    }
    .page-promotions__intro .page-promotions__intro-content, 
    .page-promotions__how-to-claim ol, 
    .page-promotions__tips ul {
        order: 2; /* Content after image */
        width: 100%;
    }
    .page-promotions__intro .page-promotions__image, 
    .page-promotions__how-to-claim .page-promotions__image, 
    .page-promotions__tips .page-promotions__image {
        order: 1; /* Image before content */
        max-width: 80%;
        margin: 0 auto 30px auto;
        float: none;
    }
    .page-promotions__image--right, .page-promotions__image--left {
        float: none;
        margin: 30px auto;
        max-width: 80%;
    }
    .page-promotions__cta-bottom .page-promotions__cta-title {
        font-size: 2.2em;
    }
    .page-promotions__cta-bottom .page-promotions__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 80px 0;
    }
    .page-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions__section {
        padding: 40px 0;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__grid, .page-promotions__list {
        grid-template-columns: 1fr;
    }
    .page-promotions__card, .page-promotions__list-item {
        padding: 20px;
    }
    .page-promotions__card-title, .page-promotions__list-title {
        font-size: 1.3em;
    }
    .page-promotions__intro-content p, .page-promotions__how-to-claim ol li, .page-promotions__list-bullet li {
        font-size: 1em;
    }
    .page-promotions__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-promotions__accordion-content {
        padding: 0 20px;
    }
    .page-promotions__cta-bottom {
        padding: 60px 0;
    }
    .page-promotions__cta-bottom .page-promotions__cta-title {
        font-size: 1.8em;
    }
    .page-promotions__cta-bottom .page-promotions__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__hero-subtitle {
        font-size: 0.9em;
    }
    .page-promotions__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__card-title, .page-promotions__list-title {
        font-size: 1.2em;
    }
    .page-promotions__how-to-claim ol li {
        padding-left: 35px;
    }
    .page-promotions__how-to-claim ol li::before {
        width: 25px;
        height: 25px;
        font-size: 1em;
    }
    .page-promotions__cta-bottom .page-promotions__cta-title {
        font-size: 1.5em;
    }
}