/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #e0e0e0; /* Light gray for text on dark background */
    background-color: #0A1931; /* Main dark blue background */
    line-height: 1.6;
}

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

.page-promotions__hero-section {
    background: linear-gradient(135deg, #0A1931, #2a416a); /* Dark blue to slightly lighter blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero text */
    position: relative;
    overflow: hidden;
}

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

.page-promotions__hero-section > div {
    position: relative;
    z-index: 1;
}

.page-promotions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #FFD700; /* Gold for main title */
}

.page-promotions__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0; /* Light gray for subtitle */
}

.page-promotions__hero-cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A1931; /* Dark blue text on gold button */
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFD700;
}

.page-promotions__hero-cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-promotions__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 60px;
    padding-top: 80px;
    position: relative;
}

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

.page-promotions__intro-text {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: -30px auto 60px;
    color: #cccccc;
}

.page-promotions__why-choose-section {
    background-color: #1a2a47; /* Slightly lighter dark blue */
    padding: 80px 0;
}

.page-promotions__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-promotions__feature-item {
    background-color: #0A1931;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-promotions__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-promotions__feature-item p {
    font-size: 1em;
    color: #cccccc;
}

.page-promotions__promotions-list-section {
    padding: 80px 0;
    background-color: #0A1931;
}

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

.page-promotions__promotion-card {
    background-color: #1a2a47;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

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

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

.page-promotions__card-title {
    font-size: 1.6em;
    color: #FFD700;
    padding: 20px 20px 10px;
    margin: 0;
}

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

.page-promotions__card-title a:hover {
    color: #e6c200;
}

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

.page-promotions__card-actions {
    padding: 0 20px 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: auto; /* Push buttons to the bottom */
}

.page-promotions__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.page-promotions__button--primary {
    background-color: #FFD700;
    color: #0A1931;
    border: 2px solid #FFD700;
}

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

.page-promotions__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-promotions__button--secondary:hover {
    background-color: #FFD700;
    color: #0A1931;
    transform: translateY(-2px);
}

.page-promotions__how-to-claim-section {
    background-color: #1a2a47;
    padding: 80px 0;
}

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

.page-promotions__steps-list li {
    background-color: #0A1931;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-left: 80px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions__steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 30px;
    background-color: #FFD700;
    color: #0A1931;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5em;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

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

.page-promotions__steps-list li p {
    color: #cccccc;
}

.page-promotions__steps-list li a {
    color: #FFD700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-promotions__steps-list li a:hover {
    color: #e6c200;
}

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

.page-promotions__terms-section {
    padding: 80px 0;
    background-color: #0A1931;
}

.page-promotions__terms-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions__terms-list li {
    background-color: #1a2a47;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 10px;
    font-size: 1em;
    color: #cccccc;
    border-left: 5px solid #FFD700;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__outro-text {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 40px auto 0;
    color: #cccccc;
}

.page-promotions__faq-section {
    background-color: #1a2a47;
    padding: 80px 0;
}

.page-promotions__faq-item {
    background-color: #0A1931;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.page-promotions__faq-answer {
    padding: 0 20px 20px;
    font-size: 1em;
    color: #cccccc;
    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-top: 10px;
}

.page-promotions__final-cta-section {
    background-color: #0A1931;
    padding: 80px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions__hero-title {
        font-size: 3em;
    }
    .page-promotions__section-title {
        font-size: 2.5em;
    }
    .page-promotions__promotion-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-promotions__steps-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-title {
        font-size: 2.5em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1.2em;
    }
    .page-promotions__hero-cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
    }
    .page-promotions__section-title {
        font-size: 2em;
        margin-bottom: 40px;
    }
    .page-promotions__intro-text {
        margin-bottom: 40px;
    }
    .page-promotions__features-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__promotion-cards-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__steps-list {
        grid-template-columns: 1fr;
    }
    .page-promotions__faq-question {
        font-size: 1.2em;
    }
    .page-promotions__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promotions__card-actions {
        flex-direction: column;
        align-items: center;
    }
    .page-promotions__button--primary, .page-promotions__button--secondary {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 2em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions__hero-cta-button {
        padding: 10px 25px;
        font-size: 1em;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__feature-title {
        font-size: 1.5em;
    }
    .page-promotions__card-title {
        font-size: 1.4em;
    }
    .page-promotions__step-title {
        font-size: 1.5em;
    }
    .page-promotions__faq-question {
        font-size: 1.1em;
    }
}