/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* White text on dark backgrounds */
    background-color: #0A2342; /* Deep Navy Blue */
    line-height: 1.6;
}

.page-promotions__hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(135deg, #0A2342 0%, #0A2342 50%, #FFD700 100%); /* Adjusted gradient for contrast */
}

.page-promotions__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle overlay */
    z-index: 1;
}

.page-promotions__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    background-color: rgba(10, 35, 66, 0.7); /* Semi-transparent dark background for text readability */
    border-radius: 10px;
}

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

.page-promotions__hero-subtitle {
    font-size: 1.3em;
    color: #E0E0E0;
    margin-bottom: 30px;
}

.page-promotions__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-promotions__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A2342; /* Dark text on gold */
    font-size: 1.1em;
}

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

.page-promotions__section {
    padding: 80px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.page-promotions__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-promotions__description {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 30px;
}

.page-promotions__section--highlight {
    background-color: #1a3a5e; /* Slightly lighter navy for contrast */
    padding: 60px 20px;
}

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

.page-promotions__feature-item {
    background-color: #0A2342; /* Darker background for feature cards */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #FFD700;
}

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

.page-promotions__feature-text {
    color: #CCCCCC;
    font-size: 1em;
}

.page-promotions__section--promos {
    background-color: #0A2342;
}

.page-promotions__promo-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.page-promotions__promo-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #1a3a5e; /* Slightly lighter navy for cards */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    text-align: left;
}

.page-promotions__promo-card--reverse {
    flex-direction: row-reverse;
}

.page-promotions__promo-image {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    flex: 1 1 40%;
    min-width: 300px;
}

.page-promotions__promo-content {
    flex: 1 1 55%;
    padding: 40px;
}

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

.page-promotions__promo-text {
    color: #E0E0E0;
    margin-bottom: 25px;
}

.page-promotions__promo-text strong {
    color: #FFD700;
}

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

.page-promotions__promo-features li {
    color: #CCCCCC;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.page-promotions__promo-features li::before {
    content: '✓';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-promotions__btn--secondary {
    background-color: #0A2342; /* Dark button */
    color: #FFD700; /* Gold text */
    border: 1px solid #FFD700;
    padding: 12px 25px;
    font-size: 0.95em;
}

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

.page-promotions__section--cta {
    background-color: #0A2342;
    padding: 80px 20px;
}

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

.page-promotions__steps li {
    background-color: #1a3a5e;
    border-left: 4px solid #FFD700;
    padding: 20px 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    color: #E0E0E0;
    font-size: 1.1em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__steps li strong {
    color: #FFD700;
}

.page-promotions__steps li a {
    color: #FFD700;
    text-decoration: underline;
}

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

.page-promotions__cta-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__section--more-info {
    background-color: #1a3a5e;
}

.page-promotions__faq {
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
}

.page-promotions__faq-item {
    background-color: #0A2342;
    border: 1px solid #FFD700;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-promotions__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions__faq-answer {
    color: #CCCCCC;
    font-size: 1em;
}

.page-promotions__faq-answer strong {
    color: #FFD700;
}

.page-promotions__section--final-cta {
    background-color: #0A2342;
    padding-bottom: 80px;
}

.page-promotions__btn--large {
    background-color: #FFD700;
    color: #0A2342;
    padding: 18px 40px;
    font-size: 1.3em;
    margin-top: 30px;
}

.page-promotions__btn--large:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__promo-card {
        flex-direction: column;
    }
    .page-promotions__promo-card--reverse {
        flex-direction: column;
    }
    .page-promotions__promo-content {
        padding: 30px;
    }
    .page-promotions__promo-image {
        min-width: unset;
        max-height: 250px;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        height: 500px;
    }
    .page-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__section {
        padding: 60px 15px;
    }
    .page-promotions__grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__promo-title {
        font-size: 1.6em;
    }
    .page-promotions__promo-content {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero {
        height: 400px;
    }
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions__btn--primary, .page-promotions__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__feature-item, .page-promotions__promo-card, .page-promotions__steps li, .page-promotions__faq-item {
        padding: 20px;
    }
    .page-promotions__promo-title {
        font-size: 1.4em;
    }
    .page-promotions__faq-question {
        font-size: 1.1em;
    }
}