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

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

.page-promotions__hero {
    background: linear-gradient(135deg, #0A192F, #1A3A5F); /* Dark gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
    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%, rgba(10, 25, 47, 0) 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 > * {
    position: relative;
    z-index: 1;
}

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

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

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

.page-promotions__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Accent color for section titles */
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.page-promotions__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

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

.page-promotions__why-choose {
    background-color: #1A2A40;
}

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

.page-promotions__feature-item {
    background-color: #0A192F;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.page-promotions__feature-item p {
    color: #E0E0E0;
}

.page-promotions__current-promos {
    background-color: #0A192F;
}

.page-promotions__promo-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.page-promotions__promo-card {
    background-color: #1A2A40;
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    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;
}

.page-promotions__promo-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

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

.page-promotions__promo-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

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

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

.page-promotions__promo-description {
    color: #E0E0E0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__promo-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.page-promotions__promo-features li {
    display: flex;
    align-items: center;
    color: #C0C0C0;
    margin-bottom: 8px;
    font-size: 0.95em;
}

.page-promotions__promo-features li::before {
    content: '✓';
    color: #FFD700;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
}

.page-promotions__promo-actions {
    display: flex;
    gap: 15px;
    margin-top: auto; /* Push buttons to the bottom */
    flex-wrap: wrap;
}

.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;
    font-size: 1.05em;
    text-align: center;
}

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

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

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

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

.page-promotions__btn--large {
    padding: 15px 35px;
    font-size: 1.2em;
    min-width: 250px;
}

.page-promotions__guide {
    background-color: #1A2A40;
}

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

.page-promotions__step-item {
    background-color: #0A192F;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    position: relative;
    padding-top: 70px; /* Space for number */
}

.page-promotions__step-number {
    position: absolute;
    top: 25px;
    left: 30px;
    width: 45px;
    height: 45px;
    background-color: #FFD700;
    color: #0A192F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

.page-promotions__step-item p {
    color: #E0E0E0;
    margin-bottom: 20px;
}

.page-promotions__btn--inline {
    padding: 8px 20px;
    font-size: 0.95em;
}

.page-promotions__terms {
    background-color: #0A192F;
}

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

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

.page-promotions__section-outro {
    margin-top: 40px;
    font-style: italic;
    color: #B0B0B0;
}

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

.page-promotions__accordion {
    max-width: 900px;
    margin: 50px auto 0;
    text-align: left;
}

.page-promotions__accordion-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

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

.page-promotions__accordion-header.active {
    background-color: #2A3A50;
}

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

.page-promotions__accordion-content {
    background-color: #1A2A40;
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions__accordion-content p {
    padding: 15px 0;
    color: #E0E0E0;
    font-size: 1.05em;
}

.page-promotions__cta-final {
    padding: 80px 0;
    background: linear-gradient(90deg, #0A192F, #1A3A5F);
    color: #FFFFFF;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__section-title {
        font-size: 2.2em;
    }
    .page-promotions__promo-list {
        grid-template-columns: repeat(auto-fit, minmax(300px, 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__section {
        padding: 40px 0;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-promotions__section-intro {
        margin-bottom: 40px;
    }
    .page-promotions__features-grid, .page-promotions__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__promo-card {
        text-align: center;
    }
    .page-promotions__promo-actions {
        justify-content: center;
    }
    .page-promotions__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-promotions__accordion-content p {
        padding: 10px 0;
    }
    .page-promotions__btn--large {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__hero-description {
        font-size: 0.9em;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__promo-title {
        font-size: 1.5em;
    }
    .page-promotions__btn {
        width: 100%;
        margin-bottom: 10px;
    }
    .page-promotions__promo-actions {
        flex-direction: column;
    }
    .page-promotions__terms-list li {
        font-size: 0.9em;
        padding: 10px 15px;
    }
    .page-promotions__accordion-header {
        font-size: 1em;
        padding: 12px 15px;
    }
    .page-promotions__accordion-content {
        padding: 0 15px;
    }
}